Creative Challenge
"Flying fish with balloon wings over a cityscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky with gradient and stars -->
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#87CEEB" offset="0"/>
<stop stop-color="#4682B4" offset="1"/>
</linearGradient>
<linearGradient id="fish" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB88C" offset="0"/>
<stop stop-color="#FF6B6B" offset="1"/>
</linearGradient>
<linearGradient id="balloon" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF69B4" offset="0"/>
<stop stop-color="#FF1493" offset="1"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Flying fish -->
<g transform="translate(150,100)">
<!-- Fish body -->
<path d="M0 0 Q50 -20 100 0 Q150 20 200 0 Q250 -20 300 0 L300 20 L200 40 L100 20 L0 40 Z" fill="url(#fish)"/>
<!-- Balloon wings -->
<g transform="translate(-100,0)">
<ellipse cx="0" cy="50" rx="40" ry="30" fill="url(#balloon)"/>
<path d="M0 60 Q-20 40 -40 20" stroke="#333" stroke-width="2"/>
</g>
<g transform="translate(200,0)">
<ellipse cx="0" cy="50" rx="40" ry="30" fill="url(#balloon)"/>
<path d="M0 60 Q20 40 40 20" stroke="#333" stroke-width="2"/>
</g>
</g>
<!-- Cityscape -->
<g transform="translate(0,200)">
<!-- Buildings -->
<rect x="50" y="0" width="50" height="100" fill="#666"/>
<rect x="150" y="0" width="50" height="120" fill="#444"/>
<rect x="250" y="0" width="50" height="110" fill="#888"/>
<!-- Windows -->
<rect x="60" y="20" width="30" height="30" fill="#FFF"/>
<rect x="160" y="30" width="30" height="30" fill="#FFF"/>
<rect x="260" y="40" width="30" height="30" fill="#FFF"/>
<!-- Trees -->
<path d="M20 0 L10 50 L30 50 Z" fill="#228B22"/>
<path d="M80 0 L70 60 L90 60 Z" fill="#228B22"/>
<path d="M140 0 L130 50 L150 50 Z" fill="#228B22"/>
<!-- Road -->
<rect y="240" width="300" height="10" fill="#333"/>
<path d="M0 245 L300 245" stroke="#666" stroke-width="2"/>
<!-- Cars -->
<rect x="50" y="242" width="20" height="8" fill="#FF0000"/>
<rect x="200" y="242" width="20" height="8" fill="#00FF00"/>
</g>
<!-- Stars -->
<script type="text/ecmascript">
const stars = [];
for(let i = 0; i < 20; i++) {
const x = Math.random() * 300;
const y = Math.random() * 150;
stars.push(<circle cx={x} cy={y} r="1" fill="white"/>);
}
stars.forEach star => {
star.setAttribute("opacity", 0.6);
}
document.querySelector("svg").prependChildren(...stars);
</script>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Definitions for gradients and patterns -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1e3c72"/>
<stop offset="100%" stop-color="#2a5298"/>
</linearGradient>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#333"/>
<stop offset="100%" stop-color="#111"/>
</linearGradient>
<linearGradient id="balloonGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff7e5f"/>
<stop offset="100%" stop-color="#feb47b"/>
</linearGradient>
<linearGradient id="fishGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#36D1DC"/>
<stop offset="100%" stop-color="#5B86E5"/>
</linearGradient>
<radialGradient id="lightGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Cityscape -->
<g id="cityscape">
<!-- Building 1 -->
<rect x="20" y="180" width="40" height="120" fill="url(#cityGradient)" />
<rect x="25" y="190" width="10" height="15" fill="#fff" />
<rect x="45" y="210" width="10" height="15" fill="#fff" />
<!-- Building 2 -->
<rect x="80" y="150" width="50" height="150" fill="url(#cityGradient)" />
<rect x="90" y="160" width="10" height="15" fill="#fff" />
<rect x="110" y="180" width="10" height="15" fill="#fff" />
<rect x="130" y="200" width="10" height="15" fill="#fff" />
<!-- Building 3 -->
<rect x="160" y="170" width="30" height="130" fill="url(#cityGradient)" />
<rect x="165" y="180" width="10" height="15" fill="#fff" />
<rect x="185" y="200" width="10" height="15" fill="#fff" />
<!-- Building 4 -->
<rect x="210" y="160" width="40" height="140" fill="url(#cityGradient)" />
<rect x="220" y="170" width="10" height="15" fill="#fff" />
<rect x="240" y="190" width="10" height="15" fill="#fff" />
<rect x="260" y="210" width="10" height="15" fill="#fff" />
</g>
<!-- Flying Fish -->
<g id="flyingFish" transform="translate(150, 100)">
<!-- Fish Body -->
<path d="M-40,0 Q-20,-30 0,0 Q-20,30 -40,0" fill="url(#fishGradient)" stroke="#fff" stroke-width="2"/>
<!-- Tail -->
<path d="M-40,0 L-60,-15 L-60,15 Z" fill="url(#fishGradient)" stroke="#fff" stroke-width="2"/>
<!-- Eye -->
<circle cx="-15" cy="-5" r="3" fill="#fff"/>
<circle cx="-14" cy="-5" r="1.5" fill="#000"/>
<!-- Balloon Wings -->
<g id="wings">
<!-- Left Balloon Wing -->
<ellipse cx="-30" cy="-20" rx="15" ry="20" fill="url(#balloonGradient)" stroke="#fff" stroke-width="1.5"/>
<line x1="-30" y1="0" x2="-30" y2="-20" stroke="#fff" stroke-width="1"/>
<!-- Right Balloon Wing -->
<ellipse cx="-30" cy="20" rx="15" ry="20" fill="url(#balloonGradient)" stroke="#fff" stroke-width="1.5"/>
<line x1="-30" y1="0" x2="-30" y2="20" stroke="#fff" stroke-width="1"/>
</g>
<!-- Bubbles -->
<circle cx="-10" cy="-30" r="2" fill="#a0e1e0" opacity="0.8"/>
<circle cx="-5" cy="-35" r="1.5" fill="#a0e1e0" opacity="0.7"/>
<circle cx="0" cy="-40" r="1" fill="#a0e1e0" opacity="0.6"/>
</g>
<!-- Connecting Lines / Motion -->
<path d="M150,100 Q140,80 130,90" stroke="#fff" stroke-width="1" stroke-dasharray="2,2" fill="none"/>
<path d="M150,100 Q160,120 170,110" stroke="#fff" stroke-width="1" stroke-dasharray="2,2" fill="none"/>
<!-- Light Effects -->
<circle cx="70" cy="80" r="50" fill="url(#lightGradient)" opacity="0.3"/>
<!-- Ground Reflection (optional) -->
<rect x="0" y="280" width="300" height="20" fill="rgba(0,0,0,0.2)" />
</svg>
Judge's Analysis
Player 2's image creatively integrates the concept of a flying fish with balloon wings over a cityscape.
The composition is clear, with a distinct fish shape and colorful balloons that add visual interest.
The cityscape provides a strong background contrast, enhancing the overall visual appeal and adherence to 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
"A flying cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"
"Tomato moon cheese cityscape under a sunflower sun"