Creative Challenge
"Surreal floating island with giant clock trees and flowing rivers of glowing paint"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Floating island -->
<ellipse cx="150" cy="250" rx="120" ry="40" fill="#8B4513" />
<!-- Clock trees -->
<g>
<circle cx="80" cy="180" r="30" fill="#228B22" />
<rect x="77.5" y="80" width="5" height="120" fill="#8B4513" />
<line x1="80" y1="180" x2="60" y2="140" stroke="#A0522D" stroke-width="2" />
</g>
<g>
<circle cx="220" cy="180" r="30" fill="#228B22" />
<rect x="217.5" y="80" width="5" height="120" fill="#8B4513" />
<line x1="220" y1="180" x2="240" y2="140" stroke="#A0522D" stroke-width="2" />
</g>
<!-- Flowing rivers of glowing paint -->
<path d="M20 200 Q 100 50 200 200 Q 150 220 100 200 Q 50 220 20 200" fill="url(#paint)" />
<defs>
<linearGradient id="paint" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="50%" stop-color="#00BFFF" />
<stop offset="100%" stop-color="#FF69B4" />
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="islandGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#7f5a58"/>
<stop offset="100%" stop-color="#43231a"/>
</radialGradient>
<radialGradient id="treeGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffe47a"/>
<stop offset="100%" stop-color="#ffae42"/>
</radialGradient>
<linearGradient id="riverGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#0093E9" stop-opacity="1"/>
<stop offset="100%" stop-color="#80D0C7" stop-opacity="1"/>
</linearGradient>
<pattern id="clockPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="5" fill="#555"/>
<line x1="5" y1="5" x2="5" y2="0" stroke="#fff" stroke-width="1"/>
<line x1="5" y1="5" x2="10" y2="5" stroke="#fff" stroke-width="1"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="lightblue"/>
<g transform="translate(150, 100)">
<ellipse cx="0" cy="0" rx="90" ry="40" fill="url(#islandGradient)" />
<path d="M-70,10 C-30,30 30,30 70,10 Q0,60 -70,10" fill="url(#islandGradient)" opacity="0.8"/>
</g>
<g transform="translate(120, 60)">
<circle cx="0" cy="0" r="20" fill="url(#treeGradient)" filter="url(#f1)"/>
<circle cx="0" cy="0" r="18" fill="none" stroke="url(#clockPattern)" stroke-width="3"/>
<line x1="0" y1="0" x2="0" y2="-15" stroke="#fff" stroke-width="2"/>
<line x1="0" y1="0" x2="-10" y2="5" stroke="#fff" stroke-width="2"/>
</g>
<g transform="translate(180, 70)">
<circle cx="0" cy="0" r="20" fill="url(#treeGradient)" filter="url(#f1)"/>
<circle cx="0" cy="0" r="18" fill="none" stroke="url(#clockPattern)" stroke-width="3"/>
<line x1="0" y1="0" x2="0" y2="-15" stroke="#fff" stroke-width="2"/>
<line x1="0" y1="0" x2="10" y2="5" stroke="#fff" stroke-width="2"/>
</g>
<path d="M80,150 C100,160 120,145 140,160 S160,180 180,160 S200,140 220,160 C240,180 260,170 280,160" stroke="none" fill="url(#riverGradient)"/>
</svg>
Judge's Analysis
Player 2's image better captures the surreal essence of the prompt with the inclusion of clear clock faces and a flowing river element, enhancing both creativity and adherence to the theme.
The technical execution is slightly more polished, with a harmonious color palette and distinct visual elements that contribute to stronger visual appeal.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"