Creative Challenge
"A flamingo ice-skating on a rainbow-colored frozen pond"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="rainbow" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FF00FF"/>
<stop offset="0.2" stop-color="#00FFFF"/>
<stop offset="0.4" stop-color="#FFFF00"/>
<stop offset="0.6" stop-color="#FFA500"/>
<stop offset="0.8" stop-color="#FF0000"/>
<stop offset="1" stop-color="#FF00FF"/>
</linearGradient>
<radialGradient id="flamingo" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0" stop-color="#FFB3BA"/>
<stop offset="1" stop-color="#FF69B4"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#rainbow)"/>
<!-- Frozen pond -->
<rect x="50" y="100" width="200" height="200" fill="white" opacity="0.2"/>
<rect x="50" y="100" width="200" height="200" fill="url(#rainbow)" opacity="0.8"/>
<!-- Ice sparkles -->
<circle cx="150" cy="200" r="10" fill="white" opacity="0.5" blur="5x5"/>
<circle cx="120" cy="220" r="8" fill="white" opacity="0.5" blur="5x5"/>
<circle cx="180" cy="220" r="8" fill="white" opacity="0.5" blur="5x5"/>
<!-- Flamingo body -->
<ellipse cx="150" cy="180" rx="20" ry="15" fill="url(#flamingo)"/>
<path d="M150,160 Q170,130 190,160 L190,160" fill="url(#flamingo)"/>
<path d="M150,160 Q130,130 110,160 L110,160" fill="url(#flamingo)"/>
<!-- Legs and skates -->
<path d="M140,200 L140,220" stroke="#FFA500" stroke-width="2"/>
<path d="M160,200 L160,220" stroke="#FFA500" stroke-width="2"/>
<rect x="135" y="215" width="10" height="10" fill="#FFA500"/>
<rect x="155" y="215" width="10" height="10" fill="#FFA500"/>
<!-- Ice trails -->
<path d="M140,220 C140,230 130,230 130,240" stroke="white" stroke-width="2" opacity="0.3"/>
<path d="M160,220 C160,230 170,230 170,240" stroke="white" stroke-width="2" opacity="0.3"/>
<!-- Shadow -->
<circle cx="150" cy="200" r="20" fill="black" opacity="0.2" blur="5x5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="pink"/>
<stop offset="100%" stop-color="hotpink"/>
</linearGradient>
<radialGradient id="iceGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="lightblue" stop-opacity="0.8"/>
<stop offset="100%" stop-color="transparent" stop-opacity="0.2"/>
</radialGradient>
<linearGradient id="rainbowGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red"/>
<stop offset="20%" stop-color="orange"/>
<stop offset="40%" stop-color="yellow"/>
<stop offset="60%" stop-color="green"/>
<stop offset="80%" stop-color="blue"/>
<stop offset="100%" stop-color="purple"/>
</linearGradient>
<radialGradient id="sunGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="yellow" stop-opacity="0.8"/>
<stop offset="100%" stop-color="transparent" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- Rainbow Ice Path -->
<ellipse cx="150" cy="200" rx="120" ry="45" fill="url(#iceGradient)" stroke="url(#rainbowGradient)" stroke-width="5"/>
<!-- Flamingo -->
<g transform="translate(150, 150) scale(0.8)">
<path d="M0 -20 Q-20 0, -10 30 Q10 15, 20 0 Q0 50, -15 70 Q5 78, 20 60" fill="url(#flamingoGradient)"/>
<circle cx="15" cy="-20" r="10" fill="white"/>
<circle cx="17" cy="-22" r="3" fill="black"/>
<path d="M25 -22 Q35 -18, 25 -10" fill="none" stroke="black" stroke-width="2"/>
<rect x="-4" y="70" width="5" height="50" fill="pink" transform="rotate(20)"/>
<path d="M-4 120 Q0 125, 5 120" fill="none" stroke="black" stroke-width="3"/>
</g>
<!-- Sun -->
<circle cx="240" cy="60" r="30" fill="url(#sunGlow)"/>
</svg>
Judge's Analysis
Player 2's image clearly depicts a flamingo ice-skating on a rainbow-colored frozen pond, adhering closely to the prompt.
The composition is more detailed and visually appealing, with a clear representation of the scene including the flamingo and the rainbow elements.
Player 1's image, while colorful, lacks clear representation of 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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"