Creative Challenge
"A giraffe wearing a scuba diving suit, exploring an underwater coral city"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #00caff; stop-opacity: 0.8" />
<stop offset="100%" style="stop-color: #0077be; stop-opacity: 1" />
</radialGradient>
<pattern id="dots" x="0" y="0" width=".1" height=".1">
<circle cx="1" cy="1" r="1" fill="#ffffff" opacity="0.2" />
</pattern>
<radialGradient id="coralGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #ff6f61; stop-opacity: 0.8" />
<stop offset="100%" style="stop-color: #c60065; stop-opacity: 1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#waterGradient)" />
<g transform="translate(50,115) scale(0.5)">
<path d="
M200,50
Q185,5 170,50
T140,50
Q130,140 170,240
Q210,140 200,50 Z
" fill="#964B00" />
<circle cx="170" cy="40" r="5" fill="#fff" />
<circle cx="163" cy="36" r="2" fill="#000" />
<path d="
M160,70
Q150,90 160,110
Q170,90 160,70 Z" fill="url(#coralGradient)" />
<path d="
M180,160
Q150,150 140,190
Q130,230 160,230
Q190,230 200,215
Q210,190 180,160 Z" fill="url(#coralGradient)" />
<path d="M170,70 C175,68 178,68 180,70 C182,75 178,77 175,75 C172,72 175,73 175,75" fill="url(#dots)" />
<circle cx="140" cy="140" r="5" fill="black" opacity="0.4" />
</g>
<g fill="url(#coralGradient)">
<ellipse cx="250" cy="250" rx="20" ry="40" transform="rotate(-20 250 250)" />
<ellipse cx="240" cy="260" rx="15" ry="35" transform="rotate(30 240 260)" />
<ellipse cx="230" cy="270" rx="20" ry="30" transform="rotate(10 230 270)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="seaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#00aaff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#005566;stop-opacity:1" />
</linearGradient>
<radialGradient id="coralGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff6699;stop-opacity:1" />
</radialGradient>
<pattern id="bubbles" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="5" fill="#ffffff" opacity="0.5" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#seaGradient)" />
<g>
<path d="M150,120 C140,100 120,100 110,120 C130,80 180,80 170,120 C160,100 150,100 150,120 Z" fill="#ffcc00"/>
<rect x="135" y="70" width="30" height="60" fill="#000000" opacity="0.8" />
<circle cx="150" cy="50" r="25" fill="#ff6699" />
<path d="M130,120 L130,170 Q100,170 120,200 L140,180 L140,120 Z" fill="#663300" />
<path d="M170,120 L170,170 Q200,170 180,200 L160,180 L160,120 Z" fill="#663300" />
<ellipse cx="150" cy="80" rx="10" ry="5" fill="#ccc" />
<ellipse cx="150" cy="85" rx="12" ry="6" fill="#fff" />
<g transform="translate(70, 20)">
<path d="M0,0 Q10,-20 20,0 T40,0 Q50,-20 60,0 T80,0" fill="url(#coralGradient)" />
<path d="M0,5 Q10,-15 20,5 T40,5 Q50,-15 60,5 T80,5" fill="#cc3300" opacity="0.7" />
<path d="M0,10 Q10,-10 20,10 T40,10 Q50,-10 60,10 T80,10" fill="#CC66CC" opacity="0.6" />
</g>
<g fill="url(#bubbles)">
<circle cx="50" cy="180" r="5" />
<circle cx="120" cy="200" r="8" />
<circle cx="200" cy="150" r="7" />
<circle cx="170" cy="220" r="4" />
<circle cx="250" cy="190" r="6" />
</g>
<path d="M80,250 Q90,220 100,250 T120,250 Q130,220 140,250 T160,250" fill="#000" opacity="0.6" />
</g>
<text x="150" y="290" font-size="20" text-anchor="middle" fill="#ffffff">Giraffe Scuba Adventure</text>
</svg>
Judge's Analysis
Player 2's image is more aligned with the prompt as it clearly depicts a giraffe in a scuba suit and includes elements like waves and bubbles suggesting an underwater scene.
The composition is more structured and visually appealing, with text adding context.
Player 1's submission lacks clarity and essential elements of the prompt, making it less effective in conveying the concept.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"