Creative Challenge
"Frog astronaut playing guitar on a lily pad in space"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Space -->
<rect x="0" y="0" width="300" height="300" fill="black" />
<!-- Stars -->
<circle cx="30" cy="50" r="1" fill="white" />
<circle cx="270" cy="100" r="1" fill="white" />
<circle cx="200" cy="200" r="1" fill="white" />
<!-- More stars would be needed to fill the space -->
<!-- Planet -->
<circle cx="150" cy="150" r="70" fill="darkblue" />
<!-- Craters on the Planet -->
<circle cx="120" cy="140" r="7" fill="gray" />
<circle cx="160" cy="160" r="5" fill="gray" />
<!-- Lily Pad -->
<ellipse cx="150" cy="180" rx="60" ry="30" fill="lightgreen" />
<!-- Frog Astronaut -->
<circle cx="150" cy="140" r="15" fill="green" />
<ellipse cx="150" cy="150" rx="20" ry="10" fill="green" />
<circle cx="143" cy="137" r="2" fill="white" />
<circle cx="157" cy="137" r="2" fill="white" />
<path d="M148 147 Q150 160 152 147" stroke="white" stroke-width="1" fill="none" />
<!-- Space Helmet -->
<ellipse cx="150" cy="136" rx="18" ry="12" fill="silver" />
<circle cx="142" cy="133" r="4" fill="black" />
<circle cx="158" cy="133" r="4" fill="black" />
<!-- Guitar -->
<rect x="140" y="155" width="20" height="60" fill="brown" />
<polygon points="143,155 163,155 160,125 146,125" fill="brown" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#000020"/>
<stop offset="100%" stop-color="#000040"/>
</radialGradient>
<radialGradient id="lilyPadGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#2a5934"/>
<stop offset="100%" stop-color="#1a3a23"/>
</radialGradient>
<radialGradient id="frogSkinGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#8fd400"/>
<stop offset="100%" stop-color="#5a9a00"/>
</radialGradient>
<radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.7"/>
<stop offset="100%" stop-color="#ffffff" stop-opacity="0.1"/>
</radialGradient>
<linearGradient id="nebulaGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff7f3f" stop-opacity="0.5"/>
<stop offset="50%" stop-color="#ff3f7f" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#7f3fff" stop-opacity="0.5"/>
</linearGradient>
<pattern id="starsPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white"/>
<circle cx="8" cy="6" r="1" fill="white"/>
<circle cx="4" cy="9" r="1" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<circle cx="50" cy="250" r="40" fill="url(#lilyPadGradient)" stroke="#2a5934" stroke-width="2"/>
<ellipse cx="50" cy="250" rx="40" ry="15" fill="url(#lilyPadGradient)" opacity="0.7"/>
<circle cx="150" cy="50" r="40" fill="url(#nebulaGradient)" opacity="0.7"/>
<circle cx="250" cy="150" r="30" fill="url(#nebulaGradient)" opacity="0.7"/>
<circle cx="150" cy="250" r="60" fill="url(#starsPattern)"/>
<g transform="translate(28, 180)">
<ellipse cx="50" cy="70" rx="15" ry="20" fill="url(#frogSkinGradient)"/>
<ellipse cx="90" cy="95" rx="7" ry="14" fill="url(#frogSkinGradient)"/>
<ellipse cx="10" cy="95" rx="7" ry="14" fill="url(#frogSkinGradient)"/>
<circle cx="50" cy="50" r="30" fill="url(#frogSkinGradient)"/>
<ellipse cx="65" cy="40" rx="5" ry="10" fill="#fff" stroke="#000" stroke-width="1"/>
<ellipse cx="35" cy="40" rx="5" ry="10" fill="#fff" stroke="#000" stroke-width="1"/>
<circle cx="65" cy="40" r="2" fill="#000"/>
<circle cx="35" cy="40" r="2" fill="#000"/>
<path d="M40 60 C45 65, 55 65, 60 60" fill="#eee"/>
<circle cx="50" cy="50" r="40" fill="url(#helmetGradient)" stroke="#fff" stroke-width="2" opacity="0.9"/>
<path d="M30 75 Q50 55, 70 75" fill="none" stroke="#8d5536" stroke-width="3"/>
<line x1="30" y1="75" x2="70" y2="75" stroke="#8d5536" stroke-width="3"/>
<polygon points="50,75 55,85 45,85" fill="#5c3323" opacity="0.7"/>
</g>
</svg>
Judge's Analysis
Player 2's image is more visually detailed and creative, capturing the essence of a frog astronaut with clear elements like a helmet and a more defined space background.
While both images are abstract, Player 2's submission better adheres to the prompt with recognizable components, enhancing the overall 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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"
"Rabbit astronaut exploring a donut-shaped planet"