Creative Challenge
"Floating city of balloons over a giant sunflower field, in vibrant pop art style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient definitions -->
<defs>
<linearGradient id="balloonGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#FFC67D" />
</linearGradient>
<linearGradient id="sunflowerGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#F2C464" />
<stop offset="100%" stop-color="#F7DC6F" />
</linearGradient>
<pattern id="polkaDots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#FFFFFF" />
</pattern>
</defs>
<!-- Sunflower field -->
<rect x="0" y="150" width="300" height="150" fill="url(#sunflowerGradient)" />
<g transform="translate(0, 150)">
<g transform="scale(0.5)">
<circle cx="50" cy="50" r="30" fill="#F2C464" />
<circle cx="120" cy="50" r="30" fill="#F2C464" />
<circle cx="190" cy="50" r="30" fill="#F2C464" />
<circle cx="260" cy="50" r="30" fill="#F2C464" />
</g>
<g transform="scale(0.7) translate(0, 30)">
<circle cx="30" cy="30" r="20" fill="#F7DC6F" />
<circle cx="100" cy="30" r="20" fill="#F7DC6F" />
<circle cx="170" cy="30" r="20" fill="#F7DC6F" />
<circle cx="240" cy="30" r="20" fill="#F7DC6F" />
</g>
</g>
<!-- Balloons -->
<g transform="translate(0, -50)">
<g transform="scale(0.8)">
<ellipse cx="50" cy="50" rx="30" ry="40" fill="url(#balloonGradient)" />
<ellipse cx="120" cy="50" rx="30" ry="40" fill="url(#balloonGradient)" />
<ellipse cx="190" cy="50" rx="30" ry="40" fill="url(#balloonGradient)" />
<ellipse cx="260" cy="50" rx="30" ry="40" fill="url(#balloonGradient)" />
</g>
<g transform="scale(0.6) translate(0, -20)">
<ellipse cx="30" cy="30" rx="20" ry="30" fill="#FFC67D" />
<ellipse cx="100" cy="30" rx="20" ry="30" fill="#FFC67D" />
<ellipse cx="170" cy="30" rx="20" ry="30" fill="#FFC67D" />
<ellipse cx="240" cy="30" rx="20" ry="30" fill="#FFC67D" />
</g>
</g>
<!-- Floating city -->
<g transform="translate(100, -120)">
<rect x="-50" y="-20" width="100" height="40" fill="#FFFFFF" rx="10" />
<rect x="-30" y="-50" width="60" height="30" fill="#FFFFFF" rx="5" />
<circle cx="0" cy="0" r="20" fill="#FFFFFF" />
<g transform="translate(0, 10)">
<rect x="-40" y="0" width="20" height="20" fill="#FFFFFF" rx="5" />
<rect x="20" y="0" width="20" height="20" fill="#FFFFFF" rx="5" />
</g>
</g>
<!-- Polka dots -->
<rect x="0" y="0" width="300" height="300" fill="url(#polkaDots)" opacity="0.2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="balloonGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="50%" stop-color="#FFA500"/>
<stop offset="100%" stop-color="#FF8C00"/>
</radialGradient>
<pattern id="sunflowerPetals" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M10 0 L20 10 L10 20 L0 10 Z" fill="#FFDA61"/>
</pattern>
</defs>
<rect width="300" height="150" fill="#32CD32"/>
<g transform="translate(50,10)">
<circle cx="30" cy="30" r="20" fill="url(#balloonGradient)"/>
<polygon points="30,50 20,70 40,70" fill="#FF6347"/>
<rect x="25" y="70" width="10" height="10" fill="#8B4513"/>
</g>
<g transform="translate(120,30)">
<circle cx="40" cy="20" r="30" fill="url(#balloonGradient)"/>
<polygon points="40,50 25,80 55,80" fill="#9370DB"/>
<rect x="35" y="80" width="10" height="15" fill="#8B4513"/>
<circle cx="50" cy="15" r="5" fill="white"/>
</g>
<g transform="translate(200,5)">
<ellipse cx="30" cy="40" rx="25" ry="35" fill="url(#balloonGradient)"/>
<polygon points="30,75 10,100 50,100" fill="#FF69B4"/>
</g>
<circle cx="50" cy="200" r="40" fill="url(#sunflowerPetals)"/>
<circle cx="50" cy="200" r="20" fill="#8B4513"/>
<circle cx="150" cy="180" r="50" fill="url(#sunflowerPetals)"/>
<circle cx="150" cy="180" r="25" fill="#8B4513"/>
<circle cx="250" cy="220" r="30" fill="url(#sunflowerPetals)"/>
<circle cx="250" cy="220" r="15" fill="#8B4513"/>
<circle cx="80" cy="260" r="20" fill="url(#sunflowerPetals)"/>
<circle cx="80" cy="260" r="10" fill="#8B4513"/>
<circle cx="200" cy="270" r="10" fill="url(#sunflowerPetals)"/>
<circle cx="200" cy="270" r="5" fill="#8B4513"/>
<path d="M0 150 C 50 120, 100 160, 150 150 S 250 180, 300 150" fill="#228B22"/>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by clearly depicting both a floating city of balloons and a field of sunflowers in a vibrant and colorful pop art style.
The composition is more dynamic and visually appealing, with distinct elements that evoke the theme.
Player 1's image lacks clarity and doesn't strongly convey the concept of a floating city or sunflower field.
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
"A giraffe wearing roller skates juggling flaming torches"
"Bear in a business suit, balancing on a unicycle, holding an umbrella"
"Octopus juggling planets under a disco ball in deep space"
"Surreal clock melting over a cactus in desert, vibrant colors, geometric style"
"A flamingo in a spacesuit playing the electric guitar on the moon"
"Cactus in a fishbowl with a tiny sailboat floating between its spines"