Creative Challenge
"A flamingo in a spacesuit playing a saxophone on the moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="spaceGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0B0B2A"/>
<stop offset="100%" style="stop-color:#1B1B4B"/>
</linearGradient>
<radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#E6E6E6"/>
<stop offset="100%" style="stop-color:#CCCCCC"/>
</radialGradient>
<pattern id="craters" width="30" height="30" patternUnits="userSpaceOnUse">
<circle cx="15" cy="15" r="5" fill="#AAAAAA" opacity="0.3"/>
</pattern>
</defs>
<!-- Space background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGrad)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="150" cy="30" r="1.5" fill="white"/>
<circle cx="250" cy="70" r="1" fill="white"/>
<circle cx="80" cy="180" r="1.2" fill="white"/>
<circle cx="220" cy="220" r="1" fill="white"/>
<circle cx="40" cy="250" r="1.3" fill="white"/>
</g>
<!-- Moon surface -->
<path d="M0 200 Q150 180 300 220 L300 300 L0 300 Z" fill="url(#moonGrad)"/>
<path d="M0 200 Q150 180 300 220 L300 300 L0 300 Z" fill="url(#craters)"/>
<!-- Flamingo in spacesuit -->
<g transform="translate(150,180)">
<!-- Spacesuit -->
<path d="M-20 0 Q-25 -40 -15 -60 Q-5 -80 10 -85 Q25 -90 30 -70 Q35 -50 30 0"
fill="#silver" stroke="#444" stroke-width="2"/>
<!-- Helmet -->
<circle cx="0" cy="-70" r="25" fill="#white" stroke="#444" stroke-width="2"/>
<circle cx="0" cy="-70" r="20" fill="rgba(200,200,255,0.3)"/>
<!-- Flamingo head -->
<path d="M0 -75 Q5 -85 0 -95 Q-5 -100 -8 -90"
fill="#FF69B4" stroke="#FF1493" stroke-width="1"/>
<!-- Saxophone -->
<path d="M15 -60 Q25 -55 30 -45 Q35 -35 25 -30"
fill="#FFD700" stroke="#DAA520" stroke-width="2"/>
<circle cx="28" cy="-40" r="3" fill="#DAA520"/>
<circle cx="25" cy="-35" r="3" fill="#DAA520"/>
</g>
<!-- Musical notes -->
<g fill="#FFD700">
<path d="M190 80 L195 70 L200 80 L195 90 Z"/>
<path d="M210 100 L215 90 L220 100 L215 110 Z"/>
<path d="M170 90 L175 80 L180 90 L175 100 Z"/>
</g>
<!-- Earth in distance -->
<circle cx="50" cy="50" r="20" fill="#4169E1"/>
<path d="M35 45 Q50 35 65 45 Q50 55 35 45" fill="#228B22" opacity="0.7"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#2f4f7f" rx="10" />
<radialGradient id="moonGrad" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.8" />
<stop offset="100%" stop-color="#ddd" stop-opacity="0.5" />
</radialGradient>
<circle cx="150" cy="150" r="120" fill="url(#moonGrad)" />
<!-- Flamingo in spacesuit -->
<g transform="translate(120, 100)">
<path d="M 0 0 L 20 50 L 40 0 Z" fill="#ff69b4" stroke="#000" stroke-width="2" />
<rect x="10" y="20" width="20" height="40" fill="#fff" rx="5" />
<circle cx="25" cy="35" r="10" fill="#000" />
<path d="M 10 50 L 30 70 L 50 50 Z" fill="#ff69b4" stroke="#000" stroke-width="2" />
</g>
<g transform="translate(120, 120)">
<circle cx="0" cy="0" r="20" fill="#fff" />
<path d="M -20 -20 L 20 20 M -20 20 L 20 -20" stroke="#000" stroke-width="4" />
</g>
<path d="M 120 180 L 180 220 L 120 260 Z" fill="#ff69b4" stroke="#000" stroke-width="2" />
<!-- Saxophone -->
<g transform="translate(70, 200)">
<rect x="0" y="0" width="40" height="10" fill="#999" rx="5" />
<rect x="10" y="10" width="20" height="40" fill="#999" rx="5" />
<circle cx="25" cy="25" r="10" fill="#999" />
<path d="M 0 50 L 20 70 L 40 50 Z" fill="#999" stroke="#000" stroke-width="2" />
</g>
<!-- Additional details -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="10" fill="#fff" />
<path d="M -10 -10 L 10 10 M -10 10 L 10 -10" stroke="#000" stroke-width="2" />
</g>
<text x="100" y="280" fill="#fff" font-size="20">Moon Jazz</text>
</svg>
Judge's Analysis
Player 1's image clearly depicts a flamingo in a spacesuit on the moon playing a saxophone, with the presence of a saxophone, lunar surface, and stylized flamingo elements.
The composition is simple yet effective, adhering closely to the prompt.
Player 2's image, though creative, is abstract and less clear in conveying the specific elements of the prompt, making it harder to interpret.
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 clockwork butterfly unveiling a hidden city on its left wing"
"Dancing cactus under a disco ball"
"Cat in a spacesuit playing chess with a ghost"
"A giraffe juggling planets under the ocean"
"A feathered dinosaur with a top hat, sipping tea in a Victorian-style parlor"
"Cat in a comet sipping tea through a straw"