Creative Challenge
"Giraffe wearing a detective hat, holding a magnifying glass, peering at an ant parade"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="giraffeSpot" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#d4a373" />
<stop offset="100%" stop-color="#ad7f29" />
</radialGradient>
<linearGradient id="hatGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4a4a4a" />
<stop offset="100%" stop-color="#262626" />
</linearGradient>
<pattern id="antPattern" width="20" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#000" />
<circle cx="15" cy="5" r="2" fill="#000" />
</pattern>
</defs>
<!-- Giraffe's Neck -->
<rect x="120" y="50" width="30" height="200" fill="url(#giraffeSpot)" />
<!-- Giraffe's Head -->
<ellipse cx="135" cy="40" rx="25" ry="35" fill="url(#giraffeSpot)" />
<!-- Giraffe's Ears -->
<ellipse cx="120" cy="10" rx="8" ry="15" fill="#d4a373" />
<ellipse cx="150" cy="10" rx="8" ry="15" fill="#d4a373" />
<!-- Detective Hat -->
<path d="M110 20 Q135 5, 160 20 Q165 20, 140 10 Q130 5, 115 10 Z" fill="url(#hatGradient)" />
<!-- Magnifying Glass -->
<circle cx="200" cy="120" r="20" fill="#eef" stroke="#333" stroke-width="3" />
<line x1="185" y1="135" x2="160" y2="160" stroke="#333" stroke-width="3" />
<!-- Giraffe's Eyes -->
<circle cx="125" cy="35" r="4" fill="#000" />
<circle cx="145" cy="35" r="4" fill="#000" />
<!-- Ant Parade -->
<rect x="10" y="280" width="280" height="10" fill="url(#antPattern)" />
<!-- Ground -->
<rect x="0" y="270" width="300" height="30" fill="#e9e4d4" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffeGradient">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</linearGradient>
<pattern id="grassPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0 0 L5 10 L10 0 Z" fill="#228B22"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#87CEEB"/>
<g transform="translate(150,150)">
<!-- Giraffe Body -->
<circle cx="0" cy="0" r="40" fill="url(#giraffeGradient)"/>
<rect x="-20" y="-40" width="40" height="80" rx="10" fill="#A0522D"/>
<!-- Neck -->
<rect x="-15" y="-60" width="30" height="100" rx="10" fill="url(#giraffeGradient)"/>
<!-- Head -->
<circle cx="0" cy="-100" r="30" fill="url(#giraffeGradient)"/>
<rect x="-10" y="-120" width="20" height="20" rx="5" fill="#A0522D"/>
<!-- Detective Hat -->
<path d="M-20-130 L20-130 Q30-130 30-125 L30-115 Q30-110 20-110 L-20-110 Q-30-110 -30-115 L-30-125 Q-30-130 -20-130 Z" fill="#2B1B17"/>
<rect x="-5" y="-125" width="10" height="5" fill="#CD0000"/>
<!-- Magnifying Glass -->
<circle cx="50" cy="30" r="20" fill="none" stroke="#404040" stroke-width="2"/>
<circle cx="50" cy="30" r="15" fill="none" stroke="#404040" stroke-width="1"/>
<path d="M50,30 L60,40" stroke="#404040" stroke-width="2"/>
<!-- Ant Parade -->
<g transform="translate(0,100)">
<path d="M-50,0 L-60,10 L-50,20 Z" fill="#696969"/>
<path d="M-40,0 L-50,10 L-40,20 Z" fill="#696969"/>
<path d="M-30,0 L-40,10 L-30,20 Z" fill="#696969"/>
</g>
<!-- Background Elements -->
<rect width="300" height="100" y="80" fill="url(#grassPattern)"/>
<circle cx="200" cy="-100" r="30" fill="#FFD700"/>
</g>
</svg>
Judge's Analysis
Player 2's image creatively depicts the giraffe with a detective hat and a magnifying glass, with a clear representation of an ant parade, adhering closely to the prompt.
The composition is visually appealing with distinct shapes and colors.
In contrast, Player 1's image lacks detail and the elements of the prompt are not as clearly represented.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"