Creative Challenge
"Flying fish with mechanical wings over a glowing cityscape at night."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<!-- Background: Night Sky -->
<defs>
<!-- Gradient for night sky -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0d0d2b"/>
<stop offset="100%" stop-color="#1a1a4d"/>
</linearGradient>
<!-- Gradient for city glow -->
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#fffa69" stop-opacity="0.7"/>
<stop offset="100%" stop-color="#ffd700" stop-opacity="0"/>
</linearGradient>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Glowing Cityscape -->
<g id="city" fill="none" stroke="none">
<!-- City Buildings -->
<rect x="50" y="180" width="40" height="100" fill="#444" stroke="#222" stroke-width="2"/>
<rect x="100" y="150" width="30" height="130" fill="#555" stroke="#222" stroke-width="2"/>
<rect x="140" y="170" width="50" height="110" fill="#666" stroke="#222" stroke-width="2"/>
<rect x="200" y="140" width="25" height="140" fill="#555" stroke="#222" stroke-width="2"/>
<rect x="240" y="160" width="40" height="120" fill="#444" stroke="#222" stroke-width="2"/>
<!-- City glow -->
<rect x="40" y="180" width="220" height="130" fill="url(#cityGradient)" opacity="0.6"/>
</g>
<!-- Flying Fish -->
<g id="fish" transform="translate(150,150)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="20" ry="12" fill="#ff6f61" stroke="#cc4b3a" stroke-width="2"/>
<!-- Tail -->
<polygon points="-20,0 -40,-10 -40,10" fill="#ff6f61" stroke="#cc4b3a" stroke-width="2"/>
<!-- Fins -->
<polygon points="-5,-12 -15,-25 -5,-20" fill="#ffd700" stroke="#cc4b00" stroke-width="1"/>
<polygon points="5,12 15,25 5,20" fill="#ffd700" stroke="#cc4b00" stroke-width="1"/>
<!-- Eye -->
<circle cx="8" cy="-3" r="2" fill="#222"/>
</g>
<!-- Mechanical Wings -->
<g id="wings" transform="translate(150,150)">
<!-- Left Wing -->
<g id="left-wing" transform="translate(-20,0)">
<path d="M0,0 Q -50,-40 -70,0 Q -50,40 0,0" fill="none" stroke="#ccc" stroke-width="3"/>
<!-- Mechanical details -->
<line x1="0" y1="0" x2="-35" y2="-20" stroke="#999" stroke-width="1"/>
<line x1="-35" y1="-20" x2="-60" y2="-10" stroke="#999" stroke-width="1"/>
<line x1="0" y1="0" x2="-35" y2="20" stroke="#999" stroke-width="1"/>
<line x1="-35" y1="20" x2="-60" y2="10" stroke="#999" stroke-width="1"/>
</g>
<!-- Right Wing -->
<g id="right-wing" transform="translate(20,0)">
<path d="M0,0 Q 50,-40 70,0 Q 50,40 0,0" fill="none" stroke="#ccc" stroke-width="3"/>
<!-- Mechanical details -->
<line x1="0" y1="0" x2="35" y2="-20" stroke="#999" stroke-width="1"/>
<line x1="35" y1="-20" x2="60" y2="-10" stroke="#999" stroke-width="1"/>
<line x1="0" y1="0" x2="35" y2="20" stroke="#999" stroke-width="1"/>
<line x1="35" y1="20" x2="60" y2="10" stroke="#999" stroke-width="1"/>
</g>
</g>
<!-- Glowing Effect around the fish -->
<circle cx="150" cy="150" r="50" fill="none" stroke="#ffd700" stroke-opacity="0.3" stroke-width="8" filter="blur(4px)"/>
</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="#00112e" />
<stop offset="100%" stop-color="#00081a" />
</linearGradient>
<linearGradient id="fishGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff9f43" />
<stop offset="100%" stop-color="#ff6b6b" />
</linearGradient>
<linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#bdc3c7" />
<stop offset="100%" stop-color="#2c3e50" />
</linearGradient>
<radialGradient id="glowGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#f1c40f" />
<stop offset="100%" stop-color="transparent" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(150, 100)">
<ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#fishGradient)" />
<path d="M-40,0 Q-50,-10 -60,0 T-80,0" fill="none" stroke="#ff9f43" stroke-width="2" />
<path d="M40,0 Q50,-10 60,0 T80,0" fill="none" stroke="#ff9f43" stroke-width="2" />
<g transform="translate(-50, -10)">
<path d="M0,0 L-20,-30 L-10,-40 L0,-30 L10,-40 L20,-30 Z" fill="url(#wingGradient)" />
<path d="M0,0 L-20,-30 L-10,-40 L0,-30 L10,-40 L20,-30 Z" fill="none" stroke="#2c3e50" stroke-width="2" />
</g>
<g transform="translate(50, -10)">
<path d="M0,0 L-20,-30 L-10,-40 L0,-30 L10,-40 L20,-30 Z" fill="url(#wingGradient)" />
<path d="M0,0 L-20,-30 L-10,-40 L0,-30 L10,-40 L20,-30 Z" fill="none" stroke="#2c3e50" stroke-width="2" />
</g>
</g>
<g transform="translate(0, 250)">
<rect x="0" y="0" width="300" height="50" fill="#2c3e50" />
<circle cx="50" cy="25" r="10" fill="url(#glowGradient)" />
<circle cx="150" cy="25" r="15" fill="url(#glowGradient)" />
<circle cx="250" cy="25" r="10" fill="url(#glowGradient)" />
<rect x="40" y="15" width="20" height="20" fill="#34495e" />
<rect x="140" y="10" width="20" height="30" fill="#34495e" />
<rect x="240" y="15" width="20" height="20" fill="#34495e" />
</g>
<g transform="translate(0, 200)">
<circle cx="50" cy="50" r="5" fill="#f1c40f" />
<circle cx="150" cy="50" r="5" fill="#f1c40f" />
<circle cx="250" cy="50" r="5" fill="#f1c40f" />
</g>
</svg>
Judge's Analysis
Player 1's submission better captures the prompt with the inclusion of mechanical wings and a glowing cityscape that aligns with the nighttime setting.
The glowing halo and cityscape details enhance the visual appeal and adherence to the prompt, while Player 2's submission lacks clear mechanical wing representation and a distinct cityscape, making it less aligned with the theme.
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.