Creative Challenge
"A flamingo in a detective hat, reading a newspaper with magnifying glass"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient -->
<defs>
<linearGradient id="backgroundGradient" gradientUnits="userSpaceOnUse" x1="0" y1="150" x2="300" y2="150">
<stop stop-color="#9BD6F4" offset="0" />
<stop stop-color="#B98ECA" offset="1" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#backgroundGradient)" />
<!-- Flamingo Body -->
<g transform="translate(75, 120)">
<ellipse cx="0" cy="0" rx="30" ry="50" fill="#FFC67D" />
<ellipse cx="0" cy="50" rx="20" ry="30" fill="#FFC67D" />
</g>
<!-- Detective Hat -->
<g transform="translate(65, 90)">
<rect x="0" y="0" width="40" height="10" fill="#314250" rx="2" />
<path d="M 20 10 Q 25 20 30 10" stroke="#314250" stroke-width="5" fill="none" />
<circle cx="20" cy="10" r="5" fill="#314250" />
<path d="M 0 10 L 10 0" stroke="#314250" stroke-width="3" fill="none" />
</g>
<!-- Eyes and Beak -->
<g transform="translate(90, 130)">
<circle cx="0" cy="0" r="5" fill="#212121" />
<circle cx="15" cy="0" r="5" fill="#212121" />
<path d="M 7.5 5 L 7.5 10" stroke="#212121" stroke-width="2" fill="none" />
<path d="M 7.5 10 Q 5 15 0 10" stroke="#FF99CC" stroke-width="3" fill="none" />
</g>
<!-- Newspaper -->
<g transform="translate(120, 140)">
<rect x="0" y="0" width="80" height="100" fill="#F0E4CC" rx="5" />
<text x="5" y="15" font-size="10" font-family="Arial" fill="#333">Flamingo Times</text>
<line x1="0" y1="20" x2="80" y2="20" stroke="#333" stroke-width="1" />
<text x="5" y="30" font-size="8" font-family="Arial" fill="#333">Mystery of the Missing Fish</text>
</g>
<!-- Magnifying Glass -->
<g transform="translate(200, 170)">
<circle cx="0" cy="0" r="20" fill="#FFF" stroke="#212121" stroke-width="2" />
<path d="M -10 0 Q 0 -20 10 0" stroke="#212121" stroke-width="3" fill="none" />
</g>
<!-- Legs and Feet -->
<g transform="translate(100, 210)">
<path d="M 0 0 Q 10 30 20 0" stroke="#FFC67D" stroke-width="5" fill="none" />
<path d="M 0 0 Q -10 30 -20 0" stroke="#FFC67D" stroke-width="5" fill="none" />
<circle cx="0" cy="30" r="5" fill="#FFC67D" />
<circle cx="20" cy="30" r="5" fill="#FFC67D" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#FFB6C1" />
<!-- Flamingo body -->
<ellipse cx="150" cy="200" rx="40" ry="80" fill="#FF1493" />
<!-- Flamingo head -->
<circle cx="150" cy="150" r="30" fill="#FF1493" />
<!-- Detective hat -->
<rect x="125" y="110" width="50" height="40" fill="#000" />
<polygon points="100,110 200,110 125,90 175,90" fill="#000" />
<!-- Flamingo eye -->
<circle cx="160" cy="140" r="5" fill="#000" />
<!-- Flamingo beak -->
<polygon points="160,155 170,160 160,165" fill="#FF8C00" />
<!-- Flamingo legs -->
<line x1="130" y1="220" x2="130" y2="260" stroke="#F08080" stroke-width="3" />
<line x1="170" y1="220" x2="170" y2="260" stroke="#F08080" stroke-width="3" />
<!-- Newspaper -->
<rect x="110" y="90" width="50" height="120" fill="#FFF" />
<!-- Text on newspaper -->
<text x="135" y="100" font-family="Arial" font-size="8" fill="#000">NEWS</text>
<text x="120" y="120" font-family="Arial" font-size="4" fill="#000">Lorem ipsum dolor sit amet,</text>
<text x="120" y="130" font-family="Arial" font-size="4" fill="#000">consectetur adipiscing elit.</text>
<!-- Magnifying glass -->
<circle cx="180" cy="100" r="20" fill="none" stroke="#000" stroke-width="2" />
<line x1="180" y1="80" x2="200" y2="60" stroke="#000" stroke-width="2" />
<line x1="154" y1="106" x2="140" y2="120" stroke="#000" stroke-width="2" />
</svg>
Judge's Analysis
Player 2's submission more clearly represents a flamingo with distinct pink coloring and a recognizable shape.
The composition includes a newspaper and magnifying glass, adhering well to the prompt.
In contrast, Player 1's image lacks clarity in representing the flamingo form and is less visually appealing.
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 flamingo wearing a superhero cape flying over city skyscrapers"
"Giant cat drinking from a teacup filled with stars"
"Levitating octopus juggling flaming comet balls"
"Snail in a top hat racing on a skateboard"
"A cat wearing a helmet, surfing a rainbow wave under a starry sky"
"Surreal clock with melting numbers and wings, floating in a cosmic sky"