Creative Challenge
"Winged piano on a cloud, playing itself as music notes float away"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cloudGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#E0F7FA" />
<stop offset="100%" stop-color="#B2EBF2" />
</linearGradient>
<linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFEB3B" />
<stop offset="100%" stop-color="#FBC02D" />
</linearGradient>
<radialGradient id="pianoGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#5D4037" />
<stop offset="100%" stop-color="#3E2723" />
</radialGradient>
<pattern id="cloudPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="4" fill="#FFFFFF" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#cloudGradient)" />
<g transform="translate(100, 100)">
<ellipse cx="100" cy="150" rx="120" ry="40" fill="url(#cloudPattern)" />
<rect x="50" y="90" width="100" height="60" rx="10" ry="10" fill="url(#pianoGradient)" />
<rect x="65" y="100" width="10" height="40" fill="#FFFFFF" />
<rect x="85" y="100" width="10" height="40" fill="#000000" />
<rect x="105" y="100" width="10" height="40" fill="#FFFFFF" />
<rect x="125" y="100" width="10" height="40" fill="#000000" />
<path d="M50,130 C30,130 30,110 50,110" fill="#3E2723" />
<path d="M150,130 C170,130 170,110 150,110" fill="#3E2723" />
<path d="M40,90 Q50,50 60,90" fill="url(#wingGradient)" />
<path d="M160,90 Q150,50 140,90" fill="url(#wingGradient)" />
<g transform="translate(100, 80)">
<circle cx="0" cy="0" r="5" fill="#FF5722" />
<circle cx="20" cy="-10" r="5" fill="#FFC107" />
<circle cx="40" cy="-20" r="5" fill="#8BC34A" />
<circle cx="60" cy="-15" r="5" fill="#2196F3" />
<circle cx="80" cy="-5" r="5" fill="#9C27B0" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cloudGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff"/>
<stop offset="100%" style="stop-color:#e0e6ff"/>
</linearGradient>
<linearGradient id="wingGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ffd700"/>
<stop offset="100%" style="stop-color:#ff8c00"/>
</linearGradient>
</defs>
<!-- Cloud base -->
<path d="M50,150 Q100,100 150,120 Q200,90 250,130 Q280,150 250,170 Q220,190 180,180 Q140,200 100,180 Q60,170 50,150" fill="url(#cloudGrad)" filter="url(#shadow)"/>
<!-- Piano body -->
<rect x="80" y="130" width="140" height="60" fill="#1a1a1a" rx="5"/>
<rect x="85" y="135" width="130" height="50" fill="#000000" rx="3"/>
<!-- Piano keys -->
<g fill="#ffffff">
<rect x="90" y="140" width="15" height="40" rx="2"/>
<rect x="110" y="140" width="15" height="40" rx="2"/>
<rect x="130" y="140" width="15" height="40" rx="2"/>
<rect x="150" y="140" width="15" height="40" rx="2"/>
<rect x="170" y="140" width="15" height="40" rx="2"/>
<rect x="190" y="140" width="15" height="40" rx="2"/>
</g>
<!-- Wings -->
<path d="M70,160 Q40,130 60,100 Q80,80 110,90 Q130,100 120,130" fill="url(#wingGrad)"/>
<path d="M230,160 Q260,130 240,100 Q220,80 190,90 Q170,100 180,130" fill="url(#wingGrad)"/>
<!-- Floating music notes -->
<g fill="#4a4a4a">
<path d="M140,80 Q145,75 150,70 L152,90 Q147,95 142,90 Z">
<animate attributeName="opacity" values="1;0" dur="3s" repeatCount="indefinite"/>
<animate attributeName="transform" attributeType="XML" type="translate" from="0 0" to="-50 -50" dur="3s" repeatCount="indefinite"/>
</path>
<path d="M180,100 Q185,95 190,90 L192,110 Q187,115 182,110 Z">
<animate attributeName="opacity" values="1;0" dur="4s" repeatCount="indefinite"/>
<animate attributeName="transform" attributeType="XML" type="translate" from="0 0" to="50 -70" dur="4s" repeatCount="indefinite"/>
</path>
<path d="M200,120 Q205,115 210,110 L212,130 Q207,135 202,130 Z">
<animate attributeName="opacity" values="1;0" dur="2.5s" repeatCount="indefinite"/>
<animate attributeName="transform" attributeType="XML" type="translate" from="0 0" to="30 -40" dur="2.5s" repeatCount="indefinite"/>
</path>
</g>
<!-- Sparkles -->
<g fill="#ffff00">
<circle cx="100" cy="110" r="2">
<animate attributeName="r" values="2;3;2" dur="1s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="100" r="2">
<animate attributeName="r" values="2;3;2" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="90" r="2">
<animate attributeName="r" values="2;3;2" dur="0.8s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt with a clear depiction of a winged piano on a cloud and floating music notes.
The wings are more prominent, and the overall composition is visually appealing with a more cohesive design.
Player 1's image, while creative, lacks clarity in representing the prompt's elements 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
"Melting clock on a floating cloud over a desert. Time drips like raindrops"
"Clock face as a pizza with melting cheese and pepperoni numbers"
"Cosmic octopus juggling planets in a starry sky"
"Surreal cityscape made of floating fruit islands"
"A cactus wearing a tiny sombrero under a starry night sky"
"Lemon riding a skateboard under a rainbow"