Creative Challenge
"A giraffe on roller skates juggling flaming torches under a disco ball."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1b1b6f" />
<stop offset="100%" stop-color="#000" />
</radialGradient>
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="orange" />
<stop offset="50%" stop-color="red" />
<stop offset="100%" stop-color="yellow" />
</radialGradient>
<linearGradient id="discoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fff" />
<stop offset="25%" stop-color="#ff69b4" />
<stop offset="50%" stop-color="#1e90ff" />
<stop offset="75%" stop-color="#32cd32" />
<stop offset="100%" stop-color="#ff1493" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Disco Ball -->
<circle cx="150" cy="40" r="30" fill="url(#discoGradient)" />
<path d="M150 10 V70 M120 40 H180 M130 20 L170 60 M170 20 L130 60" stroke="#fff" stroke-width="1" />
<!-- Giraffe Body -->
<ellipse cx="150" cy="180" rx="60" ry="80" fill="#fcb28c" />
<ellipse cx="150" cy="70" rx="20" ry="50" fill="#fcb28c" />
<!-- Giraffe Head -->
<ellipse cx="150" cy="40" rx="20" ry="30" fill="#fcb28c" />
<circle cx="143" cy="30" r="3" fill="#000" />
<circle cx="157" cy="30" r="3" fill="#000" />
<path d="M140 25 Q150 15 160 25" fill="none" stroke="#000" stroke-width="2" />
<path d="M140 50 C145 60 155 60 160 50 Z" fill="#000" />
<!-- Giraffe Spots -->
<circle cx="140" cy="100" r="8" fill="#a56728" />
<circle cx="160" cy="120" r="10" fill="#a56728" />
<circle cx="130" cy="160" r="9" fill="#a56728" />
<circle cx="170" cy="200" r="7" fill="#a56728" />
<!-- Giraffe Legs (Roller Skates!) -->
<path d="M130 240 L120 260 L140 260 Z" fill="blue" />
<path d="M170 240 L160 260 L180 260 Z" fill="blue" />
<circle cx="130" cy="260" r="5" fill="red" />
<circle cx="170" cy="260" r="5" fill="red" />
<circle cx="120" cy="260" r="5" fill="red" />
<circle cx="160" cy="260" r="5" fill="red" />
<circle cx="140" cy="260" r="5" fill="red" />
<circle cx="180" cy="260" r="5" fill="red" />
<!-- Flaming Torches -->
<line x1="100" y1="120" x2="80" y2="90" stroke="#000" stroke-width="2" />
<rect x="78" y="85" width="5" height="10" fill="#774400" />
<circle cx="80" cy="80" r="8" fill="url(#flameGradient)" />
<line x1="200" y1="120" x2="220" y2="90" stroke="#000" stroke-width="2" />
<rect x="218" y="85" width="5" height="10" fill="#774400" />
<circle cx="220" cy="80" r="8" fill="url(#flameGradient)" />
<line x1="150" y1="150" x2="150" y2="115" stroke="#000" stroke-width="2" />
<rect x="148" y="110" width="5" height="10" fill="#774400" />
<circle cx="150" cy="105" r="8" fill="url(#flameGradient)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bgGrad" cx="50%" cy="100%" r="100%" fx="50%" fy="100%">
<stop offset="0%" stop-color="#2c003e"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<pattern id="discoPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#ccc"/>
<path d="M0,0 L10,10 M10,0 L0,10" stroke="#888" stroke-width="1"/>
</pattern>
<linearGradient id="flameGrad" x1="0" y1="1" x2="0" y2="0">
<stop offset="0%" stop-color="#ff4500"/>
<stop offset="50%" stop-color="#ffda00"/>
<stop offset="100%" stop-color="#fff"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#bgGrad)"/>
<g id="disco-ball" transform="translate(150,40)">
<circle r="40" fill="url(#discoPattern)"/>
<line x1="0" y1="-40" x2="0" y2="-80" stroke="#ccc" stroke-width="2"/>
</g>
<g id="torches" transform="translate(150,100)">
<g transform="translate(-40,0) rotate(-20)">
<rect x="-3" y="0" width="6" height="50" fill="#6d4c41"/>
<path d="M0,0 C-5,-10,5,-20,0,-30 C-5,-25,5,-25,0,-10 Z" fill="url(#flameGrad)"/>
</g>
<g transform="translate(0,-10) rotate(0)">
<rect x="-3" y="0" width="6" height="50" fill="#6d4c41"/>
<path d="M0,0 C-5,-12,5,-22,0,-32 C-5,-28,5,-28,0,-12 Z" fill="url(#flameGrad)"/>
</g>
<g transform="translate(40,0) rotate(20)">
<rect x="-3" y="0" width="6" height="50" fill="#6d4c41"/>
<path d="M0,0 C-5,-10,5,-20,0,-30 C-5,-25,5,-25,0,-10 Z" fill="url(#flameGrad)"/>
</g>
</g>
<g id="giraffe" transform="translate(150,200) scale(0.8)">
<!-- body and spots -->
<ellipse cx="0" cy="0" rx="40" ry="80" fill="#fdd835"/>
<circle cx="-10" cy="-10" r="8" fill="#795548"/>
<circle cx="20" cy="20" r="10" fill="#795548"/>
<circle cx="-20" cy="30" r="7" fill="#795548"/>
<circle cx="0" cy="-30" r="9" fill="#795548"/>
<circle cx="25" cy="-40" r="6" fill="#795548"/>
<!-- neck and head -->
<rect x="-10" y="-80" width="20" height="80" fill="#fdd835"/>
<circle cx="0" cy="-120" r="20" fill="#fdd835"/>
<circle cx="-5" cy="-125" r="3" fill="#000"/>
<circle cx="5" cy="-125" r="3" fill="#000"/>
<path d="M-5,-115 Q0,-110,5,-115" stroke="#000" fill="none"/>
<line x1="-5" y1="-140" x2="-10" y2="-155" stroke="#795548" stroke-width="4"/>
<line x1="5" y1="-140" x2="10" y2="-155" stroke="#795548" stroke-width="4"/>
<!-- legs and roller skates -->
<!-- front left -->
<path d="M-20,80 Q-25,100,-15,120" stroke="#fdd835" stroke-width="10" fill="none"/>
<circle cx="-15" cy="120" r="8" fill="#ff4081"/>
<circle cx="-15" cy="120" r="4" fill="#880e4f"/>
<!-- front right -->
<path d="M20,80 Q15,100,25,120" stroke="#fdd835" stroke-width="10" fill="none"/>
<circle cx="25" cy="120" r="8" fill="#ff4081"/>
<circle cx="25" cy="120" r="4" fill="#880e4f"/>
<!-- back left -->
<path d="M-30,80 Q-35,100,-25,120" stroke="#fdd835" stroke-width="10" fill="none"/>
<circle cx="-25" cy="120" r="8" fill="#ff4081"/>
<circle cx="-25" cy="120" r="4" fill="#880e4f"/>
<!-- back right -->
<path d="M30,80 Q35,100,45,120" stroke="#fdd835" stroke-width="10" fill="none"/>
<circle cx="45" cy="120" r="8" fill="#ff4081"/>
<circle cx="45" cy="120" r="4" fill="#880e4f"/>
</g>
<!-- juggling trails -->
<path d="M110,95 C120,85,140,85,150,95" stroke="#fff" stroke-opacity="0.3" stroke-width="2" fill="none"/>
<path d="M150,95 C160,105,180,105,190,95" stroke="#fff" stroke-opacity="0.3" stroke-width="2" fill="none"/>
</svg>
Judge's Analysis
Player 2's image adheres more closely to the prompt, with a clear representation of a giraffe juggling flaming torches under a disco ball while on roller skates.
The giraffe's recognizable features, including its spots, horns, and roller skates, add to the creative and technical quality.
Player 1's image is less detailed and does not resemble a giraffe as closely, making Player 2's submission stronger overall.
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.