Creative Challenge
"Giraffe lounging in an armchair reading a tiny book"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
</linearGradient>
<pattern id="bookPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="5" height="10" fill="rgb(255,140,0)"/>
<rect x="5" y="0" width="5" height="10" fill="rgb(255,165,0)"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#aaffaa"/>
<g transform="translate(100, 100)">
<path d="M 50 100 Q 75 10 100 100 T 150 100" fill="url(#grad1)"/>
<path d="M 50 100 Q 75 10 100 100" stroke="black" stroke-width="2" fill="none"/>
<path d="M 150 100 Q 125 10 100 100" stroke="black" stroke-width="2" fill="none"/>
<circle cx="100" cy="40" r="15" fill="black"/>
<circle cx="100" cy="40" r="10" fill="white"/>
<circle cx="100" cy="40" r="5" fill="black"/>
<path d="M 75 120 L 125 120 Q 110 140 100 150 Q 90 140 75 120" fill="brown"/>
<path d="M 75 140 L 125 140 Q 110 160 100 170 Q 90 160 75 140" fill="brown"/>
</g>
<rect x="150" y="200" width="50" height="50" fill="url(#bookPattern)"/>
<rect x="220" y="170" width="10" height="80" fill="black"/>
<rect x="210" y="170" width="80" height="10" fill="black"/>
<rect x="210" y="240" width="80" height="10" fill="black"/>
<rect x="210" y="170" width="10" height="80" fill="black"/>
<circle cx="225" cy="185" r="5" fill="black"/>
<circle cx="235" cy="185" r="5" fill="black"/>
<circle cx="245" cy="185" r="5" fill="black"/>
<circle cx="255" cy="185" r="5" fill="black"/>
<circle cx="265" cy="185" r="5" fill="black"/>
<circle cx="275" cy="185" r="5" fill="black"/>
<circle cx="285" cy="185" r="5" fill="black"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="spots" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="6" fill="#8B4513"/>
</pattern>
<linearGradient id="woodGrain" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8B4513"/>
<stop offset="50%" style="stop-color:#A0522D"/>
<stop offset="100%" style="stop-color:#8B4513"/>
</linearGradient>
</defs>
<!-- Armchair -->
<rect x="50" y="150" width="200" height="120" rx="20" fill="url(#woodGrain)"/>
<rect x="40" y="220" width="220" height="40" rx="10" fill="#6B3E26"/>
<rect x="50" y="100" width="40" height="120" fill="#6B3E26"/>
<rect x="210" y="100" width="40" height="120" fill="#6B3E26"/>
<!-- Cushion -->
<ellipse cx="150" cy="200" rx="80" ry="30" fill="#CD853F"/>
<!-- Giraffe body -->
<path d="M140 180 Q150 150 160 120 T180 60" stroke="#DAA520" stroke-width="30" fill="none"/>
<rect x="120" y="160" width="60" height="80" fill="#DAA520"/>
<rect x="130" y="240" width="15" height="40" fill="#DAA520"/>
<rect x="155" y="240" width="15" height="40" fill="#DAA520"/>
<!-- Giraffe spots -->
<path d="M140 180 Q150 150 160 120 T180 60" stroke="url(#spots)" stroke-width="30" fill="none"/>
<rect x="120" y="160" width="60" height="80" fill="url(#spots)"/>
<!-- Giraffe head -->
<path d="M180 60 Q185 55 190 60 T200 70" stroke="#DAA520" stroke-width="20" fill="none"/>
<circle cx="200" cy="70" r="15" fill="#DAA520"/>
<circle cx="205" cy="65" r="3" fill="black"/>
<path d="M190 75 Q195 78 200 75" stroke="black" stroke-width="2" fill="none"/>
<!-- Book -->
<rect x="160" y="150" width="30" height="20" fill="#1E90FF"/>
<rect x="160" y="150" width="15" height="20" fill="#4169E1"/>
<line x1="175" y1="155" x2="185" y2="155" stroke="white" stroke-width="1"/>
<line x1="175" y1="160" x2="185" y2="160" stroke="white" stroke-width="1"/>
<line x1="175" y1="165" x2="185" y2="165" stroke="white" stroke-width="1"/>
<!-- Reading glasses -->
<circle cx="195" cy="70" r="8" fill="none" stroke="#FFD700" stroke-width="2"/>
<circle cx="210" cy="70" r="8" fill="none" stroke="#FFD700" stroke-width="2"/>
<line x1="203" y1="70" x2="207" y2="70" stroke="#FFD700" stroke-width="2"/>
</svg>
Judge's Analysis
Player 2's image effectively captures the concept of a giraffe lounging in an armchair and reading a tiny book, with clear depiction and attention to detail.
The composition is visually appealing and technically sound, adhering closely to the prompt.
Player 1's image lacks clarity and does not convey the scene as effectively.
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
"Giraffe wearing a space helmet juggling planets"
"Space garden in a teacup floating above a starry galaxy"
"Giraffe wearing a vintage diving helmet, standing in a teacup"
"Surreal umbrella raining planets in a desert"
"Astronaut squirrel juggling planets"
"Glowing moon munching on a slice of cheese over a starry night sky"