Creative Challenge
"Giraffe wearing glasses, reading a book in a floating hot air balloon"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background sky -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="#FFD700" />
<!-- Hot air balloon -->
<path d="M150 120 Q90 160 90 210 Q90 260 150 300 Q150 260 150 210 Q150 160 90 120Z" fill="#FF6347" />
<ellipse cx="120" cy="165" rx="100" ry="30" fill="#FF6347" />
<!-- Giraffe body -->
<ellipse cx="150" cy="180" rx="30" ry="60" fill="#FFD700" />
<!-- Giraffe spots -->
<circle cx="135" cy="160" r="5" fill="#8B4513" />
<circle cx="165" cy="160" r="5" fill="#8B4513" />
<circle cx="150" cy="200" r="5" fill="#8B4513" />
<!-- Giraffe head -->
<circle cx="140" cy="120" r="20" fill="#FFD700" />
<!-- Giraffe glasses -->
<circle cx="132" cy="118" r="8" fill="none" stroke="#000" stroke-width="2" />
<circle cx="148" cy="118" r="8" fill="none" stroke="#000" stroke-width="2" />
<line x1="125" y1="118" x2="115" y2="118" stroke="#000" stroke-width="2" />
<line x1="155" y1="118" x2="165" y2="118" stroke="#000" stroke-width="2" />
<!-- Giraffe neck -->
<rect x="138" y="140" width="4" height="30" fill="#FFD700" />
<!-- Book -->
<rect x="160" y="170" width="40" height="60" fill="#FF6347" />
<rect x="170" y="170" width="3" height="60" fill="#8B4513" />
<line x1="160" y1="170" x2="200" y2="170" stroke="#000" stroke-width="2" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="balloonGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color: #FF7E5F; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #FFC371; stop-opacity: 1" />
</linearGradient>
<pattern id="bookPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="10" height="10" fill="#FFD700" />
<rect x="5" y="5" width="5" height="5" fill="white" />
</pattern>
</defs>
<g transform="translate(150, 150)">
<circle cx="0" cy="-100" r="50" fill="url(#balloonGradient)" />
<rect x="-20" y="-60" width="40" height="20" fill="#C44535" />
<rect x="-10" y="-40" width="20" height="10" fill="#C44535" />
<g transform="translate(0, -120)">
<rect x="-30" y="-10" width="60" height="20" fill="#4A4A4A" />
<rect x="-20" y="-20" width="40" height="10" fill="#4A4A4A" />
<rect x="-15" y="-30" width="30" height="10" fill="#4A4A4A" />
<rect x="-10" y="-40" width="20" height="10" fill="#4A4A4A" />
<rect x="-5" y="-50" width="10" height="10" fill="#4A4A4A" />
<circle cx="0" cy="0" r="50" fill="#FFFFFF" />
</g>
<g transform="translate(0, -80)">
<rect x="-30" y="0" width="60" height="10" fill="url(#bookPattern)" />
<rect x="-25" y="10" width="50" height="50" fill="url(#bookPattern)" />
</g>
<g transform="translate(-40, -60)">
<path d="M0,0 Q-20,-10 -30,0" stroke="#000000" stroke-width="2" fill="none" />
<path d="M0,0 Q20,-10 30,0" stroke="#000000" stroke-width="2" fill="none" />
<ellipse cx="0" cy="0" rx="20" ry="10" fill="#FFD700" />
<rect x="-10" y="5" width="20" height="10" fill="#000000" />
</g>
<g transform="translate(40, -60)">
<path d="M0,0 Q-20,-10 -30,0" stroke="#000000" stroke-width="2" fill="none" />
<path d="M0,0 Q20,-10 30,0" stroke="#000000" stroke-width="2" fill="none" />
<ellipse cx="0" cy="0" rx="20" ry="10" fill="#FFD700" />
<rect x="-10" y="5" width="20" height="10" fill="#000000" />
</g>
<g transform="translate(0, -40)">
<ellipse cx="0" cy="0" rx="20" ry="10" fill="#FFD700" />
<circle cx="-10" cy="0" r="5" fill="#000000" />
<circle cx="10" cy="0" r="5" fill="#000000" />
<rect x="-15" y="10" width="30" height="5" fill="#000000" />
</g>
<g transform="translate(0, 30)">
<rect x="-30" y="-20" width="60" height="40" fill="#FFFFFF" />
<rect x="-25" y="-15" width="50" height="30" fill="#FFD700" />
<rect x="-15" y="-10" width="30" height="20" fill="#FFFFFF" />
<rect x="-10" y="-5" width="20" height="10" fill="#FFD700" />
<rect x="-5" y="0" width="10" height="5" fill="#FFFFFF" />
</g>
<g transform="translate(0, 100)">
<rect x="-20" y="-10" width="40" height="20" fill="#FFFFFF" />
<rect x="-15" y="-5" width="30" height="10" fill="#FFD700" />
</g>
</g>
</svg>
Judge's Analysis
Player 1's submission more clearly represents a giraffe with glasses, and the inclusion of a book aligns well with the prompt.
The floating hot air balloon is abstract but still identifiable, contributing to a more cohesive and visually appealing design.
In contrast, Player 2's image is less clear in its depiction of the giraffe and the hot air balloon elements, making it less effective in adhering 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
"Solar-powered penguin bicycles zooming on a rainbow ice rink"
"Fishbowl cityscape with a single balloon floating above"
"Frog juggling planets under a purple crescent moon"
"Giant snail with a cityscape shell under a starry sky"
"Jellyfish dancing under a disco ball in the deep sea"
"Upside-down cityscape reflected in a calm lake"