Creative Challenge
"A floating island with a twisted tree and a single hanging lantern"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#B2E0E6;stop-opacity:1"/>
</linearGradient>
<linearGradient id="islandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8B4513;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#A0522D;stop-opacity:1"/>
</linearGradient>
<radialGradient id="treeLeavesGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#228B22;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#7FFF00;stop-opacity:1"/>
</radialGradient>
<radialGradient id="lanternGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1"/>
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)"/>
<g transform="translate(150, 200)">
<path d="M-70,50 Q0,0 70,50 Q80,70 0,100 Q-80,70 -70,50 Z" fill="url(#islandGradient)"/>
<path d="M-5,50 Q0,20 5,50 Z" fill="url(#treeLeavesGradient)" transform="translate(0, -30) rotate(-30) scale(7)"/>
<path d="M0,50 C-5,70 -20,70 -20,100 C-20,120 -10,130 0,130 C10,130 20,120 20,100 C20,70 5,70 0,50 Z" fill="#654321"/>
<path d="M0,50 Q-5,70 -10,70 C-10,90 0,90 0,110 C0,90 10,90 10,70 C5,70 0,70 0,50 Z" fill="#8B4513" opacity="0.7"/>
<circle cx="10" cy="-20" r="10" fill="url(#lanternGradient)"/>
<line x1="10" y1="-20" x2="10" y2="10" stroke="#000" stroke-width="2" stroke-linecap="round"/>
<circle cx="10" cy="-20" r="2" fill="#fff"/>
</g>
<text x="50%" y="90%" font-family="Verdana" font-size="12" fill="#000" text-anchor="middle">Floating Island of Wonder</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="islandGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#4567b7" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#87CEEB" stop-opacity="0.5"/>
</linearGradient>
<radialGradient id="lanternGrad" cx="0.4" cy="0.6" r="0.4">
<stop offset="0%" stop-color="#FFD700" stop-opacity="1"/>
<stop offset="100%" stop-color="#800000" stop-opacity="0.5"/>
</radialGradient>
<linearGradient id="treeGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#663300" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#222222" stop-opacity="0.5"/>
</linearGradient>
</defs>
<!-- Island -->
<ellipse cx="150" cy="240" rx="100" ry="20" fill="url(#islandGrad)" opacity="0.7" transform="rotate(2 150 240)"/>
<!-- Tree -->
<path fill="none" stroke-width="4" stroke-linecap="round" stroke="url(#treeGrad)">
<move to="180,170"/>
<cubic-bezier-control-points d="180,170 220,220 150,200 100,240 120, 140,180,190 120,190 180,200 230,170 230,150 120,120,180,110"/>
</path>
<!-- Lantern -->
<circle cx="140" cy="130" r="10" fill="url(#lanternGrad)" opacity="1"/>
<line x1="140" y1="120" x2="140" y2="180" stroke-width="2" stroke="#888" opacity="0.7" transform="rotate(10 140 150)"/>
<!-- Additional Decorations -->
<circle cx="120" cy="125" r="5" fill="#000" opacity="0.7"/>
<polygon points="121,119 129,119 131,125 119,125" fill="#FFD700" opacity="1" transform="rotate(10 125 122)"/>
<use xlink:href="#leaf-pattern" transform="translate(110 160) scale(0.5)"/>
<symbol id="leaf-pattern">
<path d="M0,1 L2,1 Q3,0 3,0 L1,2 L0, 1 Z" fill="#99FF99" stroke-width="0.1" stroke="#888" transform="rotate(10)">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" dur="10s" from="0 0 0" to="360 0 0" repeatCount="indefinite"/>
</symbol>
</svg>
Judge's Analysis
Player 1's image successfully depicts a floating island with a clear representation of a twisted tree and a hanging lantern.
The composition effectively adheres to the prompt, showcasing creativity with a vibrant color scheme and a stylized depiction.
Player 2's submission is not visible, offering no content for evaluation.
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
"Octopus DJing at an underwater rave, with starfish dancers"
"Skateboarding octopus, undersea rink, wearing sunglasses"
"A clock melting in a desert under a double rainbow"
"Treasure map showing an alien planet with psychedelic flora"
"Rainbow-colored octopus juggling teacups in a starry sea"
"Flamingo riding a bicycle on a rainbow tightrope"