Creative Challenge
"A flamingo in a top hat balancing on a tightrope over a volcano"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF69B4;stop-opacity:1" />
</linearGradient>
<linearGradient id="volcanoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF4500;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
</linearGradient>
<linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FFB6C1;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA1A1;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Volcano -->
<path d="M150,200 Q180,220 150,250 Q120,220 150,200" fill="url(#volcanoGradient)" stroke="#8B0000" stroke-width="2"/>
<circle cx="150" cy="180" r="10" fill="#FF4500"/>
<!-- Tightrope -->
<line x1="50" y1="150" x2="250" y2="150" stroke="#333" stroke-width="2" stroke-linecap="round"/>
<!-- Flamingo -->
<g transform="translate(150,130)">
<circle cx="0" cy="0" r="15" fill="url(#flamingoGradient)"/>
<path d="M-20,-30 C-15,-25 -10,-20 0,-25" fill="url(#flamingoGradient)" stroke="#FFB6C1" stroke-width="2"/>
<path d="M20,-30 C15,-25 10,-20 0,-25" fill="url(#flamingoGradient)" stroke="#FFB6C1" stroke-width="2"/>
<rect x="-5" y="-40" width="10" height="20" fill="#000" rx="2"/>
<path d="M-30,-50 Q-20,-55 -10,-50" stroke="#FFB6C1" stroke-width="2" fill="none"/>
<path d="M30,-50 Q20,-55 10,-50" stroke="#FFB6C1" stroke-width="2" fill="none"/>
<circle cx="-30" cy="-60" r="5" fill="#FFB6C1"/>
<circle cx="30" cy="-60" r="5" fill="#FFB6C1"/>
</g>
<!-- Top Hat -->
<rect x="135" y="100" width="30" height="40" fill="#000"/>
<rect x="140" y="120" width="20" height="20" fill="#FFFFFF"/>
<!-- Sparkles -->
<g transform="translate(150,140)">
<circle cx="-10" cy="-20" r="2" fill="url(#sparkle)"/>
<circle cx="10" cy="-20" r="2" fill="url(#sparkle)"/>
<circle cx="0" cy="-30" r="2" fill="url(#sparkle)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FF4500" />
</linearGradient>
<linearGradient id="volcanoGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8B4513" />
<stop offset="100%" stop-color="#A0522D" />
</linearGradient>
<radialGradient id="lavaGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#FF6347" />
<stop offset="100%" stop-color="#B22222" />
</radialGradient>
<pattern id="hatPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#000000" />
<circle cx="5" cy="5" r="2" fill="#FFFFFF" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<ellipse cx="150" cy="250" rx="80" ry="40" fill="url(#volcanoGradient)" />
<circle cx="150" cy="260" r="30" fill="url(#lavaGradient)" />
<path d="M50,150 Q150,100 250,150" stroke="#000000" stroke-width="5" fill="none" />
<path d="M120,140 Q130,120 140,140" fill="#FFC0CB" stroke="#000000" stroke-width="2" />
<path d="M160,140 Q170,120 180,140" fill="#FFC0CB" stroke="#000000" stroke-width="2" />
<path d="M130,150 Q150,130 170,150" fill="#FFC0CB" stroke="#000000" stroke-width="2" />
<ellipse cx="150" cy="130" rx="20" ry="30" fill="#FFC0CB" />
<rect x="130" y="90" width="40" height="40" fill="url(#hatPattern)" />
<line x1="140" y1="130" x2="140" y2="150" stroke="#000000" stroke-width="2" />
<line x1="160" y1="130" x2="160" y2="150" stroke="#000000" stroke-width="2" />
<path d="M140,150 Q150,160 160,150" fill="none" stroke="#000000" stroke-width="2" />
</svg>
Judge's Analysis
Player 2's image more effectively captures the prompt with a clear depiction of a flamingo and a top hat, balancing on a tightrope over a volcano.
The composition is dynamic and visually suggests the balancing act, while the use of colors enhances the fiery theme.
Player 1's submission is more abstract and does not clearly represent the elements of the prompt as distinctly.
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
"Upside-down city with flying fish in the sky"
"Whale wearing a tuxedo serving tea to penguins"
"Clock face as a bustling city skyline at night"
"Penguin playing violin in a moonlit snowstorm"
"Frog playing a tiny piano under moonlight"
"A snail wearing a top hat races against a hare wearing roller skates"