Creative Challenge
"A flying fish wearing a top hat under a crescent moon"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Crescent Moon -->
<clipPath id="moon-clip">
<path d="M150 100 C 200 50, 250 150, 300 100 L 300 0 L 0 0 L 0 100 Z" />
</clipPath>
<circle cx="150" cy="100" r="100" fill="#F7DC6F" clip-path="url(#moon-clip)" />
<circle cx="150" cy="100" r="90" fill="#F2C464" clip-path="url(#moon-clip)" />
<circle cx="150" cy="100" r="80" fill="#FFD700" clip-path="url(#moon-clip)" />
<!-- Flying Fish -->
<g transform="translate(150 150)">
<path d="M-50 -50 L 50 -50 L 50 50 L -50 50 Z" fill="#3498DB" />
<path d="M-40 -40 L 40 -40 L 40 40 L -40 40 Z" fill="#1A1D23" />
<path d="M-30 -30 L 30 -30 L 30 40 L -30 40 Z" fill="#F7DC6F" />
<circle cx="0" cy="-20" r="10" fill="#1A1D23" />
<circle cx="0" cy="20" r="10" fill="#F7DC6F" />
<path d="M-20 -20 L 20 -20 L 20 20 L -20 20 Z" fill="#3498DB" />
<path d="M-10 -10 L 10 -10 L 10 10 L -10 10 Z" fill="#1A1D23" />
</g>
<!-- Top Hat -->
<g transform="translate(150 120)">
<path d="M-20 -30 L 20 -30 L 20 -10 L -20 -10 Z" fill="#1A1D23" />
<path d="M-15 -25 L 15 -25 L 15 -15 L -15 -15 Z" fill="#F7DC6F" />
<path d="M-10 -20 L 10 -20 L 10 -10 L -10 -10 Z" fill="#3498DB" />
<circle cx="0" cy="-20" r="5" fill="#1A1D23" />
</g>
<!-- Stars -->
<g fill="#F7DC6F">
<circle cx="50" cy="50" r="2" />
<circle cx="70" cy="70" r="2" />
<circle cx="100" cy="50" r="2" />
<circle cx="120" cy="70" r="2" />
<circle cx="150" cy="50" r="2" />
<circle cx="170" cy="70" r="2" />
<circle cx="200" cy="50" r="2" />
<circle cx="220" cy="70" r="2" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient night sky -->
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="80%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#0a1a40" />
<stop offset="85%" stop-color="#050d24" />
<stop offset="100%" stop-color="#020817" />
</radialGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fffde7" />
<stop offset="100%" stop-color="#ffecb3" />
</linearGradient>
<linearGradient id="fishBodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#64b5f6" />
<stop offset="60%" stop-color="#2196f3" />
<stop offset="100%" stop-color="#1976d2" />
</linearGradient>
<linearGradient id="hatGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#212121" />
<stop offset="100%" stop-color="#424242" />
</linearGradient>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="white" stop-opacity="1" />
<stop offset="100%" stop-color="white" stop-opacity="0" />
</radialGradient>
<filter id="softGlow" height="300%" width="300%" x="-75%" y="-75%">
<feMorphology operator="dilate" radius="2" in="SourceAlpha" result="thicken" />
<feGaussianBlur in="thicken" stdDeviation="5" result="blurred" />
<feFlood flood-color="#4db6ac" result="glowColor" />
<feComposite in="glowColor" in2="blurred" operator="in" result="softGlow" />
<feComposite in="SourceGraphic" in2="softGlow" operator="over" />
</filter>
<pattern id="scales" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<path d="M0,0 a5,5 0 1,1 10,0 z" fill="#1e88e5" fill-opacity="0.6" />
</pattern>
</defs>
<!-- Night sky background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<g class="stars">
<circle cx="50" cy="30" r="1" fill="white" />
<circle cx="80" cy="50" r="1.2" fill="white" />
<circle cx="120" cy="40" r="0.8" fill="white" />
<circle cx="160" cy="20" r="1" fill="white" />
<circle cx="200" cy="45" r="1.3" fill="white" />
<circle cx="240" cy="30" r="0.9" fill="white" />
<circle cx="270" cy="50" r="1.1" fill="white" />
<circle cx="30" cy="80" r="0.7" fill="white" />
<circle cx="280" cy="80" r="1" fill="white" />
<circle cx="260" cy="170" r="1.2" fill="white" />
<circle cx="220" cy="200" r="0.8" fill="white" />
<circle cx="40" cy="200" r="1" fill="white" />
<circle cx="60" cy="230" r="0.7" fill="white" />
<!-- A few glowing stars -->
<circle cx="180" cy="70" r="1.5" fill="white">
<animate attributeName="opacity" values="1;0.3;1" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="70" cy="170" r="1.4" fill="white">
<animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="120" r="1.6" fill="white">
<animate attributeName="opacity" values="0.5;1;0.5" dur="5s" repeatCount="indefinite" />
</circle>
</g>
<!-- Crescent moon -->
<g class="moon" transform="translate(225, 60) rotate(20)">
<path d="M0,0 a40,40 0 1,0 0,80 a30,30 0 1,1 0,-80 z" fill="url(#moonGradient)" />
<circle cx="15" cy="25" r="8" fill="#fffde7" fill-opacity="0.15" />
<circle cx="5" cy="50" r="10" fill="#fffde7" fill-opacity="0.1" />
<circle cx="25" cy="65" r="6" fill="#fffde7" fill-opacity="0.12" />
</g>
<!-- Flying fish -->
<g class="flyingFish" transform="translate(120, 150) rotate(-10)">
<!-- Fish body -->
<path d="M-70,0 C-50,-20 -30,-25 0,-20 C30,-25 50,-15 70,0 C50,15 30,25 0,20 C-30,25 -50,20 -70,0 Z"
fill="url(#fishBodyGradient)"
stroke="#0d47a1"
stroke-width="1" />
<!-- Scales pattern -->
<path d="M-65,0 C-45,-18 -30,-22 0,-18 C30,-22 45,-12 65,0 C45,12 30,22 0,18 C-30,22 -45,18 -65,0 Z"
fill="url(#scales)" />
<!-- Fish eye -->
<circle cx="30" cy="-5" r="5" fill="white" />
<circle cx="32" cy="-5" r="2" fill="black" />
<circle cx="31" cy="-6" r="1" fill="white" />
<!-- Fish mouth -->
<path d="M45,-2 C50,-1 55,2 57,0" fill="none" stroke="#0d47a1" stroke-width="1" />
<!-- Fish wings/fins -->
<path d="M0,-15 C-5,-40 10,-60 30,-65 C20,-45 10,-30 0,-15 Z"
fill="#bbdefb"
stroke="#0d47a1"
stroke-width="1"
filter="url(#softGlow)" />
<path d="M0,15 C-5,40 10,60 30,65 C20,45 10,30 0,15 Z"
fill="#bbdefb"
stroke="#0d47a1"
stroke-width="1"
filter="url(#softGlow)" />
<!-- Tail -->
<path d="M-70,0 C-80,-20 -100,-25 -110,-5 C-100,0 -90,0 -100,5 C-90,25 -80,20 -70,0 Z"
fill="#64b5f6"
stroke="#0d47a1"
stroke-width="1" />
<!-- Top hat -->
<g class="topHat" transform="translate(0, -35) rotate(10)">
<rect x="-20" y="-5" width="40" height="10" rx="2" fill="url(#hatGradient)" stroke="#111111" />
<rect x="-15" y="-25" width="30" height="20" rx="1" fill="url(#hatGradient)" stroke="#111111" />
<rect x="-13" y="-25" width="26" height="3" rx="1" fill="#9e9e9e" />
<path d="M-10,-15 L10,-15" stroke="#9e9e9e" stroke-width="1.5" />
</g>
</g>
<!-- Bubbles -->
<g class="bubbles">
<circle cx="180" cy="140" r="3" fill="white" fill-opacity="0.6" />
<circle cx="190" cy="125" r="2" fill="white" fill-opacity="0.5" />
<circle cx="200" cy="135" r="1.5" fill="white" fill-opacity="0.4" />
<circle cx="205" cy="120" r="2.5" fill="white" fill-opacity="0.5" />
<circle cx="215" cy="130" r="1" fill="white" fill-opacity="0.5" />
<circle cx="65" cy="150" r="2" fill="white" fill-opacity="0.5">
<animate attributeName="cy" values="150;130;110" dur="6s" repeatCount="indefinite" />
</circle>
<circle cx="35" cy="160" r="3" fill="white" fill-opacity="0.4">
<animate attributeName="cy" values="160;140;120" dur="8s" repeatCount="indefinite" />
</circle>
<circle cx="90" cy="170" r="1.5" fill="white" fill-opacity="0.6">
<animate attributeName="cy" values="170;150;130" dur="7s" repeatCount="indefinite" />
</circle>
</g>
<!-- Light beams from moon -->
<g opacity="0.2">
<path d="M225,100 L200,200" stroke="white" stroke-width="1" />
<path d="M235,100 L220,210" stroke="white" stroke-width="0.8" />
<path d="M245,90 L250,180" stroke="white" stroke-width="1.2" />
<path d="M215,90 L160,180" stroke="white" stroke-width="0.9" />
</g>
</svg>
Judge's Analysis
Player 2's submission more accurately captures the prompt with a clear depiction of a flying fish wearing a top hat under a crescent moon.
The technical quality is strong, with smooth lines and a visually appealing composition.
In contrast, Player 1's image lacks clarity in representing the specified elements of 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
"Bubblegum skyscraper in a desert"
"A cat juggling fish while riding a unicycle on a rainbow"
"Astronaut riding a giant koi fish through a star-filled cosmic pond"
"Triangular moon lighting a field of square sunflowers"
"Chameleon playing a tiny, neon-colored guitar on a dark branch"
"Galactic opera sung by cats in astronaut costumes"