Creative Challenge
"A giraffe wearing a diving helmet under the ocean"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="oceanGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#4fc3f7"/>
<stop offset="100%" stop-color="#01579b"/>
</radialGradient>
<linearGradient id="spotGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#ffeb3b"/>
<stop offset="100%" stop-color="#fbc02d"/>
</linearGradient>
<linearGradient id="helmetGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#e0e0e0"/>
<stop offset="100%" stop-color="#9e9e9e"/>
</linearGradient>
<pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="3" fill="white" opacity="0.3"/>
</pattern>
</defs>
<!-- Ocean background -->
<rect width="300" height="300" fill="url(#oceanGradient)"/>
<rect width="300" height="300" fill="url(#bubblePattern)" opacity="0.4"/>
<!-- Underwater plants -->
<path d="M50,300 C40,250 60,200 50,150" stroke="#388e3c" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M80,300 C70,250 90,200 80,150" stroke="#43a047" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M250,300 C240,250 260,200 250,150" stroke="#388e3c" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Giraffe body -->
<g id="giraffe">
<!-- Torso and legs -->
<ellipse cx="180" cy="220" rx="30" ry="20" fill="#fbc02d" stroke="#f57f17" stroke-width="2"/>
<path d="M170,220 L165,260" stroke="#f57f17" stroke-width="4" stroke-linecap="round"/>
<path d="M190,220 L195,260" stroke="#f57f17" stroke-width="4" stroke-linecap="round"/>
<!-- Spots on torso -->
<circle cx="175" cy="210" r="3" fill="url(#spotGradient)"/>
<circle cx="185" cy="210" r="3" fill="url(#spotGradient)"/>
<circle cx="180" cy="225" r="3" fill="url(#spotGradient)"/>
<!-- Long neck -->
<path d="M180,200 L180,100" stroke="#fbc02d" stroke-width="10" stroke-linecap="round"/>
<circle cx="180" cy="170" r="4" fill="url(#spotGradient)"/>
<circle cx="180" cy="140" r="4" fill="url(#spotGradient)"/>
<!-- Head -->
<ellipse cx="180" cy="90" rx="12" ry="8" fill="#fbc02d" stroke="#f57f17" stroke-width="2"/>
<!-- Ears -->
<path d="M172,80 L168,70" stroke="#f57f17" stroke-width="2" stroke-linecap="round"/>
<path d="M188,80 L192,70" stroke="#f57f17" stroke-width="2" stroke-linecap="round"/>
<!-- Tail -->
<path d="M210,220 L220,240" stroke="#f57f17" stroke-width="3" stroke-linecap="round"/>
</g>
<!-- Diving helmet -->
<g id="helmet">
<circle cx="180" cy="90" r="18" fill="url(#helmetGradient)" stroke="#616161" stroke-width="2"/>
<circle cx="180" cy="90" r="12" fill="#e1f5fe" opacity="0.6"/>
<!-- Helmet bolts -->
<circle cx="180" cy="68" r="2" fill="#9e9e9e"/>
<circle cx="195" cy="80" r="2" fill="#9e9e9e"/>
<circle cx="195" cy="100" r="2" fill="#9e9e9e"/>
<circle cx="180" cy="112" r="2" fill="#9e9e9e"/>
<circle cx="165" cy="100" r="2" fill="#9e9e9e"/>
<circle cx="165" cy="80" r="2" fill="#9e9e9e"/>
</g>
<!-- Rising bubbles -->
<g id="bubbles">
<circle cx="200" cy="70" r="3" fill="white" opacity="0.8"/>
<circle cx="210" cy="50" r="2" fill="white" opacity="0.8"/>
<circle cx="190" cy="60" r="2.5" fill="white" opacity="0.8"/>
<circle cx="220" cy="40" r="2" fill="white" opacity="0.7"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Ocean background -->
<rect x="0" y="0" width="300" height="300" fill="#0077BE" />
<!-- Waves -->
<circle cx="20" cy="20" r="10" fill="#00A9E0" />
<circle cx="60" cy="20" r="15" fill="#00A9E0" />
<circle cx="100" cy="20" r="10" fill="#00A9E0" />
<circle cx="140" cy="20" r="15" fill="#00A9E0" />
<circle cx="180" cy="20" r="10" fill="#00A9E0" />
<circle cx="220" cy="20" r="15" fill="#00A9E0" />
<!-- Giraffe body -->
<ellipse cx="150" cy="200" rx="60" ry="100" fill="#FFD700" />
<!-- Giraffe spots -->
<circle cx="135" cy="150" r="5" fill="#A67C52" />
<circle cx="165" cy="150" r="5" fill="#A67C52" />
<circle cx="150" cy="200" r="10" fill="#A67C52" />
<!-- Giraffe head -->
<circle cx="150" cy="80" r="40" fill="#FFD700" />
<!-- Giraffe nose -->
<circle cx="150" cy="95" r="5" fill="#A67C52" />
<!-- Giraffe eyes -->
<circle cx="135" cy="70" r="8" fill="#FFFFFF" />
<circle cx="165" cy="70" r="8" fill="#FFFFFF" />
<!-- Giraffe pupils -->
<circle cx="135" cy="70" r="4" fill="#000000" />
<circle cx="165" cy="70" r="4" fill="#000000" />
<!-- Diving helmet -->
<ellipse cx="150" cy="200" rx="70" ry="30" fill="#728593" />
<rect x="110" y="170" width="80" height="30" fill="#728593" />
<rect x="50" y="170" width="40" height="30" fill="#728593" />
<!-- Helmet glass -->
<circle cx="150" cy="200" r="45" fill="none" stroke="#B7C9CB" stroke-width="2" />
</svg>
Judge's Analysis
Player 1's image clearly depicts a giraffe with a diving helmet under the ocean, with its long neck and distinct helmet shape.
The underwater setting is well-represented by bubbles and seaweed, which enhances the theme.
Player 2's image lacks clarity in depicting a giraffe and the diving helmet is not as recognizable, leading to less adherence to 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
"Levitating teapot pouring into a floating upside-down cup"
"Bioluminescent jellyfish floating through a starry night sky"
"Octopus juggling planets under the sea"
"Van Gogh's Starry Night with flying fish replacing stars"
"A snail wearing a tiny suit, carrying a briefcase, rushing past skyscrapers"
"Giraffe with a telescope, stargazing on a skyscraper rooftop"