Creative Challenge
"A giraffe wearing a bowtie, painting clouds on a ceiling with a tiny brush"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sky" cx="50%" cy="10%" r="75%">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="70%" stop-color="#E0FFFF" />
<stop offset="100%" stop-color="#fff" />
</radialGradient>
<pattern id="giraffe-spots" width="20" height="25" patternUnits="userSpaceOnUse">
<circle cx="10" cy="12.5" r="8" fill="#CD853F" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sky)" />
<path d="M150 300 C 170 250, 170 150, 150 100 C 180 90, 170 80, 150 70" fill="#9ACD32" stroke="#8B4513" stroke-width="2"/>
<ellipse cx="150" cy="70" rx="20" ry="15" fill="url(#giraffe-spots)" stroke="#8B4513" stroke-width="1.5" />
<ellipse cx="160" cy="60" rx="5" ry="3" fill="#000"/>
<ellipse cx="140" cy="60" rx="5" ry="3" fill="#000"/>
<path d="M 140 80 L 160 80 L 155 90 L 145 90 Z" fill="#DA70D6" />
<path d="M50 120 C 60 100, 100 50, 150 50 C 200 50, 240 100, 250 120 L 50 120 Z" fill="white" stroke="#ADD8E6" stroke-width="2" filter="url(#cloud-glow)" />
<filter id="cloud-glow">
<feGaussianBlur stdDeviation="3" result="blur" />
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<path d="M70 100 C 80 80, 120 30, 170 30 C 220 30, 260 80, 270 100 L 70 100 Z" fill="white" stroke="#ADD8E6" stroke-width="2" filter="url(#cloud-glow)" />
<path d="M100 180 L 110 170 L 115 180" fill="none" stroke="#8B4513" stroke-width="1" stroke-linecap="round"/>
<rect x="100" y="180" width="2" height="30" fill="#8B4513" transform="rotate(-10 100 180)"/>
<ellipse cx="108" cy="210" rx="2.5" ry="4" fill="#000" transform="rotate(-10 108 210)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffeSpots" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#fabe4a" />
<stop offset="100%" stop-color="#d1873f" />
</linearGradient>
<linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#87ceeb" />
<stop offset="100%" stop-color="#4682b4" />
</linearGradient>
<pattern id="cloudPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="4" fill="white" />
<circle cx="2" cy="2" r="3" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<path d="M100 250 Q120 150, 140 250 L160 250 Q145 200, 130 200 L115 200 Q105 140, 115 120 Q135 70, 155 120 Q145 140, 155 200" fill="url(#giraffeSpots)" stroke="#d1873f" stroke-width="2" />
<ellipse cx="130" cy="90" rx="10" ry="15" fill="url(#giraffeSpots)" stroke="#d1873f" stroke-width="2" />
<circle cx="128" cy="85" r="2" fill="#000" />
<circle cx="132" cy="85" r="2" fill="#000" />
<polygon points="125,75 135,75 130,60" fill="#d1873f" />
<line x1="130" y1="75" x2="130" y2="110" stroke-width="2" stroke="#d1873f" />
<rect x="160" y="200" width="20" height="10" fill="#fff" stroke="#ccc" stroke-width="2" />
<line x1="160" y1="200" x2="180" y2="190" stroke-width="2" stroke="#ccc" />
<polygon points="170,190 175,180 180,190" fill="url(#cloudPattern)" />
<rect x="85" y="200" width="25" height="10" fill="#000" />
<path d="M85 205 Q97 195, 110 205" stroke="#ff69b4" stroke-width="2" fill="none" />
</svg>
Judge's Analysis
Player 2's submission better captures the prompt with a recognizable giraffe figure holding a brush, which suggests the act of painting.
The addition of a bowtie and a palette enhances the creativity and adherence to the prompt.
Although both images are abstract, Player 2's composition is more cohesive and visually appealing, effectively conveying the whimsical concept of a giraffe painting clouds on a ceiling.
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
"Cactus dressed in punk rock attire under a disco ball"
"A giraffe wearing a top hat, balancing on a unicycle, juggling flaming pineapples"
"Floating umbrella island with candy cane trees"
"An ant balancing a crumb on a tightrope"
"Floating cityscape on lily pads under a crescent moon"
"Eiffel Tower wearing oversized sunglasses"