Creative Challenge
"A cactus playing a saxophone under a spotlight in the desert night"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert night background -->
<rect x="0" y="0" width="300" height="300" fill="#001f3f" />
<!-- Moon -->
<circle cx="240" cy="60" r="40" fill="#f1c40f" />
<!-- Stars -->
<circle cx="50" cy="80" r="2" fill="#fff" />
<circle cx="120" cy="40" r="2" fill="#fff" />
<circle cx="200" cy="90" r="2" fill="#fff" />
<circle cx="260" cy="120" r="2" fill="#fff" />
<!-- Spotlight -->
<circle cx="150" cy="250" r="100" fill="#f9e79f" />
<!-- Desert floor -->
<rect x="0" y="200" width="300" height="100" fill="#7f8c8d" />
<!-- Cactus body -->
<ellipse cx="150" cy="180" rx="20" ry="30" fill="#196f3d" />
<!-- Cactus arms -->
<path d="M140,140 Q160,130 160,160 Q150,150 140,160 Z" fill="#196f3d" />
<path d="M160,130 Q180,120 180,150 Q170,140 160,150 Z" fill="#196f3d" />
<!-- Saxophone body -->
<path d="M110,180 L95,160 L95,100 Q110,80 130,100 L130,160 Z" fill="#e74c3c" />
<!-- Saxophone keys -->
<circle cx="105" cy="110" r="5" fill="#bdc3c7" />
<circle cx="115" cy="110" r="5" fill="#bdc3c7" />
<circle cx="120" cy="140" r="5" fill="#bdc3c7" />
<circle cx="120" cy="120" r="5" fill="#bdc3c7" />
<!-- Saxophone bell -->
<path d="M130,160 Q140,170 130,180 Q125,180 120,160 Q130,160 130,180 Z" fill="#e74c3c" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Desert Night Background Gradient -->
<linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0d0b3e"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<!-- Spotlight Gradient -->
<radialGradient id="spotlightGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="rgba(255,255,153,0.8)"/>
<stop offset="70%" stop-color="rgba(255,255,153,0.3)"/>
<stop offset="100%" stop-color="rgba(255,255,153,0)"/>
</radialGradient>
<!-- Cactus Green Gradient -->
<linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#7fdc6a"/>
<stop offset="100%" stop-color="#409f3a"/>
</linearGradient>
<!-- Saxophone Brass Gradient -->
<linearGradient id="saxGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#f6d365"/>
<stop offset="100%" stop-color="#fda085"/>
</linearGradient>
<!-- Star Effect Gradient -->
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white"/>
<stop offset="100%" stop-color="rgba(255,255,255,0)"/>
</radialGradient>
</defs>
<!-- Background Sky -->
<rect width="300" height="300" fill="url(#desertGradient)"/>
<!-- Desert Ground -->
<rect x="0" y="220" width="300" height="80" fill="#a87f5a"/>
<!-- Stars in the Sky -->
<g id="stars">
<circle cx="40" cy="30" r="1.2" fill="white"/>
<circle cx="80" cy="50" r="0.8" fill="white"/>
<circle cx="130" cy="20" r="1" fill="white"/>
<circle cx="170" cy="40" r="1.5" fill="white"/>
<circle cx="210" cy="15" r="0.8" fill="white"/>
<circle cx="260" cy="45" r="1.2" fill="white"/>
<circle cx="290" cy="25" r="1" fill="white"/>
</g>
<!-- Spotlight on the Cactus -->
<g id="spotlight">
<ellipse cx="150" cy="170" rx="90" ry="110" fill="url(#spotlightGradient)" transform="rotate(-10,150,170)" />
</g>
<!-- Cactus Playing Saxophone -->
<g id="cactus" transform="translate(140,210) rotate(-5)">
<!-- Main Cactus Body -->
<path d="M10 0
c0 -30 10 -60 20 -60
s20 30 20 60
v40
c0 30 -10 60 -20 60
s-20 -30 -20 -60 Z" fill="url(#cactusGradient)"/>
<!-- Cactus Arm -->
<path d="M30 -10
c-8 -20 -18 -30 -5 -45
c10 -8 15 -8 20 0
c5 10 0 22 -5 32
c-5 10 -10 18 -10 13 Z" fill="url(#cactusGradient)"/>
<!-- Cactus Face -->
<circle cx="25" cy="15" r="2" fill="#333"/>
<circle cx="35" cy="15" r="2" fill="#333"/>
<path d="M25 22 q5 3 10 0" stroke="#333" fill="none" stroke-width="1"/>
</g>
<!-- Saxophone in Action -->
<g id="saxophone" transform="translate(170,220) rotate(30)">
<path d="M0 0
c20 -5 40 5 60 0
c5 2 10 5 10 10
c0 3 -2 6 -5 6
c-15 0 -30 0 -45 0
c-5 0 -10 -3 -10 -8
c0 -5 5 -10 10 -13 Z" fill="url(#saxGradient)" stroke="#d4af37" stroke-width="1"/>
<circle cx="60" cy="0" r="3" fill="#d4af37"/>
<path d="M20 0 l5 5" stroke="#c6902c" stroke-width="1"/>
</g>
<!-- Additional Desert Details -->
<g id="desertDetails">
<path d="M30 240 q5 -10 10 0 q5 10 10 0" stroke="#5a432d" stroke-width="2" fill="none"/>
<path d="M250 240 q5 -10 10 0 q5 10 10 0" stroke="#5a432d" stroke-width="2" fill="none"/>
</g>
</svg>
Judge's Analysis
Player 2's image more effectively captures the prompt by clearly depicting a cactus playing a saxophone under a spotlight, with a strong emphasis on the desert night setting through the use of gradient and starry sky.
The spotlight effect and the saxophone are more visually distinct, enhancing the overall appeal and adherence to the theme.
Player 1's image, while creative, lacks clarity in illustrating the cactus and saxophone concept and does not convey the nighttime atmosphere as effectively.
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 giraffe wearing a diving helmet under the ocean"
"Levitating teapot pouring into a floating upside-down cup"
"Bioluminescent jellyfish floating through a starry night sky"
"Octopus juggling planets under the sea"
"Van Gogh's Starry Night with flying fish replacing stars"
"A snail wearing a tiny suit, carrying a briefcase, rushing past skyscrapers"