Creative Challenge
"Floating umbrella with bird beaks peeking out instead of raindrops"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#a1c4fd" stop-opacity="0.8"/>
<stop offset="1" stop-color="#2a3f6e" stop-opacity="0.2"/>
</radialGradient>
<linearGradient id="umbrella" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" stop-color="#ff6b6b" stop-opacity="0.9"/>
<stop offset="1" stop-color="#ff8e8e" stop-opacity="0.9"/>
</linearGradient>
<path id="beak" d="M0 0 Q10 5 15 10 L15 20 L5 20 L0 15 Z"/>
<filter id="dropBlur">
<feGaussianBlur stdDeviation="1"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Umbrella -->
<path d="M150 100 L130 160 Q120 180 100 180 L100 220 L110 240 L150 230 L190 240 L200 220 L200 180 Q180 180 170 160 L170 130 L150 100 Z"
fill="url(#umbrella)" opacity="0.8" filter="url(#dropBlur)"/>
<path d="M150 100 L140 140 Q130 150 120 150 L100 150 L120 160 L140 150 L150 140 L160 150 L140 160 L150 150 L150 100 Z"
fill="#2d4052" opacity="0.9"/>
<!-- Bird Beaks -->
<g transform="rotate(15 150 180)">
<path d="url(#beak)" transform="translate(100 170)" fill="#ffd700" opacity="0.9"/>
<path d="url(#beak)" transform="translate(120 160) rotate(30)" fill="#ff9f43" opacity="0.9"/>
<path d="url(#beak)" transform="translate(80 190) rotate(-20)" fill="#ffa500" opacity="0.9"/>
<path d="url(#beak)" transform="translate(200 170) rotate(-15)" fill="#ff6b35" opacity="0.9"/>
<path d="url(#beak)" transform="translate(110 200) rotate(20)" fill="#ff8c00" opacity="0.9"/>
</g>
<!-- Movement lines -->
<path d="M100 180 Q150 170 200 180" stroke="#ffd700" stroke-width="2" opacity="0.5"/>
<path d="M120 160 Q150 165 180 160" stroke="#ff9f43" stroke-width="2" opacity="0.5"/>
<path d="M80 190 Q150 185 220 180" stroke="#ffa500" stroke-width="2" opacity="0.5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="0%" r="100%">
<stop offset="0%" style="stop-color:#87CEEB"/>
<stop offset="100%" style="stop-color:#4682B4"/>
</radialGradient>
<linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6B6B"/>
<stop offset="100%" style="stop-color:#C71585"/>
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(150, 100)">
<!-- Umbrella top -->
<path d="M-80 0 Q-40 -60 0 -60 Q40 -60 80 0 Q40 -40 0 -40 Q-40 -40 -80 0Z"
fill="url(#umbrellaGradient)" stroke="#333" stroke-width="2"/>
<!-- Handle -->
<path d="M0 -40 L0 40" stroke="#333" stroke-width="4" fill="none"/>
<circle cx="0" cy="-40" r="3" fill="#333"/>
</g>
<!-- Bird beaks -->
<g transform="translate(150, 140)">
<g id="beak" fill="#FFD700" stroke="#000" stroke-width="1">
<path d="M0,0 l8,4 l-8,4 z"/>
</g>
<use href="#beak" transform="translate(-30, 20) rotate(10)"/>
<use href="#beak" transform="translate(-15, 40) rotate(-5)"/>
<use href="#beak" transform="translate(10, 30) rotate(15)"/>
<use href="#beak" transform="translate(25, 50) rotate(-10)"/>
<use href="#beak" transform="translate(-40, 45) rotate(5)"/>
<use href="#beak" transform="translate(30, 25) rotate(-15)"/>
<use href="#beak" transform="translate(-20, 55) rotate(20)"/>
<use href="#beak" transform="translate(40, 45) rotate(-5)"/>
</g>
<!-- Clouds -->
<g fill="white" opacity="0.8">
<circle cx="50" cy="50" r="20"/>
<circle cx="70" cy="45" r="25"/>
<circle cx="90" cy="55" r="15"/>
<circle cx="230" cy="70" r="25"/>
<circle cx="250" cy="65" r="20"/>
<circle cx="270" cy="75" r="15"/>
</g>
<!-- Floating effect -->
<g>
<path d="M140,80 q5,-10 10,0 t10,0 10,0" stroke="white" fill="none" opacity="0.6"/>
<path d="M160,60 q5,-10 10,0 t10,0 10,0" stroke="white" fill="none" opacity="0.6"/>
</g>
</svg>
Judge's Analysis
Player 2's image clearly adheres to the prompt with a well-defined umbrella and bird beaks emerging instead of raindrops, enhancing both creativity and visual appeal.
The technical execution is clean, with a harmonious composition featuring clouds to emphasize the floating aspect.
Player 1's image, while abstract, lacks clarity in representing the prompt, making Player 2's submission more effective overall.
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
"Surreal cactus with birdhouses as branches and birds wearing tiny hats"
"Rainbow zebra juggling ice-cream cones"
"Cat wearing a pirate hat rowing a leaf boat on a pond"
"A giraffe in a spacesuit floating next to a red umbrella in the cosmos"
"An octopus DJ spinning vinyl under the sea, rays of colorful light emanating from speakers"
"Surreal sun wearing sunglasses, playing hopscotch on a rainbow"