Creative Challenge
"Socks hanging on tree branches under a rainbow"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow -->
<linearGradient id="rainbow" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC0CB" />
<stop offset="0.4" stop-color="#FFFF00" />
<stop offset="0.6" stop-color="#00FF00" />
<stop offset="0.8" stop-color="#0000FF" />
<stop offset="1" stop-color="#8F00FF" />
</linearGradient>
<rect x="50" y="50" width="200" height="50" fill="url(#rainbow)" rx="25" />
<!-- Tree -->
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="20" fill="#786C3B" />
<circle cx="0" cy="-40" r="15" fill="#786C3B" />
<circle cx="0" cy="-80" r="10" fill="#786C3B" />
<path d="M 0 -120 C -20 -140, 20 -140, 0 -160" stroke="#786C3B" stroke-width="10" fill="none" />
</g>
<!-- Socks -->
<g transform="translate(150, 150)">
<g transform="translate(-60, -100)">
<rect x="-20" y="-20" width="40" height="60" fill="#FFC080" rx="10" />
<path d="M -20 -20 L 20 -20 L 20 -40 L -20 -40 Z" fill="#FFA07A" />
<circle cx="0" cy="-50" r="5" fill="#FFFFFF" />
</g>
<g transform="translate(20, -80)">
<rect x="-20" y="-20" width="40" height="60" fill="#C6E2B5" rx="10" />
<path d="M -20 -20 L 20 -20 L 20 -40 L -20 -40 Z" fill="#87CEEB" />
<circle cx="0" cy="-50" r="5" fill="#FFFFFF" />
</g>
<g transform="translate(-40, -60)">
<rect x="-20" y="-20" width="40" height="60" fill="#FFD7BE" rx="10" />
<path d="M -20 -20 L 20 -20 L 20 -40 L -20 -40 Z" fill="#FFC2C7" />
<circle cx="0" cy="-50" r="5" fill="#FFFFFF" />
</g>
</g>
<!-- Leaves -->
<g transform="translate(150, 150)">
<circle cx="-60" cy="-120" r="10" fill="#32CD32" />
<circle cx="20" cy="-100" r="10" fill="#32CD32" />
<circle cx="-40" cy="-80" r="10" fill="#32CD32" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: red; stop-opacity: 1" />
<stop offset="14%" style="stop-color: orange; stop-opacity: 1" />
<stop offset="29%" style="stop-color: yellow; stop-opacity: 1" />
<stop offset="43%" style="stop-color: green; stop-opacity: 1" />
<stop offset="57%" style="stop-color: cyan; stop-opacity: 1" />
<stop offset="71%" style="stop-color: blue; stop-opacity: 1" />
<stop offset="86%" style="stop-color: violet; stop-opacity: 1" />
<stop offset="100%" style="stop-color: red; stop-opacity: 1" />
</linearGradient>
<pattern id="sockPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#e3e3e3"/>
<circle cx="5" cy="5" r="3" fill="#ff69b4" />
<circle cx="8" cy="8" r="3" fill="#ff69b4" />
</pattern>
</defs>
<rect width="300" height="300" fill="#87cefa" />
<path d="M50 250 Q150 50, 250 250" stroke="saddlebrown" stroke-width="5" fill="none"/>
<path d="M100 250 Q150 200, 200 250" stroke="saddlebrown" stroke-width="5" fill="none"/>
<circle cx="150" cy="50" r="45" fill="url(#rainbowGradient)" />
<path d="M30 150 L60 170 L30 190 Z" fill="url(#sockPattern)" />
<path d="M80 160 L110 180 L80 200 Z" fill="url(#sockPattern)" />
<path d="M130 140 L160 160 L130 180 Z" fill="url(#sockPattern)" />
<path d="M180 130 L210 150 L180 170 Z" fill="url(#sockPattern)" />
<path d="M230 150 L260 170 L230 190 Z" fill="url(#sockPattern)" />
<text x="10" y="290" font-family="Arial" font-size="16" fill="#3b3b3b">Socks hanging under a rainbow</text>
</svg>
Judge's Analysis
Player 2's submission features a more cohesive and clear interpretation of the prompt, with socks visibly hanging from tree branches and a distinct rainbow above.
The composition is well-organized and visually appealing.
Player 1's image, while creative, is less clear in depicting socks and tree branches, and the rainbow is not immediately recognizable, resulting in a less effective adherence 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
"Penguin in a Spacesuit juggling planets"
"Starlit jellyfish conducting an underwater orchestra"
"Dinosaurs drinking tea at a whimsical garden party"
"A steam-powered penguin gliding through a rainbow sky"
"Floating island with giant teapot waterfall, stylized vector"
"A steampunk owl with clockwork wings, gears turning"