Creative Challenge
"An umbrella growing roots like a tree in a cracked desert."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="umbrella-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff7f50; stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff6347; stop-opacity:1" />
</linearGradient>
<linearGradient id="root-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8c564b; stop-opacity:1" />
<stop offset="100%" style="stop-color:#3f3b31; stop-opacity:1" />
</linearGradient>
<pattern id="desert-pattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="#d2b48c" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#desert-pattern)" />
<path d="M150,50 Q110,20 90,50 Q110,40 150,50 Q190,40 210,50 Q190,20 150,50 Z" fill="url(#umbrella-gradient)" />
<path d="M150,70 L150,140 C140,160 120,180 150,180 C180,180 160,160 150,140 L150,70 Z" fill="#ffffff" />
<path d="M150,140 C130,170 90,210 150,250 C210,210 170,170 150,140 Z" fill="url(#root-gradient)" stroke="black" stroke-width="2" />
<path d="M110,220 C100,230 120,230 110,240 C100,250 127,240 120,230 C110,230 110,240 110,220 Z" fill="#8b4513" />
<path d="M190,220 C200,230 180,230 190,240 C200,250 173,240 180,230 C190,230 190,240 190,220 Z" fill="#8b4513" />
<text x="150" y="290" font-family="Arial" font-size="12" text-anchor="middle" fill="#fff">Resilience in Parched Lands</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFDD83"/>
<stop offset="50%" stop-color="#FF9E80"/>
<stop offset="100%" stop-color="#D9480F"/>
</linearGradient>
<radialGradient id="sunGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFF3B0" stop-opacity="1"/>
<stop offset="100%" stop-color="#F4A261" stop-opacity="0.8"/>
</radialGradient>
<radialGradient id="canopyGrad" cx="50%" cy="30%" r="60%">
<stop offset="0%" stop-color="#F72585"/>
<stop offset="70%" stop-color="#B5179E"/>
<stop offset="100%" stop-color="#7209B7"/>
</radialGradient>
</defs>
<!-- Background sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Sun -->
<circle cx="240" cy="60" r="30" fill="url(#sunGrad)"/>
<!-- Dune -->
<path d="M0,180 Q150,150 300,180 L300,300 L0,300 Z" fill="#e9c46a"/>
<!-- Cracks -->
<g stroke="#b07b4f" stroke-width="1">
<path d="M20,195 L40,215 L30,235 L50,255"/>
<path d="M60,200 L80,220 L70,240 L90,260"/>
<path d="M110,190 L130,210 L120,230 L140,250"/>
<path d="M160,205 L180,225 L170,245 L190,265"/>
<path d="M210,195 L230,215 L220,235 L240,255"/>
<path d="M260,200 L280,220 L270,240 L290,260"/>
<path d="M35,250 L55,230 L65,250 L75,230"/>
<path d="M125,260 L145,240 L155,260 L165,240"/>
<path d="M215,250 L235,230 L245,250 L255,230"/>
</g>
<!-- Umbrella trunk -->
<path d="M150,120 L150,200" stroke="#6d4c41" stroke-width="6" stroke-linecap="round"/>
<!-- Roots -->
<path d="M150,200 C140,230 130,260 100,290" stroke="#8d6e63" stroke-width="4" fill="none"/>
<path d="M150,200 C160,230 170,260 200,290" stroke="#8d6e63" stroke-width="4" fill="none"/>
<path d="M150,210 C135,235 120,270 90,285" stroke="#7b5e57" stroke-width="2" fill="none"/>
<path d="M150,210 C165,235 180,270 210,285" stroke="#7b5e57" stroke-width="2" fill="none"/>
<!-- Umbrella canopy -->
<path d="M80,120 A70,70 0 0,1 220,120 L150,120 Z" fill="url(#canopyGrad)" stroke="#6a0dad" stroke-width="2"/>
<!-- Canopy ribs -->
<g stroke="#6a0dad" stroke-width="1">
<line x1="150" y1="120" x2="80" y2="120"/>
<line x1="150" y1="120" x2="95" y2="60"/>
<line x1="150" y1="120" x2="120" y2="55"/>
<line x1="150" y1="120" x2="180" y2="55"/>
<line x1="150" y1="120" x2="205" y2="60"/>
<line x1="150" y1="120" x2="220" y2="120"/>
</g>
</svg>
Judge's Analysis
Player 2's image better adheres to the prompt, clearly depicting an umbrella with roots extending into a cracked desert environment.
The composition is visually appealing, with thoughtful use of color gradients and a defined sun adding warmth and depth.
In contrast, Player 1's image is more abstract and less effective in conveying the idea of an umbrella growing roots in a cracked desert.
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
"An octopus juggling flaming swords under a disco ball."
"A giraffe riding a unicycle on a tightrope under a starry sky."
"Surreal fish swimming through a desert sunset."