Creative Challenge
"Cactus wearing a top hat in a desert sunset"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient for Sunset -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #ff7e5f; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #c761a4; stop-opacity: 1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Cactus Body -->
<defs>
<linearGradient id="cactusGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #8b9467; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #485540; stop-opacity: 1" />
</linearGradient>
</defs>
<path d="M150,250 Q160,230 170,250 Q180,270 190,250 Q200,230 210,250 Q220,270 230,250 Q240,230 250,250 Q260,270 270,250 Q280,230 290,250 Q300,270 300,250 L300,300 L0,300 L0,250 Q-10,270 10,250 Q20,230 30,250 Q40,270 50,250 Q60,230 70,250 Q80,270 90,250 Q100,230 110,250 Q120,270 130,250 Q140,230 150,250 Z" fill="url(#cactusGradient)" />
<!-- Top Hat -->
<defs>
<linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #000000; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #444444; stop-opacity: 1" />
</linearGradient>
</defs>
<rect x="130" y="120" width="40" height="40" fill="url(#hatGradient)" />
<rect x="120" y="160" width="60" height="20" fill="url(#hatGradient)" />
<rect x="125" y="180" width="50" height="10" fill="url(#hatGradient)" />
<!-- Desert Floor -->
<defs>
<linearGradient id="groundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #f2a36e; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #d9845a; stop-opacity: 1" />
</linearGradient>
</defs>
<rect width="300" height="100" y="200" fill="url(#groundGradient)" />
<!-- Stars -->
<circle cx="50" cy="50" r="3" fill="#ffffff" />
<circle cx="100" cy="75" r="3" fill="#ffffff" />
<circle cx="150" cy="100" r="3" fill="#ffffff" />
<circle cx="200" cy="125" r="3" fill="#ffffff" />
<circle cx="250" cy="150" r="3" fill="#ffffff" />
<!-- Sun -->
<circle cx="200" cy="50" r="30" fill="#ffcc00" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="sunset" cx="150" cy="350" r="250" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#FF5733"/>
<stop offset="50%" stop-color="#FFC300"/>
<stop offset="100%" stop-color="#DAF7A6"/>
</radialGradient>
<rect width="300" height="300" fill="url(#sunset)"/>
<path d="M100 150c0-40 50-70 110-70s110 30 110 70v100H100V150z" fill="#228B22"/>
<ellipse cx="150" cy="120" rx="30" ry="20" fill="#006400"/>
<path d="M120 80c0-20 40-35 90-35s90 15 90 35v20H120V80z" fill="#191970"/>
<rect x="110" y="60" width="80" height="20" fill="#36454F"/>
<ellipse cx="180" cy="130" rx="5" ry="8" fill="black"/>
<ellipse cx="160" cy="135" rx="5" ry="8" fill="black"/>
<path d="M130 200c0-15 15-25 30-25 15 0 30 10 30 25v10H130V200z" fill="#008000"/>
<path d="M180 200c0-15 15-25 30-25 15 0 30 10 30 25v10H180V200z" fill="#008000"/>
<path d="M110 260c10-5 25-10 40-10s30 5 40 10v15H110V260z" fill="#8B4513"/>
<path d="M80 275c0-5 5-10 10-10s10 5 10 10v10H80V275z" fill="#A0522D"/>
<path d="M220 275c0-5 5-10 10-10s10 5 10 10v10H220V275z" fill="#A0522D"/>
</svg>
Judge's Analysis
Player 1's image closely adheres to the prompt with a clear depiction of a cactus-like shape wearing a top hat against a desert sunset background.
The composition provides a sense of simplicity and clarity.
Player 2's image, while colorful, lacks clarity in representing a cactus and a top hat, making it less aligned with the prompt.
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 penguin in a space suit on a bright orange surfboard riding a cosmic wave"
"A dragon wearing a tutu, balancing on a giant floating bubble"
"Dancing cactus wearing sunglasses in a desert"
"Octopus and cat play chess on a floating iceberg"
"Whale in a teacup, spouting steam"
"Melting clock made of cheese on a desert cactus"