Creative Challenge
"A cactus wearing sunglasses in the desert moonlight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cactusGradient">
<stop offset="0%" stop-color="#75B871"/>
<stop offset="100%" stop-color="#4D7641"/>
</linearGradient>
<linearGradient id="sunglassesFrame">
<stop offset="0%" stop-color="#CD7F32"/>
<stop offset="100%" stop-color="#8B4513"/>
</linearGradient>
<linearGradient id="lensGradient">
<stop offset="0%" stop-color="#66B3FF"/>
<stop offset="100%" stop-color="#1E90FF"/>
</linearGradient>
<radialGradient id="moonGlow">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="transparent"/>
</radialGradient>
</defs>
<rect width="300" height="300" fill="linear-gradient(45deg, #1A1A1A, #4B4B4B)"/>
<g transform="translate(150,150)">
<!-- Cactus Body -->
<rect x="-40" y="-100" width="80" height="100" rx="10" fill="url(#cactusGradient)"/>
<!-- Cactus Arms -->
<rect x="-65" y="-50" width="30" height="60" rx="10" fill="url(#cactusGradient)"/>
<rect x="35" y="-50" width="30" height="60" rx="10" fill="url(#cactusGradient)"/>
<!-- Sunglasses -->
<rect x="-50" y="-40" width="100" height="20" rx="10" fill="url(#sunglassesFrame)"/>
<rect x="-45" y="-35" width="90" height="10" rx="5" fill="url(#lensGradient)"/>
<!-- Moon -->
<circle cx="-100" cy="-120" r="20" fill="url(#moonGlow)"/>
<circle cx="-100" cy="-120" r="15" fill="#FFFFFF"/>
<!-- Stars -->
<circle cx="-80" cy="-80" r="1" fill="#FFFFFF"/>
<circle cx="-120" cy="-60" r="1" fill="#FFFFFF"/>
<circle cx="-40" cy="-100" r="1" fill="#FFFFFF"/>
<!-- Glowing Effects -->
<circle cx="0" cy="-20" r="30" fill="url(#moonGlow)" opacity="0.5"/>
<circle cx="-50" cy="-40" r="15" fill="url(#moonGlow)" opacity="0.5"/>
<circle cx="50" cy="-40" r="15" fill="url(#moonGlow)" opacity="0.5"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert night background -->
<rect width="300" height="300" fill="url(#nightGradient)" />
<!-- Moon -->
<defs>
<linearGradient id="moonGlow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0"/>
</linearGradient>
</defs>
<path d="M 50,50 L 80,40 Q 100,30 120,40 L 170,50 Q 200,60 180,80 L 120,130 Q 100,140 80,130 L 50,120 Q 30,110 40,90 Z" fill="#fff" />
<circle cx="120" cy="80" r="20" fill="none" stroke="#fff" stroke-width="2" />
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<circle cx="120" cy="80" r="25" fill="url(#moonGlow)" filter="url(#glow)" />
<!-- Cactus body -->
<rect x="130" y="150" width="40" height="80" rx="20" fill="url(#cactusGradient)" />
<defs>
<linearGradient id="cactusGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#3a5b37" />
<stop offset="100%" stop-color="#1a3a1a" />
</linearGradient>
</defs>
<!-- Cactus arms -->
<ellipse cx="150" y="160" rx="20" ry="10" fill="url(#cactusGradient)" />
<ellipse cx="150" y="180" rx="20" ry="10" fill="url(#cactusGradient)" />
<!-- Sunglasses -->
<ellipse cx="140" cy="170" rx="15" ry="8" fill="none" stroke="#000" stroke-width="2" />
<ellipse cx="160" cy="170" rx="15" ry="8" fill="none" stroke="#000" stroke-width="2" />
<path d="M 130,170 L 140,165 L 150,170 L 160,165 L 170,170" fill="#000" />
<path d="M 140,175 Q 150,170 160,175" fill="#000" />
<rect x="135" y="165" width="30" height="10" fill="#000" rx="5" />
<!-- Ground -->
<line x1="0" y1="250" x2="300" y2="250" stroke="#654321" stroke-width="4" />
<!-- Stars -->
<g fill="#fff" opacity="0.6">
<circle cx="50" cy="50" r="1" />
<circle cx="80" cy="30" r="1" />
<circle cx="100" cy="70" r="1" />
<circle cx="200" cy="40" r="1" />
<circle cx="220" cy="90" r="1" />
<circle cx="250" cy="60" r="1" />
</g>
<!-- Desert rocks -->
<g fill="#654321" opacity="0.8">
<circle cx="20" cy="220" r="10" />
<circle cx="280" cy="240" r="8" />
<circle cx="180" cy="260" r="12" />
</g>
<!-- Cactus details -->
<g fill="#3a5b37">
<circle cx="145" cy="160" r="2" />
<circle cx="155" cy="165" r="2" />
<circle cx="150" cy="170" r="2" />
<circle cx="165" cy="175" r="2" />
</g>
</svg>
Judge's Analysis
Player 2's image better captures the idea of a cactus wearing sunglasses in the desert moonlight.
The inclusion of moonlight and desert elements enhances the scene, providing a stronger adherence to the prompt.
Player 1's image, while technically clean, lacks context and detail, making Player 2's more visually appealing and creative 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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"