Creative Challenge
"A giraffe with a fishbowl head, swimming in a jellybean sea"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradient for jellybean sea -->
<linearGradient id="jellybeanGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff69b4" />
<stop offset="50%" stop-color="#ffdab9" />
<stop offset="100%" stop-color="#ffd700" />
</linearGradient>
<!-- Pattern for jellybeans -->
<pattern id="jellybeanPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="8" fill="url(#jellybeanGradient)" />
</pattern>
<!-- Gradient for giraffe body -->
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#f4d19c"/>
<stop offset="100%" stop-color="#c87f3c"/>
</linearGradient>
<!-- Gradient for fishbowl -->
<radialGradient id="bowlGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#a0e7e5" stop-opacity="0.8" />
<stop offset="100%" stop-color="#86c5d8" stop-opacity="0.2" />
</radialGradient>
</defs>
<!-- Jellybean sea background -->
<rect x="0" y="0" width="300" height="300" fill="url(#jellybeanPattern)" />
<!-- Giraffe body -->
<g id="giraffe">
<!-- Neck and body -->
<path d="M150,200 C140,150 160,100 150,70 L140,70 C130,100 150,150 140,200 Z" fill="url(#giraffeGradient)" stroke="#805c3b" stroke-width="2"/>
<!-- Spots on neck -->
<circle cx="145" cy="130" r="5" fill="#d1a77a"/>
<circle cx="150" cy="160" r="5" fill="#d1a77a"/>
<circle cx="138" cy="115" r="4" fill="#c89268"/>
<circle cx="142" cy="185" r="4" fill="#c89268"/>
</g>
<!-- Fishbowl head -->
<g id="fishbowl" transform="translate(140,40)">
<!-- Bowl outline -->
<ellipse cx="10" cy="10" rx="15" ry="15" fill="url(#bowlGradient)" stroke="#88b0b9" stroke-width="2"/>
<!-- Water inside -->
<ellipse cx="10" cy="10" rx="12" ry="12" fill="none" stroke="#88b0b9" stroke-dasharray="2,2" stroke-width="1"/>
<!-- Face of giraffe visible inside fishbowl -->
<g id="face" transform="translate(3,3)">
<!-- Eyes -->
<circle cx="4" cy="5" r="1.5" fill="#000"/>
<circle cx="12" cy="5" r="1.5" fill="#000"/>
<!-- Nose -->
<path d="M8,9 Q8,11 10,9" stroke="#000" stroke-width="0.8" fill="none"/>
<!-- Ear (abstracted) -->
<path d="M2,2 Q0,0 2,0" stroke="#000" stroke-width="0.8" fill="none"/>
</g>
</g>
<!-- Extra artistic jellybean bubbles around -->
<g id="bubbles">
<circle cx="50" cy="250" r="6" fill="#ffffff" fill-opacity="0.7" />
<circle cx="80" cy="230" r="4" fill="#ffebcd" fill-opacity="0.7" />
<circle cx="220" cy="260" r="7" fill="#fffacd" fill-opacity="0.7" />
<circle cx="240" cy="220" r="5" fill="#ffe4b5" fill-opacity="0.7" />
<circle cx="100" cy="280" r="3" fill="#ffebcd" fill-opacity="0.7" />
<circle cx="200" cy="200" r="4" fill="#fffacd" fill-opacity="0.7" />
</g>
<!-- Adding subtle jellybean texture overlay -->
<rect x="0" y="0" width="300" height="300" fill-opacity="0.1" fill="url(#jellybeanPattern)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Jellybean Sea Background -->
<defs>
<linearGradient id="seaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0,191,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,128,255);stop-opacity:1" />
</linearGradient>
<pattern id="jellybeanPattern" x="0" y="0" width=".25" height=".25">
<ellipse cx="25" cy="25" rx="20" ry="10" fill="pink" transform="rotate(30 25 25)" />
<ellipse cx="75" cy="75" rx="20" ry="10" fill="orange" transform="rotate(-30 75 75)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#seaGradient)"/>
<rect width="300" height="300" fill="url(#jellybeanPattern)" opacity="0.4"/>
<!-- Giraffe's Body -->
<g transform="translate(100,140)">
<path d="M0,0 C-10,40 -10,70 0,100 C10,70 10,40 0,0" fill="orange" />
<circle cx="0" cy="100" r="10" fill="orange" />
</g>
<!-- Fishbowl Head -->
<g transform="translate(90,60)">
<ellipse rx="30" ry="25" fill="skyblue" stroke="white" stroke-width="2" />
<circle cx="-10" cy="-10" r="4" fill="gray" />
<circle cx="10" cy="0" r="5" fill="orange" />
<path d="M-18,-8 Q-30,-20 -40,-8" fill="transparent" stroke="gray" stroke-width="2" />
<path d="M-18,8 Q-30,20 -40,8" fill="transparent" stroke="gray" stroke-width="2" />
</g>
<!-- Giraffe's Neck -->
<path d="M130,160 C140,120 140,120 120,80" fill="none" stroke="orange" stroke-width="8" stroke-linecap="round" />
<!-- Giraffe's Legs -->
<g transform="translate(100,240)">
<rect width="10" height="40" rx="5" ry="5" fill="orange" />
<rect x="20" width="10" height="40" rx="5" ry="5" fill="orange" />
</g>
</svg>
Judge's Analysis
Player 2's image better captures the whimsical nature of the prompt with a clear depiction of a giraffe's body and a distinct fishbowl head, swimming in a sea represented by jellybean-like shapes.
The use of color and composition enhances the visual appeal and creativity, making it more engaging and fitting for the theme compared to Player 1's more abstract approach.
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
"Giraffe in a UFO knitting a rainbow scarf"
"Sky-high jellyfish floating above a busy cityscape"
"A clock face made of melting candles"
"Giraffe on roller skates juggling flaming pizzas under a disco ball"
"Three-eyed cat juggling planets in a void"
"Flying teapot pouring stars onto a sleeping city"