Creative Challenge
"A giraffe with a telescope in space, gazing at constellations of earth animals"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Deep space background -->
<rect width="300" height="300" fill="url(#spaceGradient)" />
<!-- Star field -->
<g id="stars">
<circle cx="34" cy="23" r="1" fill="white"/>
<circle cx="67" cy="89" r="1" fill="white"/>
<circle cx="147" cy="45" r="1" fill="white"/>
<circle cx="198" cy="133" r="1" fill="white"/>
<circle cx="251" cy="79" r="1" fill="white"/>
<circle cx="289" cy="189" r="1" fill="white"/>
<circle cx="224" cy="233" r="1" fill="white"/>
<circle cx="121" cy="209" r="1" fill="white"/>
<circle cx="56" cy="158" r="1" fill="white"/>
<circle cx="17" cy="291" r="1" fill="white"/>
</g>
<!-- Space giraffe -->
<g transform="translate(50, 150)">
<!-- Giraffe body -->
<path d="M0 0 L40 0 Q50 0 60 10 L60 40 Q60 50 50 60 L0 60 Q0 50 10 50 L10 10 Q0 10 0 0 Z" fill="#F7D2C4" stroke="#8B4513" stroke-width="2"/>
<!-- Giraffe head -->
<path d="M60 20 L80 20 Q90 20 90 30 L90 40 Q90 50 80 60 L60 60 Q60 50 50 50 L50 30 Q60 30 60 20 Z" fill="#F7D2C4" stroke="#8B4513" stroke-width="2"/>
<!-- Telescope -->
<path d="M80 30 L110 30 L115 25 Q120 20 120 10 L120 0 Q120 -10 110 -10 L80 -10 Q75 -10 70 0 L70 10 Q75 10 80 20 Z" fill="#CD8500" stroke="#8B4513" stroke-width="2"/>
<!-- Telescope lens -->
<circle cx="105" cy="15" r="5" fill="white" stroke="#8B4513" stroke-width="1">
<defs>
<linearGradient id="lensGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
</linearGradient>
</defs>
<circle cx="105" cy="15" r="5" fill="url(#lensGradient)"/>
</circle>
</g>
<!-- Constellation animals -->
<g transform="translate(180, 100)" opacity="0.8">
<!-- Dog constellation -->
<path d="M0 0 L20 0 L30 10 L20 20 L10 10 L0 20 L-10 10 Q-15 5 -10 0 Z" fill="none" stroke="white" stroke-width="1"/>
<!-- Bird constellation -->
<path d="M40 10 L50 0 L60 10 L55 15 L45 15 L40 20 L35 15 Z" fill="none" stroke="white" stroke-width="1"/>
<!-- Fish constellation -->
<path d="M20 30 Q30 25 40 30 L40 35 Q35 40 30 35 L30 25 Z" fill="none" stroke="white" stroke-width="1"/>
</g>
<!-- Glow effects -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic" opacity="0.5"/>
</feMerge>
</filter>
<!-- Space background gradient -->
<defs>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#1A0F3B"/>
<stop offset="100%" style="stop-color:#000000"/>
</linearGradient>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Night Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#starry-night)" />
<defs>
<radialGradient id="starry-night" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#1a1d23" />
<stop offset="50%" stop-color="#343a40" />
<stop offset="100%" stop-color="#212529" />
</radialGradient>
</defs>
<!-- Giraffe in Space -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="50" fill="#f7f7f7" />
<circle cx="0" cy="0" r="40" fill="#fff" />
<path d="M 0,0 L -20,50 L 20,50 Z" fill="#fff" />
<path d="M 0,0 L -15,-30 L 15,-30 Z" fill="#fff" />
<circle cx="0" cy="-20" r="10" fill="#000" />
<circle cx="0" cy="-20" r="5" fill="#fff" />
<!-- Telescope -->
<g transform="translate(-20, -30)">
<rect x="-10" y="-10" width="20" height="20" fill="#aaa" rx="5" />
<circle cx="0" cy="0" r="10" fill="#fff" />
<circle cx="0" cy="0" r="5" fill="#000" />
</g>
</g>
<!-- Constellations -->
<g transform="translate(150, 150)">
<!-- Lion -->
<g transform="translate(-50, -50)">
<circle cx="0" cy="0" r="5" fill="#fff" />
<circle cx="-10" cy="-5" r="3" fill="#fff" />
<circle cx="10" cy="-5" r="3" fill="#fff" />
<path d="M -15,10 L 15,10" stroke="#fff" stroke-width="2" />
</g>
<!-- Elephant -->
<g transform="translate(30, -20)">
<circle cx="0" cy="0" r="5" fill="#fff" />
<circle cx="-10" cy="5" r="3" fill="#fff" />
<circle cx="10" cy="5" r="3" fill="#fff" />
<path d="M -15,10 L -5,15 L 5,15 L 15,10 Z" stroke="#fff" stroke-width="2" />
</g>
<!-- Monkey -->
<g transform="translate(-20, 20)">
<circle cx="0" cy="0" r="5" fill="#fff" />
<circle cx="-10" cy="-5" r="3" fill="#fff" />
<circle cx="10" cy="-5" r="3" fill="#fff" />
<path d="M -10,10 L 10,10" stroke="#fff" stroke-width="2" />
<path d="M -5,15 L 5,15" stroke="#fff" stroke-width="2" />
</g>
</g>
</svg>
Judge's Analysis
Player 1's image effectively captures the whimsical concept of a giraffe with a telescope in space, using clear and playful shapes to depict the scene.
The inclusion of constellations adds to the narrative, and the color contrast enhances visual appeal.
Player 2's submission, while creative, lacks clarity in representing the prompt, making Player 1's image more aligned with 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
"Moonlit garden with giant, glowing dandelions"
"Ballet-dancing flamingos in rainbow tutus on a lily pad stage"
"Penguins playing jazz underwater"
"An astronaut watering a sunflower on the moon"
"Cat wearing a crown, lounging on a vintage radio"
"Electric jellyfish with neon sunglasses under a starry sky"