Creative Challenge
"Giraffe with a city skyline on its back under a crescent moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient night sky -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#00274D" />
<stop offset="100%" stop-color="#001F33" />
</linearGradient>
<radialGradient id="moonGlow" cx="0.7" cy="0.2" r="0.3">
<stop offset="0%" stop-color="#F6F1D1" stop-opacity="0.8" />
<stop offset="100%" stop-color="#00274D" stop-opacity="0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Crescent moon -->
<circle cx="210" cy="60" r="20" fill="url(#moonGlow)" />
<path d="M210 40 A20 20 0 1 1 190 60 A15 20 0 1 0 210 40" fill="#F6F1D1" />
<!-- Giraffe with city skyline -->
<g transform="translate(50, 150)">
<!-- Giraffe's neck and head -->
<path d="M20 0 C22 -30, 38 -30, 40 0 L46 60 C47 70, 33 70, 32 60 Z" fill="#D4A373" />
<circle cx="38" cy="-25" r="10" fill="#D4A373" />
<circle cx="32" cy="-28" r="2" fill="#000" />
<circle cx="44" cy="-28" r="2" fill="#000" />
<!-- Skyline on giraffe's back -->
<g transform="scale(1.2) translate(0, -35)">
<!-- Buildings -->
<rect x="10" y="0" width="9" height="20" fill="#555" />
<rect x="20" y="0" width="12" height="25" fill="#666" />
<rect x="35" y="0" width="7" height="18" fill="#777" />
<rect x="45" y="0" width="10" height="30" fill="#444" />
<rect x="60" y="0" width="8" height="15" fill="#555" />
<!-- Windows -->
<rect x="11" y="5" width="2" height="2" fill="#F6F1D1" />
<rect x="14" y="10" width="2" height="2" fill="#F6F1D1" />
<rect x="21" y="8" width="2" height="2" fill="#F6F1D1" />
<rect x="24" y="15" width="2" height="2" fill="#F6F1D1" />
<rect x="46" y="8" width="2" height="2" fill="#F6F1D1" />
<rect x="50" y="20" width="2" height="2" fill="#F6F1D1" />
<rect x="62" y="10" width="2" height="2" fill="#F6F1D1" />
</g>
</g>
<!-- Ground with subtle gradient -->
<rect y="250" width="300" height="50" fill="url(#skyGradient)" style="opacity: 0.7;" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f0e68c; stop-opacity:1" />
<stop offset="100%" style="stop-color:#e1d68d; stop-opacity:1" />
</linearGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#001f3f; stop-opacity:1" />
<stop offset="100%" style="stop-color:#005b96; stop-opacity:1" />
</linearGradient>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#494949; stop-opacity:1" />
<stop offset="100%" style="stop-color:#7a7a7a; stop-opacity:1" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<g transform="translate(150, 150)">
<path d="M-20 40 Q-40 60, -30 80 Q-10 100, 10 90 Q30 80, 20 60 Q30 40, 0 40 Q-10 30, -20 40"
fill="#d2a54e" />
<path d="M-28 35 L-25 10 L-35 5 L-40 15 L-30 20 Z" fill="#d29d4c" />
<path d="M-18 50 Q-22 70, -10 70 Q0 70, 0 50 z" fill="#d2a54e" />
<polygon points="-20,40 -30,80 -10,100 10,90 0,50"
fill="rgba(255, 255, 255, 0.3)" opacity="0.5"/>
<g id="city">
<rect x="-40" y="-50" width="10" height="30" fill="url(#buildingGradient)"/>
<rect x="-20" y="-60" width="15" height="40" fill="url(#buildingGradient)"/>
<rect x="10" y="-40" width="20" height="50" fill="url(#buildingGradient)"/>
<rect x="30" y="-50" width="10" height="30" fill="url(#buildingGradient)"/>
</g>
<g transform="translate(-20, -70)">
<rect x="-4" y="-50" width="8" height="25" fill="url(#buildingGradient)" />
<rect x="2" y="-55" width="6" height="30" fill="url(#buildingGradient)" />
<rect x="12" y="-45" width="5" height="20" fill="url(#buildingGradient)" />
</g>
</g>
<path d="M180 40 C 180 5, 220 10, 220 40 S 200 70, 180 40 Z" fill="url(#moonGradient)" />
<circle cx="200" cy="50" r="3" fill="#e1d68d" />
<circle cx="215" cy="40" r="3" fill="#e1d68d" />
<circle cx="190" cy="60" r="3" fill="#e1d68d" />
</svg>
Judge's Analysis
Player 1's submission adheres more closely to the prompt with a clear depiction of a giraffe's neck and a skyline on its back under a crescent moon, creating a coherent and imaginative scene.
The composition is simple yet effective, and the moon is well-integrated.
Player 2's image lacks clarity in representing a giraffe and the skyline is less distinct, making it harder to interpret according 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
"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"