Creative Challenge
"A snail wearing a wizard hat casting a spell with a glowing wand"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="shellGradient" cx="0.5" cy="0.5" r="0.5" fx="0.3" fy="0.3">
<stop offset="0%" stop-color="#fc6" />
<stop offset="100%" stop-color="#c95" />
</radialGradient>
<radialGradient id="glowGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#fff" stop-opacity="1" />
<stop offset="100%" stop-color="#ffea00" stop-opacity="0" />
</radialGradient>
</defs>
<!-- Snail Shell -->
<g transform="translate(100,170)">
<path d="M0,0 C-30,-20,-60,10,-40,30 C-20,50,10,20,0,0 Z" fill="url(#shellGradient)" />
</g>
<!-- Snail Body -->
<g transform="translate(120,190)">
<path d="M0,0 Q-15,-20,-30,-10 T-60,0 Q-70,20,-60,40 T-30,70 Q-10,100,10,70 T20,40 Q30,20,20,0 T0,0 Z" fill="#8c5" />
</g>
<!-- Wizard Hat -->
<g transform="translate(90, 130)">
<path d="M0,0 Q15,-20,30,-10 T50,0 Q40,10,30,20 T0,0 Z" fill="#334" />
<circle cx="25" cy="0" r="5" fill="white" />
<circle cx="17" cy="-7" r="3" fill="white" />
<circle cx="33" cy="-7" r="3" fill="white" />
</g>
<!-- Snail Eye Stalks -->
<g transform="translate(100,180)">
<rect x="0" y="-20" width="7" height="20" rx="3" ry="3" fill="#8c5" />
<circle cx="3.5" cy="-20" r="3.5" fill="#333" />
</g>
<g transform="translate(115,185)">
<rect x="0" y="-20" width="7" height="20" rx="3" ry="3" fill="#8c5" />
<circle cx="3.5" cy="-20" r="3.5" fill="#333" />
</g>
<!-- Magic Wand -->
<g transform="translate(210,145)">
<rect x="0" y="0" width="10" height="70" rx="5" ry="5" fill="#b98" />
<circle cx="5" cy="-5" r="10" fill="url(#glowGradient)" />
<circle cx="5" cy="-5" r="5" fill="#ffea00" />
</g>
<!-- Spell Swirls -->
<g transform="translate(220,30)">
<path d="M0,0 Q5,10,15,5 T30,0 Q35,-5,40,0 T60,10 Q70,20,90,15" fill="none" stroke="#ffea00" stroke-width="2" />
<circle cx="90" cy="15" r="3" fill="white" />
</g>
<!-- Additional Magic Sparkles -->
<circle cx="230" cy="80" r="2" fill="white" />
<circle cx="240" cy="90" r="2" fill="white" />
<circle cx="250" cy="100" r="2" fill="white" />
<circle cx="240" cy="120" r="2" fill="white" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="shellGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FFA500" />
</linearGradient>
<linearGradient id="hatGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#6495ED" />
<stop offset="100%" stop-color="#1E90FF" />
</linearGradient>
<linearGradient id="glowGradient" x1="0" y1="0" x2="1" 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>
<path d="M150 100 Q180 70 210 100 T270 100 Q240 70 210 100 T150 100" fill="url(#shellGradient)" />
<circle cx="150" cy="140" r="20" fill="#8B4513" />
<circle cx="150" cy="140" r="10" fill="#FFFFFF" />
<rect x="120" y="100" width="60" height="40" rx="20" fill="url(#hatGradient)" />
<path d="M140 140 Q130 120 120 140 T100 140" fill="url(#hatGradient)" />
<path d="M180 140 Q190 120 200 140 T220 140" fill="url(#hatGradient)" />
<path d="M140 140 Q130 160 120 140 T100 140" fill="url(#hatGradient)" />
<path d="M180 140 Q190 160 200 140 T220 140" fill="url(#hatGradient)" />
<path d="M150 180 Q130 160 150 140 T170 140" stroke="#8B4513" stroke-width="4" fill="none" />
<circle cx="150" cy="200" r="10" fill="url(#glowGradient)" />
<line x1="150" y1="190" x2="150" y2="250" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" />
<circle cx="150" cy="250" r="5" fill="#FFD700" />
<circle cx="150" cy="250" r="10" fill="url(#glowGradient)" />
</svg>
Judge's Analysis
Player 2's submission demonstrates more creativity and technical quality, particularly with the dynamic use of colors and the glowing effect of the wand.
The composition is more visually appealing and adheres better to the prompt with a clearer depiction of a snail wearing a wizard hat and casting a spell.
Player 1's image is simpler and less detailed in comparison.
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 moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"