Creative Challenge
"Butterfly wings as city skyscrapers at sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff7e5f"/>
<stop offset="50%" stop-color="#feb47b"/>
<stop offset="100%" stop-color="#ffcc33"/>
</linearGradient>
<linearGradient id="wingGradientLeft" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#3a7bd5"/>
<stop offset="100%" stop-color="#3a6073"/>
</linearGradient>
<linearGradient id="wingGradientRight" x1="1" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#00c6ff"/>
<stop offset="100%" stop-color="#0072ff"/>
</linearGradient>
<pattern id="windowPattern" width="5" height="5" patternUnits="userSpaceOnUse">
<rect width="5" height="5" fill="none"/>
<circle cx="2.5" cy="2.5" r="0.5" fill="#fff"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sunsetGradient)"/>
<g transform="translate(150, 150) scale(1.2)">
<!-- Left Wing as Skyscrapers -->
<g id="leftWing" fill="url(#wingGradientLeft)">
<rect x="-80" y="-50" width="20" height="100" />
<rect x="-60" y="-70" width="25" height="120" />
<rect x="-35" y="-40" width="15" height="80" />
<rect x="-15" y="-60" width="20" height="100" />
<rect x="5" y="-55" width="18" height="90" />
<rect x="25" y="-65" width="22" height="110" />
<rect x="50" y="-45" width="15" height="80" />
<rect x="70" y="-70" width="20" height="120" />
<rect x="95" y="-50" width="18" height="100" />
<rect x="115" y="-60" width="22" height="110" />
</g>
<!-- Right Wing as Skyscrapers -->
<g id="rightWing" fill="url(#wingGradientRight)">
<rect x="30" y="-50" width="20" height="100" />
<rect x="50" y="-70" width="25" height="120" />
<rect x="75" y="-40" width="15" height="80" />
<rect x="95" y="-60" width="20" height="100" />
<rect x="115" y="-55" width="18" height="90" />
<rect x="135" y="-65" width="22" height="110" />
<rect x="160" y="-45" width="15" height="80" />
<rect x="180" y="-70" width="20" height="120" />
<rect x="205" y="-50" width="18" height="100" />
<rect x="225" y="-60" width="22" height="110" />
</g>
<!-- Windows -->
<g fill="url(#windowPattern)" opacity="0.7">
<!-- Left Wing Windows -->
<g id="windowsLeft">
<use href="#leftWing"/>
</g>
<!-- Right Wing Windows -->
<g id="windowsRight">
<use href="#rightWing"/>
</g>
</g>
<!-- Butterfly Body -->
<rect x="-5" y="-100" width="10" height="200" fill="#555"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#fe4a4a; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00; stop-opacity:1" />
</linearGradient>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#2b4dff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#3c58ff; stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sunsetGradient)" />
<g transform="translate(150,150) scale(1.1)">
<path d="M-60,-60 Q-70,-30 -60,0 Q-80,30 -60,60 Q-30,90 0,60 Q30,90 60,60 Q80,30 60,0 Q70,-30 60,-60 Z" fill="none" stroke="black" stroke-width="1" />
<g fill="url(#buildingGradient)">
<rect x="-52" y="-56" width="18" height="56" />
<rect x="-34" y="-50" width="12" height="50" />
<rect x="-12" y="-30" width="24" height="30" />
<rect x="10" y="-45" width="15" height="45" />
<rect x="32" y="-70" width="15" height="70" />
</g>
<g transform="scale(-1, 1)">
<g fill="url(#buildingGradient)">
<rect x="-52" y="-56" width="18" height="56" />
<rect x="-34" y="-50" width="12" height="50" />
<rect x="-12" y="-30" width="24" height="30" />
<rect x="10" y="-45" width="15" height="45" />
<rect x="32" y="-70" width="15" height="70" />
</g>
</g>
</g>
<g opacity="0.4">
<circle cx="50" cy="50" r="40" fill="rgba(255, 255, 255, 0.5)" />
<circle cx="250" cy="250" r="40" fill="rgba(255, 255, 255, 0.5)" />
</g>
<text x="150" y="280" font-family="Verdana" font-size="18" fill="white" text-anchor="middle">Butterfly Metropolis</text>
</svg>
Judge's Analysis
Player 2's submission creatively integrates city skyscrapers into the form of butterfly wings, with clear outlines and a bold color scheme that enhances visual appeal.
The title 'Butterfly Metropolis' adds conceptual depth, aligning well with the prompt.
While Player 1's image has a harmonious gradient and abstract style, it lacks the explicit incorporation of butterfly characteristics, making Player 2's interpretation more compelling.
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
"Glowing jellyfish dancing above a futuristic skyline"
"Astronaut cat floating with rainbow fish in space"
"Melting clock draped over a tree branch"
"Melting clock overgrown with ivy on a floating island"
"Astronaut watering flowers on the moon, Earth rising behind"
"Octopus juggling flaming swords under a disco ball"