Creative Challenge
"A giraffe wearing a top hat, balancing on a unicycle, juggling flaming pineapples"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="hatGradient" cx="50%" cy="20%" r="70%">
<stop offset="0%" stop-color="#222" />
<stop offset="100%" stop-color="#444" />
</radialGradient>
<radialGradient id="fireGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="yellow" />
<stop offset="50%" stop-color="orange" />
<stop offset="100%" stop-color="red" />
</radialGradient>
<pattern id="giraffePattern" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="#F0D080" />
<circle cx="10" cy="10" r="5" fill="#A56A3B" />
</pattern>
</defs>
<circle cx="150" cy="250" r="20" fill="silver" stroke="gray" stroke-width="2"/>
<rect x="140" y="230" width="20" height="20" fill="silver" stroke="gray" stroke-width="2"/>
<path d="M130,230 C130,200 170,200 170,230" stroke="brown" stroke-width="5" fill="none"/>
<path d="M100 80 L150 50 L200 80" fill="#F0D080" stroke="#A56A3B" stroke-width="2"/>
<ellipse cx="150" cy="100" rx="20" ry="30" fill="url(#hatGradient)" stroke="black" stroke-width="2"/>
<rect x="130" y="70" width="40" height="10" fill="url(#hatGradient)" stroke="black" stroke-width="2"/>
<rect x="130" y="130" width="40" height="100" fill="url(#giraffePattern)" stroke="#A56A3B" stroke-width="2" />
<ellipse cx="90" cy="50" rx="15" ry="20" fill="url(#fireGradient)" />
<path d="M90 40 L80 30 L100 30 Z" fill="yellow"/>
<polygon points="90,50 95,70 85,70" fill="orange"/>
<g transform="translate(210, 60) rotate(10)">
<ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#fireGradient)" />
<path d="M0 -10 L-10 -20 L10 -20 Z" fill="yellow"/>
<polygon points="0,0 5,20 -5,20" fill="orange"/>
<path d="M-5 0 L0 20 L5 0 Z" fill="green" />
</g>
<g transform="translate(70, 100) rotate(-20)">
<ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#fireGradient)" />
<path d="M0 -10 L-10 -20 L10 -20 Z" fill="yellow"/>
<polygon points="0,0 5,20 -5,20" fill="orange"/>
<path d="M-5 0 L0 20 L5 0 Z" fill="green" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<radialGradient id="bodyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</radialGradient>
<linearGradient id="flameGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="yellow" />
<stop offset="50%" stop-color="orange" />
<stop offset="100%" stop-color="red" />
</linearGradient>
</defs>
<!-- Giraffe on Unicycle -->
<!-- Giraffe's body -->
<ellipse cx="150" cy="190" rx="15" ry="40" fill="url(#bodyGradient)" />
<!-- Giraffe's neck -->
<rect x="145" y="100" width="10" height="90" fill="url(#bodyGradient)" />
<!-- Giraffe's head -->
<ellipse cx="150" cy="85" rx="15" ry="20" fill="url(#bodyGradient)" />
<!-- Giraffe's spots -->
<circle cx="145" cy="115" r="4" fill="orange" />
<circle cx="155" cy="135" r="5" fill="orange" />
<circle cx="150" cy="155" r="6" fill="orange" />
<!-- Giraffe's top hat -->
<rect x="135" y="60" width="30" height="10" fill="black" />
<rect x="140" y="35" width="20" height="25" fill="black" />
<!-- Unicycle -->
<line x1="150" y1="230" x2="150" y2="270" stroke="black" stroke-width="4" />
<circle cx="150" cy="270" r="20" stroke="black" stroke-width="4" fill="gray" />
<circle cx="150" cy="270" r="15" stroke="black" stroke-width="2" fill="silver" />
<!-- Flaming Pineapples -->
<!-- Pineapple 1 -->
<ellipse cx="180" cy="60" rx="7" ry="10" fill="yellowgreen" />
<path d="M175,52 C180,49 190,49 185,60" fill="url(#flameGradient)" />
<!-- Pineapple 2 -->
<ellipse cx="120" cy="55" rx="7" ry="10" fill="yellowgreen" />
<path d="M115,47 C120,44 130,44 125,55" fill="url(#flameGradient)" />
<!-- Pineapple 3 -->
<ellipse cx="220" cy="100" rx="7" ry="10" fill="yellowgreen" />
<path d="M215,92 C220,89 230,89 225,100" fill="url(#flameGradient)" />
<!-- Juggling motion arc -->
<path d="M120,55 Q150,30 180,60" fill="none" stroke="gray" stroke-dasharray="4" />
<path d="M180,60 Q200,80 220,100" fill="none" stroke="gray" stroke-dasharray="4" />
</svg>
Judge's Analysis
Player 2's image more clearly represents a giraffe on a unicycle juggling flaming pineapples, capturing the whimsy and complexity of the prompt.
The technical execution is more refined, with distinct elements for the giraffe and pineapples.
Player 1's image lacks clarity in depicting a giraffe and the overall composition is less cohesive.
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
"Cactus dressed in punk rock attire under a disco ball"
"Floating umbrella island with candy cane trees"
"An ant balancing a crumb on a tightrope"
"Floating cityscape on lily pads under a crescent moon"
"Eiffel Tower wearing oversized sunglasses"
"Cat-shaped cityscape, geometric style"