Creative Challenge
"Two giraffes playing chess on a cloud, with pieces resembling constellations"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#cceeff;stop-opacity:1" />
</radialGradient>
<pattern id="chessboard" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#f0d9b5" />
<rect x="10" y="10" width="10" height="10" fill="#f0d9b5" />
</pattern>
<symbol id="giraffe" viewBox="0 0 24 40">
<path d="M12 0c-2 0-4 1-5 3-2 2-3 5-2 8 0 3 1 5 2 5s1 4 1 4h6s0-1 1-4h2s1 0 1-2-1-4-3-5c1-1 1-3 0-5s-2-2-3-2c-1-1-2-1-3-1s-2 0-3 1C9 8 8 6 7 5c-1-2 1-4 3-4s3 2 4 2c1 1 0 3-1 4-2-1-5 0-5 2s0 3 1 4c1 1 2 1 2 1h6s0-1 1-1 1-1 1-2c0-1-2-2-4-2s-3 0-3-1 1-2 3-2 5 1 5 3 0 2-2 3-3 1-3 2H9s-1 0-1-1-1-1-1-1 1-1 1-3c0-1-1-2-1-3 0-2 2-4 4-4s4 2 4 4-1 4-2 4-2-1-2-2-1-1-3-1-3 1-3 2 1 2 3 2h3c2 0 5-2 5-5s-1-4-3-4-4 1-4 3 1 4 2 5c1 0 2 1 2 1h6s0-1 1-1 1-1 1-2c0-2-1-2-1-2s-2 3-3 3H8z" fill="#FFCD4A"/>
</symbol>
<symbol id="chessPiece" viewBox="0 0 10 10">
<circle cx="5" cy="5" r="4" fill="url(#constellationGradient)" />
</symbol>
<radialGradient id="constellationGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4B0082;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="skyblue"/>
<g transform="translate(-20, 120)">
<ellipse cx="150" cy="60" rx="100" ry="50" fill="url(#cloudGradient)" />
<g transform="scale(0.5)">
<use x="30" y="20" href="#giraffe" fill="#FFC107"/>
<use x="230" y="20" href="#giraffe" fill="#FF5722" />
</g>
<g transform="translate(80, 30) scale(0.3)">
<rect width="58" height="58" fill="url(#chessboard)" />
<g transform="translate(10, 10)">
<use href="#chessPiece" x="0" y="0" />
<use href="#chessPiece" x="10" y="0" />
<use href="#chessPiece" x="0" y="10" />
<use href="#chessPiece" x="10" y="10" />
</g>
</g>
</g>
<text x="150" y="280" font-family="Arial" font-size="12" fill="#ffffff" text-anchor="middle">
"Cosmic Match"
</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky background with gradient -->
<defs>
<radialGradient id="sky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#a1c6fd" />
<stop offset="1" stop-color="#f5f7fa" />
</radialGradient>
<!-- Cloud shape -->
<path id="cloud" d="M150 100 Q200 70 250 100 Q300 130 250 160 Q200 190 150 160 Q100 130 0 160 Q50 190 100 160 Q150 130 150 100" fill="#ffffff" opacity="0.8"/>
<!-- Chessboard wood grain -->
<linearGradient id="wood" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#d3b58b" />
<stop offset="1" stop-color="#8b4513" />
</linearGradient>
<!-- Constellation styles -->
<style>
.constellation {
fill: #ffd700;
stroke: #ffd700;
stroke-width: 0.5;
}
</style>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Cloud -->
<use href="#cloud" x="0" y="0" />
<use href="#cloud" x="100" y="100" opacity="0.3"/>
<use href="#cloud" x="-50" y="50" opacity="0.3"/>
<!-- Chessboard -->
<rect x="50" y="50" width="200" height="200" fill="url(#wood)" rx="10"/>
<rect x="55" y="55" width="190" height="190" fill="none" stroke="#8b4513" stroke-width="2"/>
<!-- Chess pieces (constellations) -->
<g transform="translate(100,100)">
<!-- Orion constellation piece -->
<g transform="translate(0,0)">
<circle class="constellation" cx="50" cy="50" r="2"/>
<circle class="constellation" cx="60" cy="55" r="2"/>
<circle class="constellation" cx="70" cy="60" r="2"/>
<path class="constellation" d="M50,50 L60,55 L70,60"/>
</g>
<!-- Cassiopeia constellation piece -->
<g transform="translate(200,0)">
<circle class="constellation" cx="210" cy="50" r="2"/>
<circle class="constellation" cx="220" cy="55" r="2"/>
<circle class="constellation" cx="230" cy="60" r="2"/>
<path class="constellation" d="M210,50 L220,55 L230,60"/>
</g>
<!-- Ursa Major constellation piece -->
<g transform="translate(150,150)">
<circle class="constellation" cx="160" cy="160" r="2"/>
<circle class="constellation" cx="170" cy="165" r="2"/>
<circle class="constellation" cx="180" cy="170" r="2"/>
<path class="constellation" d="M160,160 L170,165 L180,170"/>
</g>
</g>
<!-- Giraffes -->
<path d="M80 150 Q100 140 120 130 L120 170 Q100 160 80 150" fill="#f0d9b5" stroke="#8b4513" stroke-width="2"/>
<path d="M220 150 Q200 140 180 130 L180 170 Q200 160 220 150" fill="#f0d9b5" stroke="#8b4513" stroke-width="2"/>
<!-- Giraffe eyes -->
<circle cx="110" cy="145" r="3" fill="#8b4513"/>
<circle cx="190" cy="145" r="3" fill="#8b4513"/>
<!-- Background constellations -->
<circle cx="50" cy="50" r="1" fill="#ffd700"/>
<circle cx="250" cy="250" r="1" fill="#ffd700"/>
<circle cx="150" cy="280" r="1" fill="#ffd700"/>
</svg>
Judge's Analysis
Player 1's image better adheres to the prompt by depicting two giraffe-like figures interacting over a spherical object, suggesting a cosmic or celestial theme.
The use of a cloud-like base and the title 'Cosmic Match' reinforces the idea of a fantastical setting.
In contrast, Player 2's image lacks clear representation of giraffes, clouds, or constellation-like elements, 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
"Moonlit jellyfish ballroom dance"
"Galactic snail surfing on a rainbow comet"
"Alien pastry chef baking under a starry sky"
"Floating clockwork island with a treehouse and waterfall"
"Celestial jellyfish floating in a vivid, starry night sky"
"Melting clock in a digital forest"