Creative Challenge
"A zebra wearing a suit, reading a newspaper, in cubist style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="suitGradient">
<stop offset="0%" stop-color="#2c3e50"/>
<stop offset="100%" stop-color="#34495e"/>
</linearGradient>
<pattern id="zebraPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0 0 L10 0 L5 10 L0 0" fill="#000"/>
</pattern>
<linearGradient id="newspaperGradient">
<stop offset="0%" stop-color="#f5f6fa"/>
<stop offset="100%" stop-color="#95a5a6"/>
</linearGradient>
</defs>
<g transform="translate(150,150)">
<!-- Body -->
<rect x="-50" y="-60" width="100" height="120" fill="url(#suitGradient)" rx="10"/>
<!-- Zebra Stripes -->
<rect x="-45" y="-55" width="90" height="110" fill="url(#zebraPattern)" opacity="0.3"/>
<!-- Head -->
<rect x="-20" y="-80" width="40" height="40" rx="10" fill="#2c3e50"/>
<rect x="-35" y="-75" width="20" height="30" rx="5" fill="#ecf0f1"/>
<!-- Eyes -->
<circle cx="-20" cy="-75" r="3" fill="#2c3e50"/>
<circle cx="-5" cy="-75" r="3" fill="#2c3e50"/>
<!-- Nose -->
<rect x="-12" y="-78" width="6" height="4" rx="2" fill="#ecf0f1"/>
<!-- Ears -->
<rect x="-30" y="-90" width="10" height="15" rx="5" transform="rotate(45 -20 -85)" fill="#2c3e50"/>
<rect x="10" y="-90" width="10" height="15" rx="5" transform="rotate(-45 20 -85)" fill="#2c3e50"/>
<!-- Arms -->
<rect x="-60" y="-40" width="20" height="40" rx="5" fill="#2c3e50"/>
<rect x="40" y="-40" width="20" height="40" rx="5" fill="#2c3e50"/>
<!-- Hands -->
<rect x="-65" y="-35" width="10" height="20" rx="3" fill="#ecf0f1"/>
<rect x="45" y="-35" width="10" height="20" rx="3" fill="#ecf0f1"/>
<!-- Legs -->
<rect x="-25" y="40" width="20" height="60" rx="5" fill="#2c3e50"/>
<rect x="5" y="40" width="20" height="60" rx="5" fill="#2c3e50"/>
<!-- Newspaper -->
<rect x="20" y="20" width="60" height="40" rx="8" fill="url(#newspaperGradient)" transform="rotate(30 50 30)"/>
<rect x="30" y="30" width="40" height="20" rx="5" fill="#2c3e50" transform="rotate(30 40 40)"/>
<!-- Tie -->
<path d="M-10 -35 L10 -35 L5 -45 L-5 -45 L-10 -35" fill="#e74c3c"/>
<!-- Face Details -->
<rect x="-15" y="-70" width="30" height="10" rx="3" fill="#ecf0f1"/>
<rect x="-10" y="-65" width="20" height="5" rx="2" fill="#2c3e50"/>
<!-- Shadow -->
<rect x="-60" y="60" width="120" height="20" rx="10" fill="#2c3e50" opacity="0.2"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="zebraGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: white; stop-opacity: 1"/>
<stop offset="50%" style="stop-color: black; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: white; stop-opacity: 1"/>
</linearGradient>
<linearGradient id="newspaperGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: #f5f5dc; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #d3d3d3; stop-opacity: 1"/>
</linearGradient>
</defs>
<polygon points="150,50 200,100 150,150 100,100" fill="url(#zebraGradient)" />
<rect x="130" y="80" width="40" height="40" fill="url(#newspaperGradient)" />
<path d="M120,70 L160,70 Q140,50 150,40 Q160,30 180,50 L180,70" fill="black" />
<path d="M170,90 L150,110 L130,90 Z" fill="black" />
<path d="M140,120 L160,120 Q150,130 150,140 Q150,150 160,160 L140,160 Z" fill="black" />
<path d="M150,170 L150,200 Q160,180 170,170 Q180,160 190,170 L190,200 Q180,180 170,170 Z" fill="black" />
<path d="M100,100 L100,150 Q90,120 100,110 Q110,100 120,110 L120,150 Q110,130 100,120 Z" fill="black" />
<path d="M200,100 L200,150 Q210,120 200,110 Q190,100 180,110 L180,150 Q190,130 200,120 Z" fill="black" />
<path d="M150,210 L170,210 Q160,220 160,230 Q160,240 170,250 L150,250 Z" fill="black" />
</svg>
Judge's Analysis
Player 1's submission adheres more closely to the prompt by incorporating distinct cubist elements and recognizable forms like the newspaper and suit shape.
The use of geometric shapes aligns with the cubist style, and the overall composition is more engaging and visually complex.
Player 2's image lacks these elements and does not clearly represent the zebra or the cubist style as effectively.
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
"Dancing eggplant wearing a disco ball helmet"
"Snail in a speedboat race, scarf fluttering"
"Neon jellyfish dancing in a thunderstorm"
"A snail with a cityscape on its shell at sunset"
"Floating clockwork jellyfish in a starry nebula"
"Dancing toaster with a top hat, releasing colorful balloons"