Creative Challenge
"A giraffe wearing a scuba suit exploring a coral reef"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#C5A06D;stop-opacity:1" />
<stop offset="100%" style="stop-color:#9B7A3A;stop-opacity:1" />
</linearGradient>
<radialGradient id="coralGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
<stop offset="100%" style="stop-color:#C74D3D;stop-opacity:1" />
</radialGradient>
<pattern id="bubbles" patternUnits="userSpaceOnUse" width="5" height="5">
<circle cx="1" cy="1" r="1" fill="white" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="#6EC7E9" />
<g transform="translate(80,100)">
<path d="M10,5 C20,-20, 40,-20, 43,10 C50,40, 40,70, 10,70 C-15,70,-25,45,-12,5 Z" fill="url(#giraffeGradient)" />
<path d="M10,5 L15,25 L25,25 L20,5 Z" fill="#FFD700" />
<path d="M5,-15 C3,-15, 0,-10, 5,-5 C10,-10, 11,-15, 10,-15 Z" fill="#FFF" />
<rect x="8" y="30" width="5" height="20" fill="#000" />
</g>
<g transform="translate(50,170)">
<path d="M0,0 Q20,-20 40,0 T80,0" fill="url(#coralGradient)" />
<path d="M10,0 Q15,-10 20,0 T30,0" fill="#FF8C00" />
<path d="M20,0 Q25,-5 30,0 T50,0" fill="#FF4500" />
</g>
<g transform="translate(150,120)" fill="url(#bubbles)">
<circle cx="0" cy="0" r="1.5" />
<circle cx="20" cy="5" r="2" />
<circle cx="10" cy="10" r="1" />
<circle cx="-10" cy="15" r="2" />
<circle cx="-20" cy="10" r="1" />
</g>
<g transform="translate(20,10)">
<path d="M60,-10 Q80,-20 100,0" stroke="black" stroke-width="2" fill="transparent" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient for water -->
<linearGradient id="water" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#45A0E6" stop-opacity="0.9" />
<stop offset="100%" stop-color="#012B55" stop-opacity="0.9" />
</linearGradient>
<!-- Gradient for coral -->
<linearGradient id="coral" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FFC67D" stop-opacity="0.8" />
<stop offset="100%" stop-color="#FF99CC" stop-opacity="0.8" />
</linearGradient>
<!-- Gradient for giraffe spots -->
<radialGradient id="spots" cx="30%" cy="30%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#F2C464" stop-opacity="0.9" />
<stop offset="100%" stop-color="#964B00" stop-opacity="0.9" />
</radialGradient>
<!-- Water background -->
<rect x="0" y="0" width="300" height="300" fill="url(#water)" rx="20" />
<!-- Coral reef -->
<path d="M 100, 150 C 150, 100 150, 200 100, 250"
fill="url(#coral)"
stroke="#777"
stroke-width="4"
rx="10"
transform="rotate(30 150 150)"
/>
<!-- Coral details -->
<g transform="translate(120, 180)">
<circle cx="0" cy="0" r="10" fill="#FFF" />
<circle cx="15" cy="15" r="10" fill="#FFF" />
<circle cx="-15" cy="15" r="10" fill="#FFF" />
</g>
<!-- Giraffe in scuba suit -->
<g transform="translate(180, 120)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="30" ry="50" fill="#D7B29D" />
<!-- Spots -->
<g>
<circle cx="10" cy="20" r="10" fill="url(#spots)" />
<circle cx="-15" cy="10" r="10" fill="url(#spots)" />
<circle cx="15" cy="-10" r="10" fill="url(#spots)" />
</g>
<!-- Scuba suit -->
<rect x="-20" y="30" width="40" height="40" fill="#2F4F7F" rx="10" />
<rect x="-10" y="40" width="20" height="20" fill="#2F4F7F" rx="5" />
<!-- Head and eyes -->
<ellipse cx="0" cy="-30" rx="20" ry="20" fill="#D7B29D" />
<g>
<circle cx="5" cy="-35" r="5" fill="#000" />
<circle cx="-5" cy="-35" r="5" fill="#000" />
</g>
<!-- Snorkel and mask -->
<path d="M -10, -40 C 0, -50 10, -40"
stroke="#000"
stroke-width="2"
/>
<ellipse cx="0" cy="-45" rx="10" ry="5" fill="#2F4F7F" />
</g>
<!-- Seaweed -->
<g transform="translate(250, 250)">
<path d="M 0, 0 C 10, -10 10, -30 0, -40"
fill="#0A5"
stroke="#000"
stroke-width="2"
/>
<path d="M 0, -10 C 5, -20 5, -40 0, -50"
fill="#0A5"
stroke="#000"
stroke-width="2"
/>
</g>
</svg>
Judge's Analysis
Player 2's image showcases a more detailed and coherent interpretation of the prompt with clear elements resembling a giraffe and a coral reef.
The composition offers more visual appeal with distinct shapes and a creative approach to the theme.
Player 1's image lacks these distinct features and appears abstract, making it less effective in conveying the idea.
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
"Octopus DJing at an underwater rave, with starfish dancers"
"Skateboarding octopus, undersea rink, wearing sunglasses"
"A floating island with a twisted tree and a single hanging lantern"
"A clock melting in a desert under a double rainbow"
"Treasure map showing an alien planet with psychedelic flora"
"Rainbow-colored octopus juggling teacups in a starry sea"