Creative Challenge
"A giraffe wearing a top hat, riding a unicycle on a tightrope"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0.5" y2="1">
<stop offset="0%" stop-color="#1a0c3f"/>
<stop offset="100%" stop-color="#6a4b9d"/>
</linearGradient>
<radialGradient id="spotlight" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#ffffff20"/>
<stop offset="100%" stop-color="#00000080"/>
</radialGradient>
<pattern id="hatPattern" patternUnits="userSpaceOnUse" width="8" height="8">
<path d="M4 0L8 4 4 8 0 4 4 0" fill="#2c1856"/>
</pattern>
<clipPath id="spokes">
<circle cx="150" cy="220" r="28"/>
</clipPath>
</defs>
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Tightrope -->
<path d="M50 180 Q150 160 250 180" stroke="url(#ropeGrad)" stroke-width="1.5" fill="none"/>
<!-- Unicycle -->
<g transform="translate(150 200)">
<circle cx="0" cy="20" r="30" fill="#4a4a4a"/>
<g transform="rotate(-15)">
<rect x="-2" y="-40" width="4" height="80" fill="#606060"/>
<path d="M-10 -40 Q0 -45 10 -40" fill="#707070"/>
</g>
<circle cx="0" cy="20" r="25" fill="url(#spokes)" stroke="#333" stroke-width="0.5"/>
</g>
<!-- Giraffe -->
<g transform="translate(150 160)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="25" ry="40" fill="#ffe082"/>
<path d="M-20 0 Q0 15 20 0" fill="#ffca28"/>
<!-- Neck & Head -->
<path d="M0 -40 C-10 -80, 10 -120, 0 -160" stroke="#ffe082" stroke-width="18" fill="none"/>
<ellipse cx="0" cy="-165" rx="12" ry="15" fill="#ffe082"/>
<!-- Top Hat -->
<rect x="-10" y="-185" width="20" height="25" fill="url(#hatPattern)"/>
<rect x="-8" y="-185" width="16" height="5" fill="#7e57c2"/>
<circle cx="0" cy="-185" r="6" fill="#ffd54f"/>
<!-- Features -->
<circle cx="-5" cy="-170" r="3" fill="#333"/>
<circle cx="5" cy="-170" r="3" fill="#333"/>
<path d="M-4 -155 Q2 -150 4 -155" stroke="#333" fill="none"/>
</g>
<!-- Motion Lines -->
<g stroke="#ffffff60" stroke-width="1.5">
<path d="M240 170 L260 165 M240 175 L260 170"/>
<path d="M60 170 L40 165 M60 175 L40 170"/>
</g>
<rect width="100%" height="100%" fill="url(#spotlight)" opacity="0.3"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffe-spots" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#BF9765" />
<stop offset="50%" stop-color="#D9B88C" />
<stop offset="100%" stop-color="#BF9765" />
</linearGradient>
<pattern id="spot-pattern" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="#A0522D" />
</pattern>
</defs>
<path d="M20,220 C 40,240 260,240 280,220" stroke="#000" stroke-width="3"/>
<circle cx="150" cy="190" r="15" fill="grey" stroke="black" stroke-width="2"/>
<path d="M140,175 L160,175 L150,150 Z" fill="red" stroke="black" stroke-width="1.5"/>
<rect x="130" y="150" width="40" height="15" fill="blue" stroke="black" stroke-width="1.5"/>
<g transform="translate(150, 110)">
<path d="M -10, -15 H 10 V 0 A 100, 30, 1 1, 1 -10, 0 V -15" fill="black"/>
</g>
<g transform="translate(150, 100)">
<ellipse cx="0" cy="0" rx="15" ry="10" fill="#BF9765" />
<rect x="-10" y="0" width="20" height="70" fill="url(#giraffe-spots)" />
<rect x="-5" y="70" width="10" height="25" fill="url(#giraffe-spots)" transform="rotate(10)" />
<rect x="-5" y="95" width="10" height="25" fill="url(#giraffe-spots)" transform="rotate(-10)" />
<circle cx="-5" cy="-5" r="5" fill="white" stroke="black"/>
<circle cx="5" cy="-5" r="5" fill="white" stroke="black"/>
<ellipse cx="0" cy="15" rx="7" ry="10" fill="#BF9765" />
</g>
</svg>
Judge's Analysis
Player 1's image adheres more closely to the prompt by clearly depicting a giraffe with a top hat, riding a unicycle on a tightrope.
The composition is more dynamic and the inclusion of the tightrope adds context and enhances the narrative.
Player 2's image lacks these elements and therefore falls short in fulfilling the creative and thematic requirements of 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
"A melting clock in a desert with a tiny, curious cactus wearing sunglasses."
"An octopus playing a grand piano underwater."
"Two giraffes in space suits playing chess on the moon."
"A giraffe wearing a neon superhero cape, leaping over a crescent moon"