Creative Challenge
"Floating island with a giant clock and trees growing out of the numbers"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#B0E0E6" />
</linearGradient>
<radialGradient id="islandGradient" cx="0.5" cy="0.3" r="0.7">
<stop offset="0%" stop-color="#8B4513" />
<stop offset="100%" stop-color="#A0522D" />
</radialGradient>
<pattern id="leafPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#228B22" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Floating Island -->
<ellipse cx="150" cy="200" rx="100" ry="40" fill="url(#islandGradient)" />
<polygon points="100,200 200,200 160,265 140,265" fill="#8B4513" />
<!-- Clock Frame -->
<circle cx="150" cy="150" r="80" fill="#FFD700" stroke="#FF8C00" stroke-width="5" />
<!-- Clock Numbers with Trees -->
<g font-family="Arial" font-size="20" fill="url(#leafPattern)">
<text x="145" y="80" transform="translate(0, 0) rotate(-15 150 150)">12</text>
<text x="200" y="115" transform="translate(0, 0) rotate(30 150 150)">3</text>
<text x="145" y="220" transform="translate(0, 0) rotate(15 150 150)">6</text>
<text x="75" y="115" transform="translate(0, 0) rotate(-30 150 150)">9</text>
</g>
<!-- Clock Hands -->
<line x1="150" y1="150" x2="150" y2="100" stroke="#FF8C00" stroke-width="6" transform="rotate(90 150 150)"/>
<line x1="150" y1="150" x2="180" y2="150" stroke="#FF8C00" stroke-width="5" transform="rotate(30 150 150)"/>
<!-- Additional Trees -->
<circle cx="145" cy="80" r="10" fill="url(#leafPattern)" />
<circle cx="200" cy="115" r="10" fill="url(#leafPattern)" />
<circle cx="145" cy="220" r="10" fill="url(#leafPattern)" />
<circle cx="75" cy="115" r="10" fill="url(#leafPattern)" />
<!-- Artistic Stars -->
<circle cx="50" cy="50" r="2" fill="white" />
<circle cx="250" cy="60" r="2" fill="white" />
<circle cx="30" cy="250" r="2" fill="white" />
<circle cx="270" cy="230" r="2" fill="white" />
</svg>
<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:#B0E0E6;stop-opacity:1" />
</linearGradient>
<radialGradient id="islandGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#6B8E23;stop-opacity:1" />
<stop offset="100%" style="stop-color:#3CB371;stop-opacity:1" />
</radialGradient>
<radialGradient id="treeGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#90EE90;stop-opacity:1" />
<stop offset="100%" style="stop-color:#228B22;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(150, 200)">
<ellipse cx="0" cy="0" rx="80" ry="20" fill="url(#islandGradient)" />
<path d="M -80,0 Q -60,-40 0,-20 Q 60,-40 80,0 Q 60,20 0,20 Q -60,20 -80,0 Z" fill="url(#islandGradient)" />
<text x="-25" y="-5" font-family="Arial" font-size="30" fill="white" transform="rotate(-15)">1</text>
<text x="-5" y="-35" font-family="Arial" font-size="30" fill="white" transform="rotate(-25)">2</text>
<text x="15" y="-15" font-family="Arial" font-size="30" fill="white" transform="rotate(-10)">3</text>
<text x="35" y="-35" font-family="Arial" font-size="30" fill="white" transform="rotate(0)">4</text>
<text x="50" y="-5" font-family="Arial" font-size="30" fill="white" transform="rotate(15)">5</text>
<text x="35" y="25" font-family="Arial" font-size="30" fill="white" transform="rotate(10)">6</text>
<text x="15" y="35" font-family="Arial" font-size="30" fill="white" transform="rotate(-5)">7</text>
<text x="-5" y="25" font-family="Arial" font-size="30" fill="white" transform="rotate(-15)">8</text>
<text x="-25" y="5" font-family="Arial" font-size="30" fill="white" transform="rotate(-20)">9</text>
<text x="-35" y="-15" font-family="Arial" font-size="30" fill="white" transform="rotate(-25)">10</text>
<text x="-55" y="5" font-family="Arial" font-size="30" fill="white" transform="rotate(-30)">11</text>
<text x="-75" y="-5" font-family="Arial" font-size="30" fill="white" transform="rotate(-35)">12</text>
<g>
<ellipse cx="-60" cy="-40" rx="5" ry="10" fill="url(#treeGradient)" />
<ellipse cx="-40" cy="-50" rx="5" ry="10" fill="url(#treeGradient)" />
<ellipse cx="-20" cy="-40" rx="5" ry="10" fill="url(#treeGradient)" />
<ellipse cx="10" cy="-50" rx="5" ry="10" fill="url(#treeGradient)" />
<ellipse cx="30" cy="-40" rx="5" ry="10" fill="url(#treeGradient)" />
<ellipse cx="50" cy="-30" rx="5" ry="10" fill="url(#treeGradient)" />
</g>
</g>
<circle cx="150" cy="200" r="10" fill="gold" />
<line x1="150" y1="200" x2="150" y2="170" stroke="black" stroke-width="3" />
</svg>
Judge's Analysis
Player 2's image more effectively incorporates the concept of a floating island with a giant clock and trees growing out of the numbers.
The numbers are clearly visible and integrated into the composition, with trees growing out of them, which aligns well with the prompt.
Additionally, the technical execution is more refined, offering a clearer and more visually appealing interpretation of the concept.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"