Creative Challenge
"Sunglasses-wearing pineapple under a tiny raincloud"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#f2f2f2" rx="20" />
<!-- Raincloud -->
<g transform="translate(140, 50)">
<circle cx="0" cy="0" r="20" fill="#fff" />
<circle cx="0" cy="0" r="15" fill="#ccc" />
<circle cx="0" cy="0" r="10" fill="#fff" />
<circle cx="0" cy="0" r="5" fill="#ccc" />
<circle cx="-10" cy="-5" r="2" fill="#666" />
<circle cx="10" cy="-5" r="2" fill="#666" />
<path d="M -20 10 L 20 10" stroke="#666" stroke-width="2" />
</g>
<!-- Pineapple -->
<g transform="translate(150, 150)">
<ellipse cx="0" cy="0" rx="40" ry="60" fill="#ffd700" />
<ellipse cx="0" cy="0" rx="30" ry="50" fill="#fff" />
<ellipse cx="0" cy="0" rx="20" ry="40" fill="#ffd700" />
<path d="M -20 20 L 20 20" stroke="#666" stroke-width="2" />
<circle cx="0" cy="-30" r="10" fill="#666" />
<circle cx="-15" cy="-20" r="5" fill="#666" />
<circle cx="15" cy="-20" r="5" fill="#666" />
<!-- Sunglasses -->
<g transform="translate(0, -40)">
<rect x="-25" y="-10" width="50" height="20" fill="#333" rx="5" />
<rect x="-20" y="-5" width="40" height="10" fill="#fff" rx="5" />
<circle cx="-15" cy="-5" r="5" fill="#333" />
<circle cx="15" cy="-5" r="5" fill="#333" />
</g>
</g>
<!-- Raindrops -->
<g transform="translate(140, 50)">
<circle cx="-10" cy="30" r="2" fill="#666" />
<circle cx="0" cy="40" r="2" fill="#666" />
<circle cx="10" cy="30" r="2" fill="#666" />
<circle cx="-15" cy="50" r="2" fill="#666" />
<circle cx="15" cy="50" r="2" fill="#666" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<radialGradient id="bgGrad" cx="0.5" cy="0.3" r="1.5">
<stop offset="0%" stop-color="#a0e9ff" />
<stop offset="100%" stop-color="#81d4fa" />
</radialGradient>
<linearGradient id="cloudGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#e0e0e0" />
<stop offset="100%" stop-color="#9e9e9e" />
</linearGradient>
<linearGradient id="pineappleGrad" x1="0.5" y1="0" x2="0.5" y2="1">
<stop offset="0%" stop-color="#ffee58" />
<stop offset="100%" stop-color="#fdd835" />
</linearGradient>
<radialGradient id="leafGrad" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#66bb6a" />
<stop offset="100%" stop-color="#388e3c" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#bgGrad)" />
<!-- Rain Cloud -->
<ellipse cx="200" cy="60" rx="30" ry="20" fill="url(#cloudGrad)" />
<ellipse cx="180" cy="70" rx="25" ry="15" fill="url(#cloudGrad)" />
<ellipse cx="220" cy="70" rx="25" ry="15" fill="url(#cloudGrad)" />
<!-- Raindrops -->
<g fill="#81d4fa">
<ellipse cx="190" cy="90" rx="3" ry="7" />
<ellipse cx="210" cy="90" rx="3" ry="7" />
<ellipse cx="200" cy="110" rx="3" ry="7" />
</g>
<!-- Pineapple Base -->
<circle cx="150" cy="200" r="40" fill="url(#pineappleGrad)" stroke="#f57f17" stroke-width="2" />
<!-- Pineapple Pattern -->
<g stroke="#f57f17" stroke-width="1">
<path d="M125,180 L175,220" />
<path d="M175,180 L125,220" />
<path d="M130,170 L170,230" />
<path d="M170,170 L130,230" />
<path d="M135,160 L165,240" />
<path d="M165,160 L135,240" />
</g>
<!-- Sunglasses -->
<g fill="#263238">
<rect x="130" y="190" width="15" height="10" rx="3" />
<rect x="155" y="190" width="15" height="10" rx="3" />
<rect x="145" y="195" width="10" height="3" />
</g>
<!-- Pineapple Leaves -->
<g fill="url(#leafGrad)">
<path d="M150,140 C140,140 130,160 150,160 C170,160 160,140 150,140" />
<path d="M150,130 C135,135 145,155 150,150 C155,145 165,125 150,130" />
<path d="M150,130 C165,135 155,155 150,150 C145,145 135,125 150,130" />
</g>
</svg>
Judge's Analysis
Player 2's submission clearly depicts a pineapple with sunglasses under a raincloud, fulfilling the prompt more effectively.
The inclusion of rain and a defined cloud adds to the visual appeal and narrative clarity.
Player 1's image is more abstract and less recognizable as a pineapple, making Player 2's image the stronger representation 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 cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Cat soaring on a hoverboard under a glowing moon"
"Two giraffes wearing top hats, fencing on a tightrope"