Creative Challenge
"A giraffe wearing roller skates juggling flaming torches"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient definitions -->
<defs>
<linearGradient id="giraffe-fur" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffd700" />
<stop offset="50%" stop-color="#ff9900" />
<stop offset="100%" stop-color="#ffd700" />
</linearGradient>
<linearGradient id="flame" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff0000" />
<stop offset="50%" stop-color="#ffa500" />
<stop offset="100%" stop-color="#ff0000" />
</linearGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Giraffe body -->
<path d="M 100,150 Q 120,100 150,150 Q 180,100 200,150" fill="url(#giraffe-fur)" stroke="#000" stroke-width="2" />
<circle cx="150" cy="50" r="30" fill="url(#giraffe-fur)" />
<circle cx="150" cy="250" r="30" fill="url(#giraffe-fur)" />
<!-- Roller skates -->
<rect x="70" y="250" width="80" height="20" fill="#000" rx="10" />
<rect x="150" y="250" width="80" height="20" fill="#000" rx="10" />
<circle cx="90" cy="275" r="10" fill="#ccc" />
<circle cx="210" cy="275" r="10" fill="#ccc" />
<!-- Legs -->
<path d="M 120,250 Q 130,280 150,250" stroke="#000" stroke-width="4" />
<path d="M 180,250 Q 190,280 210,250" stroke="#000" stroke-width="4" />
<!-- Torches -->
<rect x="0" y="50" width="10" height="100" fill="#ccc" />
<rect x="290" y="50" width="10" height="100" fill="#ccc" />
<rect x="100" y="0" width="10" height="100" fill="#ccc" />
<!-- Flames -->
<path d="M 5,150 Q 10,180 5,200" fill="url(#flame)" />
<path d="M 295,150 Q 290,180 295,200" fill="url(#flame)" />
<path d="M 105,50 Q 110,80 105,100" fill="url(#flame)" />
<!-- Face -->
<circle cx="150" cy="60" r="20" fill="#ffffff" stroke="#000" stroke-width="2" />
<circle cx="135" cy="50" r="5" fill="#000" />
<circle cx="165" cy="50" r="5" fill="#000" />
<path d="M 150,70 Q 160,80 170,70" stroke="#000" stroke-width="2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffe-spots" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#BF9765" />
<stop offset="50%" stop-color="#D9B88C" />
<stop offset="100%" stop-color="#BF9765" />
</linearGradient>
<radialGradient id="fire-glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="70%" stop-color="#FFA500" />
<stop offset="100%" stop-color="#FF4500" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="#67C587" />
<ellipse cx="150" cy="250" rx="20" ry="10" fill="#808080" />
<ellipse cx="220" cy="250" rx="20" ry="10" fill="#808080" />
<path d="M130 100 c-20 20 -20 50 0 70 l10 -20 c15 10 35 10 50 0 l10 20 c-20 -20 -20 -50 0 -70z" fill="url(#giraffe-spots)" />
<rect x="140" y="170" width="20" height="80" fill="url(#giraffe-spots)" rx="5"/>
<circle cx="150" y="70" r="30" fill="#BF9765" />
<ellipse cx="90" cy="80" rx="5" ry="8" fill="black"/>
<ellipse cx="110" cy="80" rx="5" ry="8" fill="black"/>
<path d="M180 120 c-15 30 -15 65 0 95" stroke="#BF9765" stroke-width="10" stroke-linecap="round"/>
<ellipse cx="250" cy="80" rx="15" ry="20" fill="url(#fire-glow)"/>
<ellipse cx="70" cy="100" rx="15" ry="20" fill="url(#fire-glow)" transform="rotate(20 70 100)"/>
<path d="M250 100 c-5 10 -10 20 -15 30" stroke="#FF4500" stroke-width="4" stroke-linecap="round"/>
<path d="M70 120 c5 10 10 20 15 30" stroke="#FF4500" stroke-width="4" stroke-linecap="round" transform="rotate(20 70 100)"/>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt, as it provides a clearer representation of a giraffe with distinct features.
The inclusion of flaming torches being juggled adds to the creativity and visual appeal, despite the simplicity of the design.
Player 1's image lacks recognizable elements that align with the idea, making Player 2's submission more effective overall.
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
"Bear in a business suit, balancing on a unicycle, holding an umbrella"
"Octopus juggling planets under a disco ball in deep space"
"Surreal clock melting over a cactus in desert, vibrant colors, geometric style"
"Floating city of balloons over a giant sunflower field, in vibrant pop art style"
"A flamingo in a spacesuit playing the electric guitar on the moon"
"Cactus in a fishbowl with a tiny sailboat floating between its spines"