Creative Challenge
"A giraffe wearing astronaut gear floating in a galaxy of swirling stars"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxyGradient">
<stop offset="0%" stop-color="#00021a"/>
<stop offset="100%" stop-color="#000000"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#fff" opacity="0.3"/>
</pattern>
<linearGradient id="giraffeGradient">
<stop offset="0%" stop-color="#d4a046"/>
<stop offset="100%" stop-color="#a67c3d"/>
</linearGradient>
<linearGradient id="helmetGradient">
<stop offset="0%" stop-color="#c0c0c0"/>
<stop offset="100%" stop-color="#808080"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#galaxyGradient)"/>
<g transform="rotate(45 150 150)">
<circle cx="150" cy="150" r="100" fill="url(#stars)"/>
</g>
<g transform="translate(100,100)">
<path d="M0,0 Q50,50 100,0" fill="url(#giraffeGradient)"/>
<path d="M50,50 Q100,100 150,50" fill="url(#giraffeGradient)"/>
</g>
<g transform="translate(120,80) rotate(30)">
<circle cx="0" cy="0" r="30" fill="url(#helmetGradient)"/>
<g transform="translate(0,15)">
<circle cx="0" cy="0" r="5" fill="#fff"/>
<circle cx="10" cy="0" r="5" fill="#fff"/>
<rect x="-5" y="10" width="10" height="3" rx="1" fill="#fff"/>
</g>
</g>
<g transform="translate(140,120)">
<rect x="0" y="0" width="20" height="40" rx="10" fill="#333"/>
<rect x="0" y="40" width="20" height="20" rx="10" fill="#333"/>
</g>
<g transform="translate(100,140) rotate(-20)">
<rect x="0" y="0" width="30" height="60" rx="15" fill="#333"/>
</g>
<g transform="translate(160,140) rotate(20)">
<rect x="0" y="0" width="30" height="60" rx="15" fill="#333"/>
</g>
<g transform="translate(120,160)">
<circle cx="0" cy="0" r="20" fill="#333"/>
<circle cx="40" cy="0" r="20" fill="#333"/>
</g>
<g transform="translate(120,180)">
<rect x="0" y="0" width="60" height="20" rx="10" fill="#333"/>
<rect x="25" y="25" width="10" height="10" rx="5" fill="#fff"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="galaxy" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#3498db" stop-opacity="1"/>
<stop offset="50%" stop-color="#9b59b6" stop-opacity="1"/>
<stop offset="100%" stop-color="#f1c40f" stop-opacity="1"/>
</radialGradient>
<linearGradient id="stars" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0.1"/>
</linearGradient>
<pattern id="astronaut-pattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#444" rx="1"/>
<circle cx="5" cy="5" r="2" fill="#fff"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#galaxy)"/>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="50" fill="url(#stars)"/>
<g transform="rotate(45)">
<rect x="-20" y="-30" width="40" height="60" fill="#fff" rx="5"/>
<rect x="-15" y="-25" width="30" height="50" fill="url(#astronaut-pattern)"/>
<circle cx="0" cy="-20" r="10" fill="#fff"/>
<circle cx="0" cy="-10" r="5" fill="#444"/>
<path d="M -10 -20 L 10 -20 L 10 -30 L -10 -30 Z" fill="#fff"/>
</g>
<g transform="translate(0, -50)">
<path d="M -20 0 L 20 0 L 20 20 L -20 20 Z" fill="#fff"/>
<circle cx="0" cy="10" r="10" fill="#444"/>
<circle cx="0" cy="20" r="5" fill="#fff"/>
</g>
<g transform="translate(0, -70)">
<path d="M -15 -10 L 15 -10 L 15 10 L -15 10 Z" fill="#fff"/>
<circle cx="0" cy="0" r="10" fill="#444"/>
<circle cx="0" cy="10" r="5" fill="#fff"/>
</g>
</g>
</svg>
Judge's Analysis
Player 1's image better adheres to the prompt by incorporating elements that suggest a giraffe in astronaut gear, with a more defined visual connection to the concept of space.
The use of circular and swirling patterns effectively evokes a galaxy, enhancing the theme.
Player 2's image, while colorful, lacks the clear representation of the giraffe and space theme, making Player 1's submission more aligned with the prompt and visually coherent.
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
"Gravity-defying giraffe on roller skates juggling planets"
"Moonlit jellyfish symphony, dancing above a neon coral stage"
"Octopus juggling planets under a starlit ocean"
"Lighthouse floating in a teacup on a stormy sea"
"Neon giraffe floating in space with a rainbow spacesuit"
"A sunflower wearing sunglasses in a disco dance setting"