Creative Challenge
"A giraffe wearing a neon superhero cape, leaping over a crescent moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#1a0c3d"/>
<stop offset="100%" stop-color="#350c4a"/>
</radialGradient>
<linearGradient id="capeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff00ff"/>
<stop offset="100%" stop-color="#00ffff"/>
</linearGradient>
<filter id="neonGlow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feColorMatrix in="glow" type="matrix"
values="0 0 0 0 0.8
0 0 0 0 0.2
0 0 0 0 0.9
0 0 0 1 0"/>
<feComposite in="SourceGraphic" operator="over"/>
</filter>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<path d="M5 0L6.3 3.8H10L6.8 6.2L8.1 10L5 7.7L1.9 10L3.2 6.2L0 3.8H3.7z" fill="#fff"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.4"/>
<!-- Crescent Moon -->
<g transform="translate(150 220)">
<path d="M-60 0a80 80 0 1 1 120 0 40 40 0 0 0-120 0" fill="#e8f4ff"/>
<path d="M-40 0a60 60 0 1 1 90 0 30 30 0 0 0-90 0" fill="#fff" opacity="0.8"/>
</g>
<!-- Giraffe -->
<g transform="translate(100 80)">
<!-- Body -->
<path d="M40 150 Q80 80 120 100 Q160 120 140 180 L100 220 L60 180 Z" fill="#ffe47a"/>
<!-- Neck -->
<path d="M90 50 C70 30 50 40 40 80 L60 120 L100 100 Z" fill="#ffdb4d"/>
<!-- Head -->
<path d="M30 50 Q40 20 60 30 Q70 40 50 60 L30 50" fill="#ffdb4d"/>
<circle cx="45" cy="45" r="5" fill="#333"/>
<!-- Horns -->
<path d="M25 35 L30 25 L35 30" fill="#99804d"/>
<!-- Cape -->
<path d="M120 100 Q150 50 180 30 Q200 10 220 50 L200 100 L160 120 Z"
fill="url(#capeGrad)"
filter="url(#neonGlow)"
opacity="0.9">
<animate attributeName="stroke-dasharray" values="0 100;20 80;0 100" dur="2s" repeatCount="indefinite"/>
</path>
<!-- Spots -->
<g fill="#e6b800">
<ellipse cx="70" cy="130" rx="12" ry="8" transform="rotate(-30 70 130)"/>
<ellipse cx="110" cy="160" rx="15" ry="10" transform="rotate(20 110 160)"/>
<path d="M50 100 Q55 90 60 95 Q65 100 55 105 Z"/>
</g>
</g>
<!-- Motion Lines -->
<g stroke="#ffffff" opacity="0.6" stroke-width="2">
<path d="M220 50 Q230 60 240 45"/>
<path d="M210 70 Q220 75 230 60" stroke-dasharray="4 4"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="40%" fy="60%">
<stop offset="0%" stop-color="#e6e6e6" />
<stop offset="100%" stop-color="#a6a6a6" />
</radialGradient>
<linearGradient id="capeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff00ff" />
<stop offset="50%" stop-color="#00ffff" />
<stop offset="100%" stop-color="#ff00ff" />
</linearGradient>
<pattern id="giraffeSpots" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="#964B00" />
</pattern>
</defs>
<path d="M50 150 A 100 100 0 0 0 250 150" fill="url(#moonGradient)" stroke="#ffff00" stroke-width="3" filter="drop-shadow(3px 3px 5px #00000050)"/>
<path d="M100 100 C 120 50, 180 50, 200 100 L 170 160 130 160 Z" fill="url(#capeGradient)" stroke="none" filter="drop-shadow(3px 3px 5px #0000ff50)" transform="rotate(-20 150 130)"/>
<ellipse cx="150" cy="200" rx="20" ry="30" fill="url(#giraffeSpots)" transform="rotate(-20 150 200)"/>
<path d="M150 170 C 155 150, 155 140, 150 120" stroke="#964B00" stroke-width="8" stroke-linecap="round" transform="rotate(-20 150 145)"/>
<circle cx="150" cy="110" r="15" fill="#ffcc66" stroke="#964B00" stroke-width="3" transform="rotate(-20 150 110)"/>
<ellipse cx="165" cy="100" rx="5" ry="8" fill="#000000" transform="rotate(-20 165 100)"/>
<ellipse cx="135" cy="100" rx="5" ry="8" fill="#000000" transform="rotate(-20 135 100)"/>
<path d="M145 120 Q 150 125, 155 120" stroke="#964B00" stroke-width="3" stroke-linecap="round" transform="rotate(-20 150 120)"/>
<g transform="rotate(-20 150 200)">
<path d="M130 200 C 130 170, 170 170, 170 200" stroke="#964B00" stroke-width="8" stroke-linecap="round"/>
<ellipse cx="130" cy="230" rx="15" ry="20" fill="#ffcc66" stroke="#964B00" stroke-width="3"/>
<ellipse cx="170" cy="230" rx="15" ry="20" fill="#ffcc66" stroke="#964B00" stroke-width="3"/>
</g>
</svg>
Judge's Analysis
Player 1's image effectively captures the whimsical concept of a giraffe with a neon superhero cape leaping over a crescent moon.
The use of patterns and colors adds depth and vibrancy, enhancing visual appeal.
Player 2's submission, while creative, lacks clarity and depth in composition, making Player 1's artwork more aligned with the prompt and visually engaging.
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 top hat, riding a unicycle on a tightrope"