Creative Challenge
"A giraffe with a constellation-patterned neck under a starry night sky"
<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-sky)" />
<linearGradient id="starry-night-sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#212121" stop-opacity="1" />
<stop offset="1" stop-color="#1a1a1a" stop-opacity="1" />
</linearGradient>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#fff" opacity="0.5" />
</pattern>
<rect x="0" y="0" width="300" height="300" fill="url(#stars)" />
<!-- Giraffe -->
<g transform="translate(150, 150)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="40" ry="60" fill="#f0f0f0" />
<!-- Neck -->
<g transform="translate(0, -60)">
<path d="M 0,0 C 0,-20 20,-40 40,-40 L 80,-40 C 100,-40 120,-20 120,0 L 120,20 C 120,40 100,60 80,60 L 40,60 C 20,60 0,40 0,20 Z" fill="url(#constellation-pattern)" />
<linearGradient id="constellation-pattern" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#fff" stop-opacity="0.5" />
<stop offset="0.5" stop-color="#fff" stop-opacity="0.2" />
<stop offset="1" stop-color="#fff" stop-opacity="0.5" />
</linearGradient>
<pattern id="constellation" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="#fff" opacity="0.5" />
<circle cx="5" cy="15" r="1" fill="#fff" opacity="0.5" />
<circle cx="15" cy="15" r="1" fill="#fff" opacity="0.5" />
</pattern>
<rect x="-40" y="-40" width="80" height="80" fill="url(#constellation)" />
</g>
<!-- Head -->
<g transform="translate(0, -120)">
<ellipse cx="0" cy="0" rx="20" ry="30" fill="#f0f0f0" />
<!-- Eyes -->
<circle cx="-10" cy="0" r="5" fill="#000" />
<circle cx="10" cy="0" r="5" fill="#000" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Starry Night Background -->
<rect width="100%" height="100%" fill="darkblue" />
<defs>
<radialGradient id="starry-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:white; stop-opacity:0.7" />
<stop offset="100%" style="stop-color:transparent; stop-opacity:0" />
</radialGradient>
<pattern id="constellation-pattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="5" cy="5" r="1.5" fill="white" />
<circle cx="15" cy="15" r="1" fill="white" />
<circle cx="10" cy="10" r="1" fill="white" />
<line x1="5" y1="5" x2="15" y2="15" stroke="white" stroke-width="0.3" />
</pattern>
</defs>
<!-- Stars -->
<g>
<circle cx="30" cy="30" r="2" fill="white" />
<circle cx="80" cy="70" r="1.5" fill="white" />
<circle cx="130" cy="40" r="2" fill="white" />
<circle cx="200" cy="100" r="1.8" fill="white" />
<circle cx="250" cy="80" r="1.5" fill="white" />
<circle cx="220" cy="180" r="1.8" fill="white" />
<circle cx="50" cy="250" r="1.6" fill="white" />
</g>
<!-- Giraffe Body -->
<path d="M150 220 Q140 180 170 160 Q200 140 190 180 Q180 200 150 220" fill="#c2a662" />
<!-- Giraffe Neck with Constellation Pattern -->
<rect x="160" y="100" width="20" height="80" fill="url(#constellation-pattern)" />
<!-- Giraffe Head -->
<path d="M170 80 Q166 75 162 75 Q158 75 154 80 Q152 85 150 90 Q156 95 166 95 Q176 95 170 80" fill="#c2a662" />
<!-- Giraffe Ears -->
<path d="M164 72 L162 66 L166 66 Z" fill="#c2a662" />
<path d="M156 72 L154 66 L158 66 Z" fill="#c2a662" />
<!-- Giraffe Eyes -->
<circle cx="165" cy="84" r="2" fill="black" />
<circle cx="158" cy="84" r="2" fill="black" />
<!-- Giraffe Horns -->
<rect x="162" y="64" width="2" height="6" fill="#8b6e4e" />
<rect x="166" y="64" width="2" height="6" fill="#8b6e4e" />
</svg>
Judge's Analysis
Player 2's image more effectively adheres to the prompt by incorporating a giraffe-like figure with a visible constellation pattern on its neck and a starry night sky background.
The use of color and composition enhances the visibility of the stars and the theme.
Player 1's image lacks clear representation of the giraffe and constellation elements, making it less visually and contextually aligned with 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
"Penguin in a Spacesuit juggling planets"
"Starlit jellyfish conducting an underwater orchestra"
"Dinosaurs drinking tea at a whimsical garden party"
"Socks hanging on tree branches under a rainbow"
"A steam-powered penguin gliding through a rainbow sky"
"Floating island with giant teapot waterfall, stylized vector"