Creative Challenge
"A giraffe with a telescope gazes at constellations shaped like exotic fruits"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" style="stop-color:navy;stop-opacity:1" />
<stop offset="100%" style="stop-color:black;stop-opacity:1" />
</radialGradient>
<pattern id="giraffeSpots" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#e0b166" />
<circle cx="3" cy="3" r="3" fill="#d59500" />
</pattern>
<radialGradient id="telescopeGradient" cx="30%" cy="30%" r="80%">
<stop offset="0%" style="stop-color:silver;stop-opacity:1" />
<stop offset="100%" style="stop-color:grey;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<polygon points="50,200 90,180 95,210 60,220" fill="url(#giraffeSpots)" stroke="#b28600" stroke-width="2"/>
<rect x="50" y="200" width="40" height="10" rx="5" ry="5" fill="#e0b166" stroke="#b28600" stroke-width="2"/>
<circle cx="200" cy="50" r="20" fill="#ffcc00" opacity="0.8"/>
<path d="M 200 50 Q 220 20 240 50 Q 220 80 200 50" fill="#ff9900" opacity="0.5" />
<line x1="70" y1="200" x2="180" y2="60" stroke="#8b4513" stroke-width="3" />
<rect x="60" y="160" width="80" height="20" rx="10" ry="10" fill="url(#telescopeGradient)" />
<line x1="140" y1="160" x2="180" y2="60" stroke="#555" stroke-width="3" />
<circle cx="70" cy="200" r="5" fill="#ffe4b5" />
<circle cx="180" cy="60" r="5" fill="#ffe4b5" />
<circle cx="230" cy="30" r="3" fill="#fa8072" />
<path d="M 90 40 Q 70 20 90 10 Q 110 0 130 10 Q 115 25 90 40" fill="none" stroke="white" stroke-width="2" opacity="0.7"/>
<circle cx="250" cy="70" r="5" fill="#adff2f" />
<path d="M 230 30 Q 250 10 270 30 Q 250 50 230 30" fill="none" stroke="white" stroke-width="2" opacity="0.7" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#020024"/>
<stop offset="100%" stop-color="#090979"/>
</linearGradient>
<radialGradient id="telescopeGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#4B382A"/>
<stop offset="100%" stop-color="#2E1B0F"/>
</radialGradient>
<pattern id="fruitPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="8" fill="#FF6F61" stroke="#fff" stroke-width="1"/>
</pattern>
<symbol id="star">
<circle cx="0" cy="0" r="2" fill="#FFF"/>
</symbol>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Giraffe Body -->
<ellipse cx="150" cy="220" rx="40" ry="20" fill="#D2B48C"/>
<!-- Giraffe Neck -->
<rect x="145" y="140" width="10" height="80" fill="#D2B48C" rx="5"/>
<!-- Giraffe Head -->
<ellipse cx="150" cy="130" rx="15" ry="10" fill="#D2B48C"/>
<!-- Giraffe Eyes -->
<circle cx="152" cy="128" r="1.5" fill="#000"/>
<!-- Giraffe Telescope -->
<rect x="155" y="125" width="15" height="5" fill="url(#telescopeGradient)" transform="rotate(-30 155,125)"/>
<circle cx="170" cy="125" r="2" fill="#000" />
<!-- Giraffe Spots -->
<circle cx="140" cy="210" r="3" fill="#A0522D"/>
<circle cx="160" cy="215" r="4" fill="#A0522D"/>
<circle cx="155" cy="205" r="2.5" fill="#A0522D"/>
<!-- Legs -->
<rect x="135" y="230" width="5" height="20" fill="#D2B48C"/>
<rect x="160" y="230" width="5" height="20" fill="#D2B48C"/>
<!-- Constellations as Fruits -->
<!-- Pineapple */
<g transform="translate(220,80)">
<circle cx="0" cy="0" r="5" fill="#FFD700"/>
<path d="M0,-7 L1,-10 L2,-7 Z" fill="#228B22"/>
<path d="M1,-7 L2,-10 L3,-7 Z" fill="#228B22"/>
</g>
<!-- Mango */
<g transform="translate(250,60)">
<ellipse cx="0" cy="0" rx="6" ry="4" fill="#FF8C00"/>
<circle cx="-3" cy="-2" r="1" fill="#FFF"/>
</g>
<!-- Dragonfruit */
<g transform="translate(200,100)">
<circle cx="0" cy="0" r="5" fill="#FF69B4"/>
<path d="M-2,-2 L2,2" stroke="#FFF" stroke-width="0.5"/>
<path d="M2,-2 L-2,2" stroke="#FFF" stroke-width="0.5"/>
</g>
<!-- Background Stars -->
<use href="#star" x="50" y="50"/>
<use href="#star" x="70" y="80"/>
<use href="#star" x="90" y="60"/>
<use href="#star" x="120" y="100"/>
<use href="#star" x="180" y="50"/>
<use href="#star" x="210" y="30"/>
<use href="#star" x="240" y="70"/>
<use href="#star" x="260" y="90"/>
<!-- Ground -->
<ellipse cx="150" cy="240" rx="150" ry="10" fill="#654321"/>
</svg>
Judge's Analysis
Player 1's image creatively incorporates elements that suggest a telescope and constellations shaped like exotic fruits, adhering to the prompt effectively.
The abstract style and color choice add to the visual appeal.
Player 2's image did not load, making it impossible to evaluate.
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
"Frog in space suit playing guitar on a comet"
"A dragon knitting a scarf with flaming yarn"
"Saxophone-playing cat under a crescent moon"
"Floating islands connected by glowing bridges"
"Mermaid in a library, surrounded by floating books"
"Surrealist clock melting in a desert landscape"