Creative Challenge
"A flying fish leaping over a glowing full moon."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGlow" cx="50%" cy="50%" r="60%" fx="40%" fy="60%">
<stop offset="0%" stop-color="#FFE8B2" />
<stop offset="50%" stop-color="#FFF5D0" />
<stop offset="100%" stop-color="#FFE8B2" />
</radialGradient>
<linearGradient id="fishScales" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#0077BE" />
<stop offset="25%" stop-color="#00A8E8" />
<stop offset="50%" stop-color="#0077BE" />
<stop offset="75%" stop-color="#00A8E8" />
<stop offset="100%" stop-color="#0077BE" />
</linearGradient>
<pattern id="finPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<line x1="0" y1="0" x2="10" y2="10" stroke="#004D80" stroke-width="1" />
</pattern>
</defs>
<circle cx="200" cy="200" r="60" fill="url(#moonGlow)" />
<path d="M50 100 C 70 50, 100 20, 130 50 C 160 80, 180 120, 150 150 C 120 180, 80 160, 50 150 Z" fill="url(#fishScales)" stroke="#003355" stroke-width="2" />
<path d="M50 150 C 20 120, 10 80, 40 50 L 50 100 Z" fill="url(#finPattern)" stroke="#004D80" stroke-width="1" />
<path d="M150 150 C 180 120, 190 80, 160 50 L 130 50 Z" fill="url(#finPattern)" stroke="#004D80" stroke-width="1" />
<ellipse cx="70" cy="120" rx="5" ry="10" fill="#FFFFFF" />
<circle cx="75" cy="120" r="2" fill="#000000" />
<path d="M40 70 C 45 60, 55 60, 60 70" fill="none" stroke="#003355" stroke-width="3" stroke-linecap="round"/>
<path d="M40 80 C 45 70, 55 70, 60 80" fill="none" stroke="#003355" stroke-width="3" stroke-linecap="round"/>
<path d="M40 90 C 45 80, 55 80, 60 90" fill="none" stroke="#003355" stroke-width="3" stroke-linecap="round"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Moon glow filter -->
<filter id="moonGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="8" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Radial gradient for moon -->
<radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFEEA"/>
<stop offset="70%" stop-color="#F0E7C0"/>
<stop offset="100%" stop-color="#D4C58A"/>
</radialGradient>
<!-- Fish body gradient -->
<linearGradient id="fishGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#00E5FF"/>
<stop offset="50%" stop-color="#0088FF"/>
<stop offset="100%" stop-color="#0044AA"/>
</linearGradient>
<!-- Scales pattern -->
<pattern id="scales" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0,5 a5,5 0 0,1 10,0" fill="rgba(255,255,255,0.2)"/>
</pattern>
<!-- Star shape -->
<symbol id="star" viewBox="0 0 10 10">
<polygon points="5,0 6,4 10,4 7,6 8,10 5,8 2,10 3,6 0,4 4,4" fill="#FFF" opacity="0.8"/>
</symbol>
</defs>
<!-- Night sky background -->
<rect width="300" height="300" fill="url('#nightSky')"/>
<linearGradient id="nightSky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001030"/>
<stop offset="100%" stop-color="#000814"/>
</linearGradient>
<!-- Stars -->
<g>
<use href="#star" x="20" y="30" transform="scale(1.2)"/>
<use href="#star" x="80" y="50" transform="scale(0.8)"/>
<use href="#star" x="200" y="40" transform="scale(1.1)"/>
<use href="#star" x="260" y="80" transform="scale(0.9)"/>
<use href="#star" x="150" y="20" transform="scale(0.7)"/>
<use href="#star" x="50" y="100" transform="scale(0.6)"/>
<use href="#star" x="230" y="150" transform="scale(1)"/>
</g>
<!-- Glowing Moon -->
<circle cx="220" cy="80" r="50" fill="url(#moonGrad)" filter="url(#moonGlow)"/>
<!-- Water splash trail -->
<path d="M80,250 Q100,200 140,180 T200,150" fill="none" stroke="url(#splashGrad)" stroke-width="3" stroke-linecap="round"/>
<linearGradient id="splashGrad" x1="0" y1="1" x2="1" y2="0">
<stop offset="0%" stop-color="#88CCFF" stop-opacity="0.6"/>
<stop offset="100%" stop-color="#44AAFF" stop-opacity="0"/>
</linearGradient>
<!-- Flying fish -->
<g transform="translate(140,160) rotate(-20)">
<!-- Fins -->
<path d="M0,0 C-30,-20 -50,20 0,40" fill="#88E1FF" opacity="0.8"/>
<path d="M80,0 C110,-20 130,20 80,40" fill="#88E1FF" opacity="0.8"/>
<!-- Body -->
<ellipse cx="60" cy="20" rx="60" ry="20" fill="url(#fishGrad)"/>
<!-- Scales overlay -->
<ellipse cx="60" cy="20" rx="60" ry="20" fill="url(#scales)"/>
<!-- Eye -->
<circle cx="10" cy="15" r="4" fill="#000"/>
<circle cx="12" cy="13" r="2" fill="#FFF" opacity="0.7"/>
<!-- Tail -->
<polygon points="-10,20 -30,5 -25,20 -30,35" fill="url(#fishGrad)"/>
</g>
</svg>
Judge's Analysis
Player 2's submission demonstrates greater creativity and adherence to the prompt.
The fish is depicted in mid-leap with dynamic elements like glowing stars and a radiant moon, enhancing the visual appeal.
In comparison, Player 1's image is simple but lacks the same level of composition and energy that captures the idea of a flying fish leaping over a glowing full moon.
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
"Space hamster piloting a tiny UFO through a field of glowing jellyfish-like planets."
"Flying fish soaring over a cityscape at sunrise."
"A clock face melting into a pool of stars."
"A frog wearing a crown, sitting on a lily pad under a crescent moon."