Creative Challenge
"A giraffe wearing a top hat and monocle, sipping tea in a floating teacup"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f2d7d0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d5a1a1;stop-opacity:1" />
</linearGradient>
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#e6c67a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#bc9c3b;stop-opacity:1" />
</linearGradient>
<pattern id="cupPattern" patternUnits="userSpaceOnUse" width="8" height="8">
<circle cx="4" cy="4" r="2" fill="#d79f83" />
<circle cx="4" cy="6" r="2" fill="#f2b8a0" />
</pattern>
</defs>
<g transform="translate(150,150)">
<path d="M0,0 C-40,-70 -80,-70 -80,0 Q-90,70 -40,60 Q0,80 40,60 Q90,70 80,0 Q80,-70 40,-70 Z" fill="url(#cupGradient)" stroke="#8b5c52" stroke-width="2" />
<path d="M-60,0 Q-65,30 -50,30 Q-35,30 -60,0 Z" fill="url(#cupPattern)" />
<path d="M60,0 L70,-10 L70,10 Z" fill="#a78264" />
<path d="M0,-55 L-5,-70 L5,-70 Z" fill="black" />
<circle cx="0" cy="-60" r="3" fill="none" stroke="black" stroke-width="0.5" />
<path d="M-45,-45 C-50,-55 -60,-70 -55,-85 S-30,-75 -25,-60" fill="none" stroke="#8e6b3d" stroke-width="4" />
<circle cx="-20" cy="-75" r="10" fill="black" />
<path d="M-10,-75 L0,-85 L10,-75" fill="none" stroke="black" stroke-width="2" />
<circle cx="-60" cy="-50" r="12" fill="url(#giraffeGradient)" />
<path d="M-59,-56 C-63,-58 -67,-50 -64,-47 C-60,-44 -57,-46 -55,-50 C-52,-48 -54,-52 -58,-54" fill="none" stroke="#3d2e1f" stroke-width="2" />
<path d="M-43,-50 L-45,-40 Q-50,-30 -55,-50 Z" fill="url(#giraffeGradient)" stroke="#8e6b3d" stroke-width="0.5" />
<path d="M-30,-50 C-28,-46 -33,-45 -30,-42 C-27,-38 -28,-40 -25,-35" fill="none" stroke="#3d2e1f" stroke-width="1" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="backgroundGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#E0FFFF;stop-opacity:1"/>
</radialGradient>
<pattern id="spotPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="#fff"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#backgroundGradient)"/>
<!-- Giraffe Body -->
<path d="M150 200 Q130 180 150 160 Q170 180 150 200" fill="#DEB887"/>
<!-- Legs -->
<rect x="130" y="220" width="20" height="40" rx="5" fill="#DEB887"/>
<rect x="160" y="220" width="20" height="40" rx="5" fill="#DEB887"/>
<!-- Neck -->
<rect x="140" y="160" width="20" height="60" rx="5" fill="#DEB887"/>
<!-- Head -->
<circle cx="150" cy="120" r="20" fill="#DEB887"/>
<circle cx="145" cy="115" r="5" fill="#000"/>
<circle cx="155" cy="115" r="5" fill="#000"/>
<!-- Top Hat -->
<rect x="145" y="100" width="10" height="30" rx="2" fill="#000"/>
<rect x="140" y="130" width="20" height="10" rx="5" fill="#000"/>
<!-- Monocle -->
<circle cx="155" cy="115" r="8" fill="#f0f0f0"/>
<circle cx="155" cy="115" r="7" fill="#fff"/>
<!-- Spots -->
<rect x="140" y="180" width="20" height="20" fill="url(#spotPattern)"/>
<rect x="160" y="180" width="20" height="20" fill="url(#spotPattern)"/>
<!-- Floating Teacup -->
<g transform="translate(150,100)">
<circle cx="0" cy="0" r="30" fill="#FFB6C1"/>
<circle cx="0" cy="0" r="35" stroke="#FF69B4" stroke-width="2" fill="none"/>
<circle cx="0" cy="0" r="25" fill="#FFF0F5"/>
<path d="M0 0 L30 40 L-30 40 Z" fill="#FF69B4"/>
</g>
<!-- Shadows -->
<rect x="130" y="260" width="40" height="10" rx="5" fill="#808080" opacity="0.5"/>
<rect x="140" y="180" width="20" height="20" fill="url(#spotPattern)"/>
<rect x="160" y="180" width="20" height="20" fill="url(#spotPattern)"/>
</svg>
Judge's Analysis
Player 2's submission, while abstract, includes elements that better suggest a giraffe-like figure with a monocle and a floating teacup, aligning more closely with the prompt.
The composition has a clearer structure, and the use of color is engaging.
Player 1's image lacks recognizable elements of the prompt, resulting in a lower adherence to the concept.
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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"