Creative Challenge
"Giraffe wearing a trench coat, holding an umbrella under a rain of musical notes"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="coatGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#8B4513" />
<stop offset="100%" stop-color="#D2691E" />
</radialGradient>
<radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#4682B4" />
<stop offset="100%" stop-color="#1E90FF" />
</radialGradient>
<linearGradient id="neckGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</linearGradient>
<pattern id="coatPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#CD853F" />
</pattern>
</defs>
<!-- Giraffe Neck -->
<rect x="120" y="20" width="20" height="150" fill="url(#neckGradient)" />
<circle cx="130" cy="20" r="20" fill="url(#neckGradient)" />
<!-- Giraffe Head -->
<ellipse cx="130" cy="20" rx="15" ry="20" fill="#FFA500" />
<circle cx="125" cy="15" r="3" fill="#000" />
<circle cx="135" cy="15" r="3" fill="#000" />
<line x1="125" y1="25" x2="135" y2="25" stroke="#000" stroke-width="2" />
<!-- Trench Coat -->
<rect x="110" y="70" width="60" height="120" fill="url(#coatPattern)" />
<polygon points="110,70 170,70 140,170" fill="url(#coatGradient)" />
<!-- Umbrella -->
<path d="M150 75 q30 -40 60 0" fill="url(#umbrellaGradient)" />
<rect x="150" y="70" width="5" height="60" fill="#696969" />
<line x1="155" y1="130" x2="155" y2="150" stroke="#696969" stroke-width="5" />
<!-- Musical Notes -->
<path d="M20,180 Q30,190 20,200 T20,220 Q30,230 20,240" stroke="#FF69B4" stroke-width="2" fill="none" />
<circle cx="18" cy="190" r="4" fill="#FF69B4" />
<path d="M50,180 Q60,170 50,160 T50,140" stroke="#00FA9A" stroke-width="2" fill="none" />
<circle cx="48" cy="170" r="4" fill="#00FA9A" />
<path d="M80,200 Q90,210 80,220 T80,240" stroke="#FFD700" stroke-width="2" fill="none" />
<circle cx="78" cy="210" r="4" fill="#FFD700" />
<path d="M270,170 Q275,175 280,170 T290,180" stroke="#1E90FF" stroke-width="2" fill="none" />
<circle cx="278" cy="175" r="3" fill="#1E90FF" />
<path d="M230,190 Q235,200 240,195 T245,185" stroke="#9370DB" stroke-width="2" fill="none" />
<circle cx="233" cy="200" r="3" fill="#9370DB" />
<path d="M200,200 Q210,210 220,215 T230,225" stroke="#FF4500" stroke-width="2" fill="none" />
<circle cx="208" cy="210" r="3" fill="#FF4500" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" rx="20" />
<!-- Rain of musical notes -->
<pattern id="musicPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<symbol viewBox="0 0 20 20">
<path d="M10 0L20 10 10 20 0 10Z" fill="#FFF" stroke="#FFF" stroke-width="2" />
</symbol>
</pattern>
<rect x="0" y="0" width="300" height="300" fill="url(#musicPattern)" opacity="0.5" />
<!-- Giraffe -->
<g transform="translate(150 120)">
<circle cx="0" cy="0" r="30" fill="#F7DC6F" />
<circle cx="0" cy="-40" r="20" fill="#F7DC6F" />
<circle cx="0" cy="-70" r="10" fill="#F7DC6F" />
<path d="M-10 -90L10 -90L10 -110L-10 -110Z" fill="#F7DC6F" />
<path d="M-15 -120L15 -120L15 -130L-15 -130Z" fill="#F7DC6F" />
<path d="M-20 -140L20 -140L20 -150L-20 -150Z" fill="#F7DC6F" />
<circle cx="0" cy="-160" r="5" fill="#F7DC6F" />
<!-- Eyes -->
<circle cx="-10" cy="-170" r="2" fill="#000" />
<circle cx="10" cy="-170" r="2" fill="#000" />
<!-- Trench coat -->
<rect x="-30" y="-120" width="60" height="80" fill="#666" rx="10" />
<rect x="-35" y="-110" width="70" height="10" fill="#666" rx="10" />
<rect x="-40" y="-100" width="80" height="10" fill="#666" rx="10" />
<!-- Umbrella -->
<circle cx="0" cy="-190" r="20" fill="url(#umbrellaGradient)" />
<path d="M-20 -190L20 -190L20 -210L-20 -210Z" fill="#FFF" stroke="#FFF" stroke-width="2" />
</g>
<!-- Umbrella gradient -->
<linearGradient id="umbrellaGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFF" stop-opacity="0.5" />
<stop offset="1" stop-color="#FFF" stop-opacity="1" />
</linearGradient>
</svg>
Judge's Analysis
Player 1's image effectively captures the whimsical idea of a giraffe in a trench coat holding an umbrella under a rain of musical notes.
The use of color and placement of musical notes adds a playful touch that adheres well to the prompt.
Player 2's image lacks these elements and does not clearly convey the concept as specified.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"