Creative Challenge
"A giraffe in a spacesuit floating through a candy-colored nebula"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="nebula" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#FF99CC"/>
<stop offset="50%" stop-color="#CC66FF"/>
<stop offset="100%" stop-color="#9933FF"/>
</radialGradient>
<pattern id="giraffe-spots" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="#996633"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#nebula)"/>
<path d="M180,250 C 180,280 150,290 150,250" fill="#CCFFFF" filter="url(#glow)"/>
<path d="M170,250 C 170,270 140,280 140,250" fill="#99CCFF" filter="url(#glow)"/>
<path d="M160,250 C 160,260 130,270 130,250" fill="#6699FF" filter="url(#glow)"/>
<g transform="translate(150, 100) rotate(-15)">
<ellipse cx="0" cy="50" rx="30" ry="50" fill="url(#giraffe-spots)"/>
<ellipse cx="0" cy="-50" rx="20" ry="40" fill="url(#giraffe-spots)"/>
<path d="M-10,-80 L 10,-80 L 0,-100 Z" fill="#996633"/>
<circle cx="-5" cy="-110" r="5" fill="#CC9966"/>
<circle cx="5" cy="-110" r="5" fill="#CC9966"/>
<ellipse cx="0" cy="-120" rx="10" ry="5" fill="#CC9966"/>
<rect x="-20" y="-50" width="40" height="100" rx="10" fill="white"/>
<circle cx="0" cy="-30" r="15" fill="#336699"/>
</g>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<circle cx="50" cy="50" r="10" fill="#FFCC99" filter="url(#glow)"/>
<circle cx="250" cy="250" r="15" fill="#CCFF66" filter="url(#glow)"/>
<ellipse cx="100" cy="200" rx="8" ry="12" fill="#FFFF66" filter="url(#glow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="nebula" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#FF69B4"/>
<stop offset="40%" stop-color="#8A2BE2"/>
<stop offset="70%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#191970"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#nebula)"/>
<circle cx="50" cy="50" r="20" fill="#FFB6C1" opacity="0.6" filter="url(#glow)"/>
<circle cx="250" cy="230" r="15" fill="#FF69B4" opacity="0.4" filter="url(#glow)"/>
<circle cx="180" cy="70" r="25" fill="#DDA0DD" opacity="0.5" filter="url(#glow)"/>
<g transform="translate(150,150) rotate(15)">
<!-- Spacesuit -->
<ellipse cx="0" cy="20" rx="40" ry="60" fill="#white" stroke="#silver" stroke-width="2"/>
<circle cx="0" cy="-30" r="25" fill="#A9A9A9"/>
<!-- Giraffe Face -->
<path d="M-10,-40 Q0,-70 10,-40" fill="none" stroke="#FFD700" stroke-width="2"/>
<circle cx="-5" cy="-45" r="2" fill="black"/>
<circle cx="5" cy="-45" r="2" fill="black"/>
<path d="M-5,-35 Q0,-32 5,-35" fill="none" stroke="#8B4513" stroke-width="1"/>
<!-- Giraffe Pattern -->
<path d="M-20,0 Q-15,-10 -10,0" fill="#CD853F"/>
<path d="M0,-10 Q5,-20 10,-10" fill="#CD853F"/>
<path d="M-5,20 Q0,10 5,20" fill="#CD853F"/>
<!-- Space Helmet -->
<circle cx="0" cy="-30" r="28" fill="none" stroke="#ADD8E6" stroke-width="2"/>
<ellipse cx="15" cy="-35" rx="5" ry="8" fill="#white" opacity="0.3"/>
</g>
<!-- Stars -->
<g fill="white">
<circle cx="30" cy="30" r="1"/>
<circle cx="270" cy="50" r="1"/>
<circle cx="150" cy="280" r="1"/>
<circle cx="90" cy="200" r="1"/>
<circle cx="200" cy="150" r="1"/>
<circle cx="250" cy="270" r="1"/>
</g>
<!-- Candy swirls -->
<path d="M50,150 Q100,100 150,200 T250,150" fill="none" stroke="#FF69B4" stroke-width="3" opacity="0.5"/>
<path d="M200,50 Q150,100 100,150 T50,250" fill="none" stroke="#87CEEB" stroke-width="3" opacity="0.5"/>
</svg>
Judge's Analysis
Player 2's image more effectively captures the essence of a giraffe in a spacesuit floating through a candy-colored nebula.
The giraffe is clearly depicted with a recognizable head and spacesuit helmet, and the vibrant background enhances the nebula theme.
Player 1's image, while colorful, lacks clarity in representing a giraffe and the spacesuit concept, making Player 2's submission stronger in creativity and adherence to the prompt.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"Floating garden on a giant turtle's shell under a colorful starry sky"
"Two-headed flamingo on a crescent moon"
"Floating teapot pouring stars into a moonlit lake"
"Fire-breathing dragon knitting a scarf"
"Glow-in-the-dark jellyfish orchestra under a starry night sky"
"A cactus wearing a top hat and monocle under a disco ball in the desert"