Creative Challenge
"Whale wearing a tuxedo serving tea to penguins"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="whaleGradient">
<stop offset="0%" stop-color="#2B1B2F"/>
<stop offset="100%" stop-color="#1A0F23"/>
</radialGradient>
<linearGradient id="tuxedoGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#1E1E1E"/>
<stop offset="50%" stop-color="#1E1E1E"/>
<stop offset="100%" stop-color="#1A1A1A"/>
</linearGradient>
<pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="40" height="40">
<circle cx="20" cy="20" r="20" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#6B8DD6"/>
<!-- Whale Body -->
<path d="M150,200 Q180,180 210,200 Q240,220 210,240 Q180,260 150,240 Q120,220 150,200" fill="url(#whaleGradient)" stroke="#2B1B2F" stroke-width="2"/>
<!-- Whale Details -->
<rect x="140" y="190" width="20" height="20" rx="10" fill="url(#tuxedoGradient)"/> <!-- Bow Tie -->
<rect x="130" y="170" width="40" height="60" rx="10" fill="url(#tuxedoGradient)"/> <!-- Jacket -->
<!-- Penguin Table -->
<rect x="120" y="250" width="60" height="30" rx="15" fill="#654321"/>
<!-- Penguins -->
<g transform="translate(130,230)">
<path d="M0,0 Q20,-20 40,0 Q60,20 40,40 Q20,60 0,40 Q-20,20 0,0" fill="#333333"/>
<circle cx="20" cy="10" r="5" fill="white"/>
</g>
<g transform="translate(180,230)">
<path d="M0,0 Q20,-20 40,0 Q60,20 40,40 Q20,60 0,40 Q-20,20 0,0" fill="#333333"/>
<circle cx="20" cy="10" r="5" fill="white"/>
</g>
<!-- Teapot -->
<g transform="translate(150,220)">
<rect x="-30" y="-20" width="60" height="60" rx="20" fill="#C0A080"/>
<rect x="-10" y="-40" width="20" height="30" rx="5" fill="#8B6508"/>
<path d="M-30,-20 L30,-20 L20,-40 L-20,-40 Z" fill="#8B6508"/>
</g>
<!-- Tea Cups -->
<g transform="translate(100,240)">
<rect x="0" y="0" width="20" height="30" rx="10" fill="#DEB887"/>
<circle cx="10" cy="15" r="5" fill="white"/>
</g>
<g transform="translate(200,240)">
<rect x="0" y="0" width="20" height="30" rx="10" fill="#DEB887"/>
<circle cx="10" cy="15" r="5" fill="white"/>
</g>
<!-- Waves -->
<path d="M0,280 Q100,260 200,280 Q300,300 300,300 L300,300 L0,300 Z" fill="url(#bubblePattern)"/>
<!-- Background -->
<rect width="300" height="300" fill="url(#bubblePattern)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="whaleGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" style="stop-color:#1a2a6c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#b21f1f;stop-opacity:1" />
</linearGradient>
<linearGradient id="tuxedoGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
<stop offset="100%" style="stop-color:#333333;stop-opacity:1" />
</linearGradient>
<pattern id="teaPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#d4a76a" />
</pattern>
</defs>
<rect width="300" height="300" fill="#87CEEB" />
<ellipse cx="150" cy="100" rx="80" ry="50" fill="url(#whaleGradient)" />
<ellipse cx="150" cy="130" rx="70" ry="40" fill="#ffffff" />
<rect x="80" y="120" width="140" height="60" fill="url(#tuxedoGradient)" rx="10" />
<circle cx="150" cy="90" r="15" fill="#ffffff" />
<circle cx="160" cy="90" r="5" fill="#000000" />
<ellipse cx="150" cy="180" rx="40" ry="20" fill="#ffffff" />
<rect x="140" y="160" width="20" height="40" fill="#d4a76a" />
<rect x="145" y="200" width="10" height="30" fill="#654321" />
<circle cx="150" cy="230" r="15" fill="url(#teaPattern)" />
<circle cx="220" cy="230" r="10" fill="#ffffff" />
<circle cx="220" cy="230" r="5" fill="#000000" />
<circle cx="230" cy="230" r="3" fill="#ffffff" />
<circle cx="80" cy="230" r="10" fill="#ffffff" />
<circle cx="80" cy="230" r="5" fill="#000000" />
<circle cx="90" cy="230" r="3" fill="#ffffff" />
<text x="150" y="290" font-family="Arial" font-size="14" fill="#000000" text-anchor="middle">Whale serving tea to penguins</text>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt by clearly depicting a whale serving tea, with distinct elements representing a tuxedo and penguins.
The composition is clean and understandable, whereas Player 1's image is obscured by the pattern overlay, making it difficult to discern the elements related 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
"Upside-down city with flying fish in the sky"
"Clock face as a bustling city skyline at night"
"Penguin playing violin in a moonlit snowstorm"
"Frog playing a tiny piano under moonlight"
"A snail wearing a top hat races against a hare wearing roller skates"
"Skyscraper made of glowing bananas at sunset"