Creative Challenge
"Giraffe in a business suit juggling planets at sunrise"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunrise" x1="0%" y1="100%" x2="0%" y2="0%">
<stop offset="0%" style="stop-color:#8A2BE2;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sunrise)"/>
<!-- Giraffe Body -->
<path d="M150 200 Q130 220 150 240 Q170 220 150 200" fill="#2C3E50" stroke="#1A252F" stroke-width="2"/>
<!-- Neck and Head -->
<rect x="140" y="160" width="20" height="40" rx="10" fill="#2C3E50" stroke="#1A252F" stroke-width="2"/>
<circle cx="150" cy="145" r="15" fill="#2C3E50" stroke="#1A252F" stroke-width="2"/>
<!-- Eyes -->
<circle cx="145" cy="145" r="3" fill="#ECF0F1"/>
<circle cx="155" cy="145" r="3" fill="#ECF0F1"/>
<!-- Suit -->
<rect x="140" y="180" width="20" height="60" rx="5" fill="#2980B9" stroke="#1A252F" stroke-width="2"/>
<path d="M145 185 Q145 175 155 175 Q155 185 145 185" fill="#E74C3C" stroke="#1A252F" stroke-width="2"/>
<!-- Legs -->
<rect x="145" y="240" width="10" height="40" rx="5" fill="#2C3E50" stroke="#1A252F" stroke-width="2"/>
<rect x="155" y="240" width="10" height="40" rx="5" fill="#2C3E50" stroke="#1A252F" stroke-width="2"/>
<!-- Planets -->
<g transform="translate(150,120)">
<circle r="30" fill="url(#planet1)" transform="rotate(45)"/>
<circle r="20" fill="url(#planet2)" transform="rotate(-45)"/>
<circle r="15" fill="url(#planet3)"/>
</g>
<!-- Orbits -->
<ellipse cx="150" cy="120" rx="40" ry="20" stroke="#2C3E50" fill="none" stroke-width="2" transform="rotate(30)"/>
<ellipse cx="150" cy="120" rx="60" ry="30" stroke="#2C3E50" fill="none" stroke-width="2" transform="rotate(-30)"/>
<defs>
<linearGradient id="planet1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#27AE60;stop-opacity:1" />
<stop offset="100%" style="stop-color:#3498DB;stop-opacity:1" />
</linearGradient>
<linearGradient id="planet2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#E67E22;stop-opacity:1" />
<stop offset="100%" style="stop-color:#9B59B6;stop-opacity:1" />
</linearGradient>
<linearGradient id="planet3" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#F1C40F;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E74C3C;stop-opacity:1" />
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunriseGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:rgb(255,124,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,247,153);stop-opacity:1" />
</linearGradient>
<radialGradient id="planetGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" style="stop-color:rgb(255,0,150);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,150,255);stop-opacity:1" />
</radialGradient>
<pattern id="suitPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="rgb(34,34,60)" />
<circle cx="5" cy="5" r="2" fill="rgb(255,255,255)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#sunriseGradient)" />
<g transform="translate(150,250)">
<rect x="-25" y="-75" width="50" height="50" fill="url(#suitPattern)" />
<path d="M-25 -25 L0 -75 L25 -25 Z" fill="gray" />
<path d="M-15 -75 Q-10 -100 0 -100 Q10 -100 15 -75" fill="orange" />
<circle cx="0" cy="-105" r="8" fill="orange" />
<g transform="rotate(20)">
<ellipse cx="0" cy="0" rx="5" ry="15" fill="orange" />
<circle cx="0" cy="-17" r="3" fill="orange" />
</g>
<circle cx="-50" cy="-125" r="12" fill="url(#planetGradient)" />
<circle cx="50" cy="-135" r="14" fill="url(#planetGradient)" />
<circle cx="0" cy="-160" r="10" fill="url(#planetGradient)" />
</g>
<g transform="translate(0,0)">
<ellipse cx="100" cy="250" rx="80" ry="20" fill="rgba(0,0,0,0.2)" />
</g>
</svg>
Judge's Analysis
Player 2's image better captures the essence of the prompt with a clear depiction of a figure in a business suit juggling planets, set against a vibrant sunrise background.
The composition effectively combines elements to represent both the giraffe and the planetary theme.
Player 1's submission, while colorful, lacks clear representation of the prompt's key elements such as the giraffe and planets.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"