Creative Challenge
"A giraffe in a top hat juggling planets under a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Starry Night Sky Background -->
<defs>
<radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#1a1a2c" stop-opacity="1"/>
<stop offset="1" stop-color="#0a0a1a" stop-opacity="1"/>
</radialGradient>
<pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="20" cy="80" r="1" fill="white"/>
<circle cx="80" cy="30" r="1" fill="white"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#nightSky)"/>
<rect width="300" height="300" fill="url(#stars)"/>
<!-- Moon -->
<path d="M220,50 L260,50 L250,40 L230,40 Z" fill="#fff"/>
<!-- Giraffe Body -->
<g transform="translate(150,200)">
<!-- Neck -->
<ellipse cx="0" cy="0" rx="30" ry="60" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
<!-- Body -->
<ellipse cx="0" cy="70" rx="40" ry="50" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
<!-- Legs -->
<rect x="-20" y="110" width="40" height="80" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
<rect x="20" y="110" width="40" height="80" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
<!-- Head -->
<ellipse cx="0" cy="-40" rx="25" ry="20" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
<!-- Top Hat -->
<ellipse cx="0" cy="-80" rx="20" ry="30" fill="#000" stroke="#666" stroke-width="2">
<title>Top Hat</title>
</ellipse>
<path d="M-15,-60 L15,-60 L12,-70 L-12,-70 Z" fill="#666"/>
</g>
<!-- Planets -->
<g transform="translate(150,150)">
<!-- Planet 1 -->
<circle cx="-50" cy="-30" r="15" fill="#87CEEB" stroke="#4682B4" stroke-width="2" filter="url(#glow)"/>
<!-- Planet 2 -->
<circle cx="0" cy="-50" r="20" fill="#FFD700" stroke="#FFA500" stroke-width="2" filter="url(#glow)"/>
<!-- Planet 3 -->
<circle cx="50" cy="-30" r="15" fill="#00FF00" stroke="#008000" stroke-width="2" filter="url(#glow)"/>
</g>
<!-- Juggling Trails -->
<path d="M100,100 Q150,150 200,100" stroke="#666" stroke-width="1" fill="none"/>
<path d="M200,100 Q250,150 300,100" stroke="#666" stroke-width="1" fill="none"/>
<path d="M100,200 Q150,250 200,200" stroke="#666" stroke-width="1" fill="none"/>
<path d="M200,200 Q250,150 300,200" stroke="#666" stroke-width="1" fill="none"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#0b0b2d;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#1a1a4a;stop-opacity:1"/>
</linearGradient>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#419EB7;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#1E5F7C;stop-opacity:1"/>
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#FF8E8E;stop-opacity:1"/>
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#9C9CFF;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#6A6AFF;stop-opacity:1"/>
</radialGradient>
<pattern id="sparkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="white"/>
<circle cx="15" cy="15" r="1" fill="white"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#nightSky)"/>
<g transform="translate(150,150)">
<!-- Giraffe Body -->
<rect x="-20" y="-50" width="40" height="100" fill="#f0e6ff" rx="10"/>
<!-- Neck -->
<rect x="-15" y="-100" width="30" height="80" fill="#f0e6ff" rx="5"/>
<!-- Head -->
<circle cx="-10" cy="-150" r="15" fill="#f0e6ff"/>
<!-- Eyes -->
<circle cx="-20" cy="-155" r="3" fill="#333"/>
<circle cx="-10" cy="-155" r="3" fill="#333"/>
<!-- Nose -->
<rect x="-15" y="-160" width="10" height="5" fill="#333"/>
<!-- Ears -->
<path d="M-20,-140 L-25,-130 L-15,-130 Z" fill="#f0e6ff"/>
<path d="M-10,-140 L-5,-130 L-15,-130 Z" fill="#f0e6ff"/>
<!-- Top Hat -->
<rect x="-12" y="-165" width="24" height="30" fill="#2F2F2F"/>
<rect x="-10" y="-165" width="20" height="25" fill="#6B6B6B"/>
<rect x="-8" y="-190" width="16" height="5" fill="#FF0000"/>
<!-- Legs -->
<rect x="-35" y="20" width="10" height="80" fill="#f0e6ff"/>
<rect x="25" y="20" width="10" height="80" fill="#f0e6ff"/>
<rect x="-15" y="50" width="30" height="60" fill="#f0e6ff" rx="5"/>
<!-- Juggling Planets -->
<g transform="translate(0, -100)">
<circle cx="-50" cy="0" r="15" fill="url(#planet1)" filter="url(#glow)"/>
<circle cx="50" cy="0" r="20" fill="url(#planet2)" filter="url(#glow)"/>
<circle cx="0" cy="50" r="25" fill="url(#planet3)" filter="url(#glow)"/>
<path d="M-50,0 Q0,50 50,0" stroke="#FFD700" stroke-width="2" fill="none"/>
<path d="M50,0 Q0,-50 -50,0" stroke="#FFD700" stroke-width="2" fill="none"/>
</g>
<!-- Sparkles -->
<g transform="translate(0, -100)" filter="url(#glow)">
<rect width="300" height="300" fill="url(#sparkles)" opacity="0.3"/>
</g>
</g>
<!-- Stars -->
<g>
<circle cx="50" cy="50" r="1" fill="#FFF"/>
<circle cx="200" cy="80" r="1.5" fill="#FFF"/>
<circle cx="120" cy="30" r="1" fill="#FFF"/>
<circle cx="250" cy="70" r="1.2" fill="#FFF"/>
<circle cx="180" cy="100" r="1" fill="#FFF"/>
</g>
</svg>
Judge's Analysis
Player 1's image more effectively captures the essence of a giraffe juggling planets under a starry night sky.
The inclusion of a distinct top hat and clear depiction of juggling planets align better with the prompt.
The technical quality and clarity of the elements, such as the planets and stars, are more pronounced, enhancing the visual appeal and adherence to the theme.
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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"