Creative Challenge
"Butterfly made of musical notes exuding a melody in a starlit meadow"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="100%" height="100%" fill="black" />
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#2b2d42;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0f0f15;stop-opacity:1" />
</radialGradient>
<linearGradient id="noteGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ffafaf;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00;stop-opacity:1" />
</linearGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feFlood flood-color="#ffffff" result="color" />
<feComposite in2="blur" operator="in" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="100%" height="100%" fill="url(#bgGradient)" />
<!-- Stars -->
<g fill="white">
<circle cx="30" cy="40" r="2" />
<circle cx="250" cy="70" r="1.5" />
<circle cx="130" cy="90" r="2" />
<circle cx="200" cy="20" r="1.8" />
<circle cx="50" cy="250" r="1.5" />
<circle cx="220" cy="200" r="2.1" />
<circle cx="270" cy="150" r="1.7" />
<circle cx="150" cy="230" r="2.4" />
<circle cx="90" cy="180" r="1.3" />
<circle cx="300" cy="300" r="2" />
</g>
<!-- Butterfly made of musical notes -->
<g transform="translate(150 150)">
<g fill="url(#noteGradient)" filter="url(#glow)">
<path d="M-10,-30 C-30,-60 30,-60 10,-30 Q0,-50 -10,-30 Z" />
<path d="M10,-30 C30,-60 -30,-60 -10,-30 Q0,-50 10,-30 Z" />
</g>
<g fill="white" stroke="url(#noteGradient)" stroke-width="0.5">
<path d="M-10,-30 Q-15,-35 -20,-30 Q-30,-20 -10,-10 Q0,-20 -10,-30 Z" />
<path d="M10,-30 Q15,-35 20,-30 Q30,-20 10,-10 Q0,-20 10,-30 Z" />
</g>
</g>
<!-- Melody Lines -->
<g stroke="white" stroke-width="1.5">
<path d="M70 150 C 90 100, 210 100, 230 150" fill="none" stroke-opacity="0.5" />
<path d="M30 170 C 50 120, 250 120, 270 170" fill="none" stroke-opacity="0.5" />
<path d="M100 200 C 120 160, 180 160, 200 200" fill="none" stroke-opacity="0.5" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="meadowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#2c9f80;stop-opacity:1" />
<stop offset="100%" style="stop-color:#185342;stop-opacity:1" />
</linearGradient>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffffff; stop-opacity:0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#meadowGradient)" />
<g>
<path d="M100,150 Q120,100 150,130 Q180,100 200,150 Q180,180 150,160 Q120,180 100,150" fill="#FFD700" />
<path d="M150,130 L150,190" stroke="#000000" stroke-width="2" />
<circle cx="110" cy="150" r="4" fill="#000000" />
<circle cx="190" cy="150" r="4" fill="#000000" />
<circle cx="150" cy="160" r="2" fill="#000000" />
<circle cx="150" cy="180" r="2" fill="#000000" />
<path d="M150,190 Q140,180 130,190" fill="none" stroke="#000000" stroke-width="2" />
</g>
<g fill="url(#starGlow)">
<circle cx="50" cy="50" r="6" />
<circle cx="90" cy="70" r="3" />
<circle cx="250" cy="100" r="5" />
<circle cx="200" cy="40" r="4" />
<circle cx="280" cy="20" r="3" />
</g>
<path d="M100,150 C50,120 50,180 100,150 M200,150 C250,120 250,180 200,150 M150,180 C100,180 100,220 150,220 C200,220 200,180 150,180" fill="none" stroke="#000" stroke-width="1.5" stroke-linecap="round" />
<g transform="translate(140 240)">
<text x="0" y="0" font-family="Arial" font-size="10" fill="#ffffff">♪</text>
<text x="20" y="-10" font-family="Arial" font-size="12" fill="#ffffff">♬</text>
<text x="35" y="5" font-family="Arial" font-size="10" fill="#ffffff">♫</text>
</g>
<g fill="#ffffff">
<circle cx="75" cy="180" r="1" />
<circle cx="85" cy="210" r="1.5" />
<circle cx="95" cy="190" r="1" />
<circle cx="120" cy="200" r="1.5" />
<circle cx="130" cy="185" r="1" />
</g>
</svg>
Judge's Analysis
Player 2's image more closely adheres to the prompt by incorporating musical notes into the design, suggesting a melody, and using elements that resemble a butterfly.
The green background subtly evokes a meadow, enhancing the visual appeal and thematic coherence.
Player 1's submission is more abstract and less aligned with the prompt's specifics.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"