Creative Challenge
"A giraffe in a space suit floating among neon stars"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgba(255, 255, 255, 0.8);" />
<stop offset="100%" style="stop-color:rgba(255, 255, 255, 0);" />
</radialGradient>
<pattern id="neonPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="rgb(255, 20, 147)" opacity="0.8"/>
</pattern>
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255, 222, 173);" />
<stop offset="100%" style="stop-color:rgb(240, 128, 48);" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="#001d3d" />
<g id="giraffe" transform="translate(150, 150) rotate(-25)">
<ellipse cx="0" cy="-50" rx="16" ry="28" fill="url(#giraffeGradient)" stroke="black" stroke-width="1" />
<line x1="0" y1="0" x2="0" y2="50" stroke="black" stroke-width="10" />
<circle cx="0" cy="100" r="50" fill="silver" stroke="black" stroke-width="4" />
<rect x="-60" y="60" width="120" height="30" rx="15" ry="15" fill="gray" />
<circle cx="15" cy="85" r="8" fill="black" />
<circle cx="-15" cy="85" r="8" fill="black" />
</g>
<g filter="url(#neonPattern)">
<circle cx="50" cy="50" r="3" fill="url(#starGlow)" />
<circle cx="250" cy="80" r="5" fill="url(#starGlow)" />
<circle cx="120" cy="230" r="4" fill="url(#starGlow)" />
<circle cx="200" cy="170" r="3" fill="url(#starGlow)" />
<circle cx="80" cy="150" r="6" fill="url(#starGlow)" />
<circle cx="180" cy="40" r="4" fill="url(#starGlow)" />
<circle cx="230" cy="220" r="5" fill="url(#starGlow)" />
<circle cx="40" cy="200" r="3" fill="url(#starGlow)" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with radial gradient for depth -->
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<!-- Custom gradients -->
<defs>
<linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#1a0f3c" stop-opacity="1"/>
<stop offset="1" stop-color="#000000" stop-opacity="1"/>
</linearGradient>
<radialGradient id="starGlow" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#ffffff" stop-opacity="0"/>
</radialGradient>
<linearGradient id="suitGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#c0c0c0" stop-opacity="1"/>
<stop offset="1" stop-color="#808080" stop-opacity="1"/>
</linearGradient>
<linearGradient id="helmetGold" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#ffd700" stop-opacity="1"/>
<stop offset="1" stop-color="#ff8c00" stop-opacity="1"/>
</linearGradient>
</defs>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
<circle cx="80" cy="100" r="2" fill="white" opacity="0.6"/>
<circle cx="200" cy="80" r="1.5" fill="white" opacity="0.7"/>
<circle cx="150" cy="150" r="0.5" fill="white" opacity="0.9"/>
<!-- Multiple star elements like above -->
</g>
<!-- Giraffe in space suit -->
<g transform="translate(150,200)">
<!-- Space suit body -->
<path d="M-50-100 L-30-80 Q-20-70 -10-70 L10-70 Q20-70 30-80 L50-100 L70-130 Q60-140 50-140 L-50-140 Q-40-140 -30-130 L-50-100 Z"
fill="url(#suitGradient)"/>
<!-- Helmet -->
<path d="M-40-120 Q0-110 40-120 Q60-110 40-100 Q0-90 -40-100 Q-60-90 -40-110 Z"
fill="url(#helmetGold)"/>
<path d="M-30-110 Q0-100 30-110 M-30-110 L-20-130 L30-130 L20-110 Z"
fill="#000000"/>
<!-- Helmet Visor -->
<circle cx="0" cy="-110" r="35" fill="none" stroke="#000000" stroke-width="2"/>
<!-- Eyes and Face -->
<circle cx="-15" cy="-120" r="8" fill="url(#starGlow)"/>
<circle cx="15" cy="-120" r="8" fill="url(#starGlow)"/>
<path d="M-5-125 Q0-130 -5-125" fill="#000000"/>
<!-- Neck and Legs -->
<rect x="-20" y="-70" width="40" height="100" fill="url(#suitGradient)"/>
<path d="M0-140 L30-170 L50-140 L30-130 Z" fill="url(#suitGradient)"/>
<path d="M0-140 L-30-170 L-50-140 L-30-130 Z" fill="url(#suitGradient)"/>
<!-- Harness details -->
<path d="M-20-100 L20-100 M-15-95 L15-95" fill="#ff0000"/>
<path d="M-10-100 L10-100 L0-90 Z" fill="#ffff00"/>
</g>
</svg>
Judge's Analysis
Player 2's submission features a more defined space suit and a better representation of a giraffe, aligning more closely with the prompt.
The use of colors and shapes is more dynamic, offering a stronger visual appeal.
Player 1's image lacks clarity in depicting a giraffe and a space suit, making it less effective in adherence to 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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"