Creative Challenge
"A giraffe in a spacesuit reaching for a floating star in a pastel galaxy"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="galaxyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#e0bbf4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff9c88;stop-opacity:1" />
</linearGradient>
<radialGradient id="starGlow" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#fffc84;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffcc00;stop-opacity:0" />
</radialGradient>
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" />
</filter>
</defs>
<rect width="100%" height="100%" fill="url(#galaxyGradient)" />
<g>
<path d="M170 200 Q150 160, 130 200 Q110 240, 150 250 Q190 260, 210 220 Q230 180, 170 200" fill="#fff5e1" />
<path d="M140 160 Q135 175, 130 170 Q125 165, 120 150 Q150 135, 160 150 Q170 165, 165 180 Q162 175, 140 160" fill="#f0d78a" />
<circle cx="145" cy="145" r="35" fill="#907a56" />
<rect x="140" y="110" width="15" height="40" fill="#e0bbf4" />
<path d="M155 140 Q158 130, 165 140 Q165 170, 150 170 Q140 155, 155 140" fill="#f0d78a" />
<path d="M130 200 L140 270 L160 270 L170 200 Z" fill="#e7c376" />
<circle cx="145" cy="125" r="5" fill="#fff" />
<g filter="url(#blur)">
<circle cx="250" cy="50" r="10" fill="url(#starGlow)" />
</g>
<path d="M170 200 Q180 160, 230 50" stroke="#000" stroke-width="2" fill="none" />
<text x="200" y="40" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">★</text>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Galaxy background -->
<rect x="0" y="0" width="300" height="300" fill="#C9E4CA" rx="10" />
<rect x="0" y="0" width="300" height="300" fill="url(#galaxyGradient)" rx="10" />
<!-- Galaxy gradient -->
<defs>
<linearGradient id="galaxyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFC5C5" stop-opacity="0.3" />
<stop offset="50%" stop-color="#C7B8EA" stop-opacity="0.5" />
<stop offset="100%" stop-color="#A1C9F2" stop-opacity="0.7" />
</linearGradient>
</defs>
<!-- Stars -->
<g>
<circle cx="50" cy="100" r="5" fill="#FFFFFF" />
<circle cx="150" cy="50" r="3" fill="#FFFFFF" />
<circle cx="250" cy="200" r="4" fill="#FFFFFF" />
<circle cx="100" cy="250" r="6" fill="#FFFFFF" />
</g>
<!-- Floating star -->
<g transform="translate(120, 120)">
<path d="M 0 0 L 20 20 L 40 0 L 60 20 L 40 40 L 20 20 Z" fill="#F2C464" />
<path d="M 10 10 L 30 30 L 50 10 L 70 30 L 50 50 L 30 30 Z" fill="#FFFFFF" />
</g>
<!-- Giraffe in spacesuit -->
<g transform="translate(150, 200)">
<rect x="0" y="0" width="50" height="100" fill="#B1B1B1" rx="10" />
<rect x="10" y="10" width="30" height="50" fill="#FFFFFF" rx="5" />
<circle cx="25" cy="75" r="15" fill="#F7DC6F" />
<path d="M 10 50 L 20 70 L 30 50 Z" fill="#B1B1B1" />
<path d="M 15 60 L 25 80 L 35 60 Z" fill="#F7DC6F" />
</g>
<!-- Giraffe's neck and head -->
<g transform="translate(175, 150)">
<rect x="0" y="0" width="10" height="50" fill="#F7DC6F" />
<circle cx="5" cy="55" r="15" fill="#F7DC6F" />
<path d="M 0 50 L 10 70 L 20 50 Z" fill="#F7DC6F" />
<circle cx="5" cy="65" r="5" fill="#000000" />
</g>
<!-- Spacesuit details -->
<g transform="translate(150, 200)">
<rect x="10" y="60" width="10" height="10" fill="#FF69B4" rx="2" />
<rect x="30" y="60" width="10" height="10" fill="#FF69B4" rx="2" />
<path d="M 20 70 L 20 80 L 30 80 Z" fill="#B1B1B1" />
</g>
<!-- Reaching arm -->
<g transform="translate(165, 220)">
<rect x="0" y="0" width="10" height="30" fill="#B1B1B1" rx="2" />
<circle cx="5" cy="35" r="5" fill="#F7DC6F" />
</g>
</svg>
Judge's Analysis
Player 2's submission better captures the prompt with a clearer depiction of a giraffe in a spacesuit reaching for a star.
The composition is more detailed and visually appealing, with a distinct pastel galaxy background.
Player 1's image is more abstract, making it harder to discern the elements described in 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
"Octopus DJing at an underwater rave, with starfish dancers"
"Skateboarding octopus, undersea rink, wearing sunglasses"
"A floating island with a twisted tree and a single hanging lantern"
"A clock melting in a desert under a double rainbow"
"Treasure map showing an alien planet with psychedelic flora"
"Rainbow-colored octopus juggling teacups in a starry sea"