Creative Challenge
"A giraffe with a neck made of spiraling rainbows reaching for a starry fruit"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Starry Night -->
<rect width="300" height="300" fill="navy" />
<g id="stars">
<!-- Generating random stars in the background -->
<circle cx="100" cy="100" r="1" fill="white" />
<!-- Add more stars as needed -->
</g>
<!-- Giraffe Body -->
<rect x="120" y="100" width="50" height="80" fill="sandybrown" />
<!-- Giraffe Neck - Spiraling Rainbows -->
<path fill="none" stroke="url(#rainbow)" stroke-width="10"
d="M145 120 Q160 105 170 135 Q180 125 170 160 Q160 150 180 180 Q190 170 200 200 Q210 190 220 220 Q230 210 240 240 Q250 230 260 260" />
<!-- Giraffe Head -->
<circle cx="145" cy="90" r="20" fill="sandybrown" />
<!-- Giraffe's Eye -->
<circle cx="135" cy="85" r="2" fill="black" />
<!-- Starry Fruit -->
<circle cx="250" cy="50" r="15" fill="yellow" />
<!-- Rainbow Gradient -->
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red" />
<stop offset="20%" stop-color="orange" />
<stop offset="40%" stop-color="yellow" />
<stop offset="60%" stop-color="green" />
<stop offset="80%" stop-color="blue" />
<stop offset="100%" stop-color="purple" />
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="giraffeGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fbebaa"/>
<stop offset="100%" stop-color="#e89e52"/>
</radialGradient>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white"/>
<stop offset="100%" stop-color="yellow"/>
</radialGradient>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red"/>
<stop offset="16.67%" stop-color="orange"/>
<stop offset="33.33%" stop-color="yellow"/>
<stop offset="50%" stop-color="green"/>
<stop offset="66.67%" stop-color="blue"/>
<stop offset="83.33%" stop-color="indigo"/>
<stop offset="100%" stop-color="violet"/>
</linearGradient>
<pattern id="starryFruitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1.5" fill="white"/>
<circle cx="8" cy="8" r="1.5" fill="white"/>
</pattern>
</defs>
<g>
<ellipse cx="100" cy="230" rx="35" ry="50" fill="url(#giraffeGradient)"/>
<path d="M135,230 Q150,210 140,180 Q150,130 200,100" stroke="url(#rainbowGradient)" stroke-width="10" fill="none"/>
<circle cx="200" cy="100" r="30" fill="url(#starryFruitPattern)"/>
<circle cx="200" cy="100" r="15" fill="url(#starGradient)" opacity="0.7"/>
</g>
<circle cx="120" cy="250" r="10" fill="#e89e52"/>
<circle cx="150" cy="230" r="7" fill="#e89e52"/>
<circle cx="115" cy="280" r="4" fill="#e89e52"/>
<circle cx="130" cy="290" r="6" fill="#e89e52"/>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the prompt with a clear depiction of a giraffe's head and a spiral rainbow neck reaching for a starry fruit.
The technical execution shows a strong grasp of color blending and composition, creating a visually appealing and creative interpretation.
Player 1's image, while colorful, lacks the clarity and adherence to the prompt in terms of depicting a giraffe and the starry fruit.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"