Creative Challenge
"A giraffe wearing a top hat and monocle, dancing on a giant lily pad"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="hatGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#333;stop-opacity:1" />
<stop offset="100%" style="stop-color:#666;stop-opacity:1" />
</linearGradient>
<linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#d9a86a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f0e5b3;stop-opacity:1" />
</linearGradient>
<radialGradient id="eyeGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#fff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#000;stop-opacity:1" />
</radialGradient>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="5" />
<feOffset dx="0" dy="5" result="offsetblur" />
<feFlood flood-color="#000" />
<feComposite in2="offsetblur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<g filter="url(#shadow)">
<ellipse cx="150" cy="220" rx="80" ry="20" fill="#b2e1b0" />
<ellipse cx="150" cy="230" rx="90" ry="30" fill="lightgreen" />
</g>
<g>
<g transform="translate(130, 50)">
<path d="M30 0 C 20 55, 60 55, 50 0 S 80 -50, 30 0" fill="url(#bodyGradient)" />
<circle cx="30" cy="-15" r="15" fill="url(#bodyGradient)" />
<ellipse cx="10" cy="-20" rx="5" ry="8" fill="#000" />
<ellipse cx="50" cy="-20" rx="5" ry="8" fill="#000" />
<circle cx="30" cy="-15" r="5" fill="url(#eyeGradient)" />
<rect x="20" y="-45" width="20" height="10" fill="url(#hatGradient)" />
<path d="M10 -45 Q 30 -60 50 -45" fill="url(#hatGradient)" />
<path d="M20 -55 Q 20 -60 25 -55" fill="#e3e3e3" />
<path d="M10 0 Q 20 20 30 0 Q 40 20 50 0" fill="#d9a86a" />
</g>
</g>
</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="#b36b24"/>
</pattern>
<radialGradient id="pondGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#4CAF50"/>
<stop offset="100%" style="stop-color:#2E7D32"/>
</radialGradient>
<filter id="water">
<feTurbulence type="turbulence" baseFrequency="0.01" numOctaves="3"/>
<feDisplacementMap in="SourceGraphic" scale="5"/>
</filter>
</defs>
<!-- Water background -->
<rect x="0" y="0" width="300" height="300" fill="#1a472a"/>
<!-- Lily pad -->
<path d="M50 200 C50 100, 250 100, 250 200 C250 250, 50 250, 50 200Z"
fill="url(#pondGlow)" filter="url(#water)"/>
<!-- Giraffe body -->
<path d="M120 180 C120 120, 180 120, 180 180"
stroke="#f4c430" stroke-width="30" fill="none"/>
<rect x="130" y="160" width="40" height="60" fill="#f4c430"/>
<!-- Giraffe pattern -->
<path d="M120 180 C120 120, 180 120, 180 180"
stroke="url(#spots)" stroke-width="28" fill="none"/>
<!-- Legs -->
<line x1="135" y1="220" x2="135" y2="250" stroke="#f4c430" stroke-width="8"/>
<line x1="165" y1="220" x2="165" y2="250" stroke="#f4c430" stroke-width="8"/>
<!-- Head -->
<ellipse cx="150" cy="120" rx="20" ry="25" fill="#f4c430"/>
<!-- Top hat -->
<rect x="130" y="70" width="40" height="40" fill="black"/>
<rect x="120" y="100" width="60" height="5" fill="black"/>
<!-- Monocle -->
<circle cx="160" cy="125" r="8" fill="none" stroke="gold" stroke-width="2"/>
<line x1="168" y1="125" x2="175" y2="130" stroke="gold" stroke-width="2"/>
<!-- Dance motion lines -->
<path d="M80 190 Q100 180 90 170" stroke="white" stroke-width="2" fill="none" opacity="0.5"/>
<path d="M220 190 Q200 180 210 170" stroke="white" stroke-width="2" fill="none" opacity="0.5"/>
<!-- Water lilies -->
<circle cx="60" cy="220" r="10" fill="pink"/>
<circle cx="240" cy="220" r="10" fill="pink"/>
</svg>
Judge's Analysis
Player 2's submission more effectively adheres to the prompt by clearly depicting a giraffe with a top hat and monocle dancing on a giant lily pad.
The use of color and composition captures the whimsical nature of the idea.
In contrast, Player 1's image lacks clarity and detail, making it harder to discern the elements specified in 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
"A single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"A disco ball moon over a city of dancing skyscrapers"
"Lemon-shaped hot air balloon over a surreal purple ocean"