Creative Challenge
"Singing ice cream cone on a stage with spotlights"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#2e4053" rx="10" />
<!-- Stage -->
<rect x="50" y="150" width="200" height="100" fill="#945757" rx="10" />
<rect x="50" y="150" width="200" height="10" fill="#ffd700" rx="5" />
<!-- Spotlights -->
<ellipse cx="75" cy="75" rx="25" ry="50" fill="#ffd700" opacity="0.5" transform="rotate(45 75 75)" />
<ellipse cx="225" cy="75" rx="25" ry="50" fill="#ffd700" opacity="0.5" transform="rotate(-45 225 75)" />
<line x1="75" y1="125" x2="75" y2="150" stroke="#ffd700" stroke-width="5" />
<line x1="225" y1="125" x2="225" y2="150" stroke="#ffd700" stroke-width="5" />
<!-- Ice Cream Cone -->
<path d="M 150 200 L 170 250 L 130 250 Z" fill="#ffd7ff" />
<ellipse cx="150" cy="220" rx="20" ry="30" fill="#ffd7ff" />
<path d="M 170 250 L 150 280 L 130 250 Z" fill="#ffd7ff" />
<!-- Face -->
<circle cx="150" cy="200" r="10" fill="#945757" />
<circle cx="140" cy="190" r="5" fill="#2e4053" />
<circle cx="160" cy="190" r="5" fill="#2e4053" />
<path d="M 150 210 C 140 220, 160 220, 150 210" stroke="#2e4053" stroke-width="3" fill="none" />
<!-- Mouth and Song Notes -->
<path d="M 150 220 C 140 230, 160 230, 150 220" stroke="#2e4053" stroke-width="3" fill="none" />
<ellipse cx="120" cy="180" rx="10" ry="20" fill="#2e4053" opacity="0.5" />
<ellipse cx="180" cy="180" rx="10" ry="20" fill="#2e4053" opacity="0.5" />
<ellipse cx="150" cy="160" rx="10" ry="20" fill="#2e4053" opacity="0.5" />
<!-- Gradients and Shadows -->
<defs>
<linearGradient id="grad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ffd7ff" />
<stop offset="1" stop-color="#ffd700" />
</linearGradient>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="5" result="blur" />
<feOffset in="blur" dx="0" dy="10" result="offset" />
<feMerge>
<feMergeNode in="offset" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect x="50" y="150" width="200" height="100" fill="url(#grad)" rx="10" filter="url(#shadow)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Stage -->
<rect width="300" height="300" fill="black" />
<!-- Stage Floor -->
<rect y="220" width="300" height="80" fill="sienna" />
<!-- Spotlight beams -->
<defs>
<linearGradient id="beam" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="rgba(255, 255, 0, 0.8)" />
<stop offset="100%" stop-color="rgba(255, 255, 0, 0)" />
</linearGradient>
</defs>
<polygon points="120,0 150,150 90,150" fill="url(#beam)" opacity="0.8" />
<polygon points="180,0 150,150 210,150" fill="url(#beam)" opacity="0.8" />
<!-- Ice Cream Cone Body -->
<polygon points="130,180 170,180 150,230" fill="sandybrown" />
<circle cx="150" cy="150" r="40" fill="url(#iceCreamGradient)" />
<defs>
<radialGradient id="iceCreamGradient" cx="0.5" cy="0.5" r="0.8" fx="0.4" fy="0.4">
<stop offset="0%" stop-color="pink" />
<stop offset="100%" stop-color="orangered" />
</radialGradient>
</defs>
<!-- Face on Ice Cream -->
<circle cx="140" cy="140" r="5" fill="black" />
<circle cx="160" cy="140" r="5" fill="black" />
<path d="M140,160 Q150,170 160,160" stroke="black" stroke-width="2" fill="none" />
<!-- Microphone -->
<line x1="150" y1="150" x2="180" y2="190" stroke="gray" stroke-width="2"/>
<circle cx="180" cy="190" r="6" fill="dimgray" />
<!-- Stage Lights -->
<circle cx="60" cy="50" r="10" fill="gold" />
<circle cx="240" cy="50" r="10" fill="gold" />
<!-- Musical Notes -->
<path d="M80,100 C85,95 95,95 100,100 Q105,105 100,115" stroke="white" stroke-width="2" fill="none" />
<path d="M110,90 C115,85 125,85 130,90 Q135,95 130,105" stroke="white" stroke-width="2" fill="none" />
<path d="M90,120 C95,115 105,115 110,120 Q115,125 110,135" stroke="white" stroke-width="2" fill="none" />
</svg>
Judge's Analysis
Player 2's submission captures the theme more effectively with a clear depiction of an ice cream cone character singing on a stage, complete with a microphone and spotlights.
The use of color and composition is engaging and directly adheres to the prompt.
In contrast, Player 1's image lacks clear representation of the theme and is less visually descriptive.
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
"Two-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Uneven chessboard floating above a serene koi pond"
"Accordion-playing octopus serenades a starry seahorse"