Creative Challenge
"A flying fish with butterfly wings over a surreal desert landscape"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ff7e5f; stop-opacity:1" />
<stop offset="100%" style="stop-color:#feb47b; stop-opacity:1" />
</linearGradient>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e0c097; stop-opacity:1" />
<stop offset="100%" style="stop-color:#c9b38c; stop-opacity:1" />
</linearGradient>
<radialGradient id="fishGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#6a11cb; stop-opacity:1" />
<stop offset="100%" style="stop-color:#2575fc; stop-opacity:1" />
</radialGradient>
<linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff9a9e; stop-opacity:1" />
<stop offset="100%" style="stop-color:#fad0c4; stop-opacity:1" />
</linearGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="1" cy="1" r="1" fill="#fff" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<ellipse cx="150" cy="280" rx="150" ry="20" fill="url(#sandGradient)" />
<!-- Flying Fish Body -->
<path d="M150 180 Q140 160 150 140 Q160 160 150 180" fill="url(#fishGradient)" stroke="#333" stroke-width="2"/>
<!-- Butterfly Wings -->
<g transform="translate(150,160)">
<path d="M0,0 C-50,-30 -50,30 0,0" fill="url(#wingGradient)" stroke="#333" stroke-width="1" opacity="0.8"/>
<path d="M0,0 C50,-30 50,30 0,0" fill="url(#wingGradient)" stroke="#333" stroke-width="1" opacity="0.8"/>
<path d="M0,0 C-40,-20 -40,20 0,0" fill="url(#wingGradient)" stroke="#333" stroke-width="1" opacity="0.6"/>
<path d="M0,0 C40,-20 40,20 0,0" fill="url(#wingGradient)" stroke="#333" stroke-width="1" opacity="0.6"/>
</g>
<!-- Tail Fins -->
<path d="M150 180 Q145 190 150 200 Q155 190 150 180" fill="#2575fc" stroke="#1a5fb4" stroke-width="2"/>
<path d="M150 180 Q155 190 150 200 Q145 190 150 180" fill="#2575fc" stroke="#1a5fb4" stroke-width="2"/>
<!-- Surreal Elements -->
<circle cx="80" cy="60" r="30" fill="rgba(255,255,255,0.2)" stroke="url(#starPattern)" stroke-width="2"/>
<circle cx="220" cy="80" r="20" fill="rgba(255,255,255,0.3)" stroke="url(#starPattern)" stroke-width="1"/>
<!-- Shadows and Highlights -->
<ellipse cx="150" cy="200" rx="40" ry="10" fill="rgba(0,0,0,0.1)" />
<path d="M150 140 Q145 135 150 130 Q155 135 150 140" fill="rgba(255,255,255,0.7)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Sky -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFB6C1;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Desert Landscape -->
<defs>
<linearGradient id="sandGradient" gradientTransform="rotate(90)">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#DAA520;stop-opacity:1" />
</linearGradient>
</defs>
<ellipse cx="150" cy="300" rx="300" ry="100" fill="url(#sandGradient)" />
<!-- Fish Body -->
<ellipse cx="150" cy="150" rx="30" ry="15" fill="#1E90FF" />
<!-- Fish Eye -->
<circle cx="160" cy="145" r="3" fill="#fff" />
<circle cx="160" cy="145" r="1.5" fill="#000" />
<!-- Butterfly Wings -->
<defs>
<radialGradient id="wingGradient">
<stop offset="20%" style="stop-color:#FF69B4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8A2BE2;stop-opacity:1" />
</radialGradient>
</defs>
<path d="M150 150 C120 120, 100 100, 80 130 C110 110, 90 90, 130 130 Z" fill="url(#wingGradient)" />
<path d="M150 150 C180 120, 200 100, 220 130 C190 110, 210 90, 170 130 Z" fill="url(#wingGradient)" />
<!-- Shadow on Sand -->
<ellipse cx="150" cy="220" rx="70" ry="15" fill="rgba(0, 0, 0, 0.2)" />
<!-- Sun -->
<circle cx="50" cy="50" r="30" fill="#FF4500" />
<!-- Surreal Elements -->
<polygon points="250,230 270,250 230,250" fill="#DEB887" />
<path d="M230,230 C235,215 265,215 270,230" fill="#DEB887" />
<circle cx="80" cy="230" r="10" fill="#4682B4" />
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of a flying fish with butterfly wings over a surreal desert landscape.
The use of vibrant colors and distinct shapes adds to the surreal quality, while the fish and wings are clearly defined.
Player 1's image lacks clarity in depicting the fish and wings, and the overall composition feels more abstract than surreal.
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
"Frog in space suit playing guitar on a comet"
"A dragon knitting a scarf with flaming yarn"
"Saxophone-playing cat under a crescent moon"
"Floating islands connected by glowing bridges"
"Mermaid in a library, surrounded by floating books"
"Surrealist clock melting in a desert landscape"