Creative Challenge
"A giraffe wearing a scuba suit swimming among colorful coral reefs"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="giraffe-fur" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#F7D2C4" stop-opacity="1"/>
<stop offset="1" stop-color="#FFC499" stop-opacity="1"/>
</linearGradient>
<linearGradient id="ocean-blue" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#34A8FF" stop-opacity="1"/>
<stop offset="1" stop-color="#007bff" stop-opacity="1"/>
</linearGradient>
<pattern id="coral-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#FFC67D" rx="2"/>
<circle cx="10" cy="10" r="4" fill="#FF99CC"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#ocean-blue)"/>
<g transform="translate(150, 150)">
<g transform="rotate(-30)">
<path d="M-30, 50 L-30, -50 L30, -50 L30, 50 Z" fill="url(#giraffe-fur)" transform="translate(0, -20)"/>
<path d="M-20, 20 L20, 20 L20, -20 L-20, -20 Z" fill="url(#giraffe-fur)" transform="translate(0, 20)"/>
<circle cx="0" cy="0" r="20" fill="#F7D2C4"/>
<circle cx="0" cy="0" r="15" fill="#FFFFFF"/>
<circle cx="0" cy="0" r="10" fill="#F7D2C4"/>
</g>
<g transform="translate(-20, -40)">
<circle cx="0" cy="0" r="10" fill="#FFFFFF"/>
<circle cx="0" cy="0" r="8" fill="#F7D2C4"/>
<circle cx="0" cy="0" r="6" fill="#FFFFFF"/>
</g>
<g transform="translate(20, -40)">
<circle cx="0" cy="0" r="10" fill="#FFFFFF"/>
<circle cx="0" cy="0" r="8" fill="#F7D2C4"/>
<circle cx="0" cy="0" r="6" fill="#FFFFFF"/>
</g>
<g transform="translate(0, 30)">
<rect x="-10" y="-10" width="20" height="20" fill="#34A8FF" rx="2"/>
<rect x="-8" y="-8" width="16" height="16" fill="#FFFFFF" rx="2"/>
</g>
</g>
<g transform="translate(100, 100)">
<rect x="-50" y="-50" width="100" height="100" fill="url(#coral-pattern)"/>
<rect x="-40" y="-40" width="80" height="80" fill="#FFC67D" rx="10"/>
<circle cx="0" cy="0" r="20" fill="#FF99CC"/>
</g>
<g transform="translate(200, 100)">
<rect x="-50" y="-50" width="100" height="100" fill="url(#coral-pattern)"/>
<rect x="-40" y="-40" width="80" height="80" fill="#FFC67D" rx="10"/>
<circle cx="0" cy="0" r="20" fill="#FF99CC"/>
</g>
<g transform="translate(150, 250)">
<rect x="-50" y="-50" width="100" height="100" fill="url(#coral-pattern)"/>
<rect x="-40" y="-40" width="80" height="80" fill="#FFC67D" rx="10"/>
<circle cx="0" cy="0" r="20" fill="#FF99CC"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- underwater background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- colorful coral reefs -->
<circle cx="50" cy="250" r="30" fill="#FF4500" />
<circle cx="80" cy="220" r="40" fill="#FFD700" />
<rect x="120" y="210" width="60" height="60" fill="#FF6347" />
<circle cx="200" cy="230" r="20" fill="#FF1493" />
<rect x="170" y="190" width="40" height="80" fill="#7B68EE" />
<!-- giraffe in scuba suit -->
<rect x="100" y="150" width="60" height="80" fill="#D3D3D3" />
<circle cx="130" cy="210" r="10" fill="#A0522D" />
<line x1="130" y1="210" x2="130" y2="240" stroke="#000" stroke-width="2" />
<line x1="130" y1="240" x2="120" y2="270" stroke="#000" stroke-width="2" />
<line x1="130" y1="240" x2="140" y2="270" stroke="#000" stroke-width="2" />
<line x1="130" y1="230" x2="120" y2="250" stroke="#000" stroke-width="2" />
<line x1="130" y1="230" x2="140" y2="250" stroke="#000" stroke-width="2" />
</svg>
Judge's Analysis
Player 2's submission includes elements that suggest a scene with colorful coral reefs, using a variety of bright colors that enhance the visual appeal.
While the representation of the giraffe in a scuba suit is abstract, it incorporates a more dynamic composition compared to Player 1's image.
Player 1's submission lacks clear elements of coral reefs and does not effectively depict the concept of a giraffe in a scuba suit.
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 riding a unicycle on a rainbow"
"Glowing jellyfish in a sunset sky"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"