Creative Challenge
"A floating castle tethered to clouds with glowing lanterns"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Clouds -->
<mask id="cloud-mask">
<rect x="0" y="0" width="300" height="300" fill="#fff" />
<g transform="translate(100 50)">
<circle cx="0" cy="0" r="50" fill="#fff" />
<circle cx="70" cy="20" r="30" fill="#fff" />
<circle cx="140" cy="40" r="40" fill="#fff" />
</g>
</mask>
<rect x="0" y="0" width="300" height="300" fill="url(#gradient-cloud)" mask="url(#cloud-mask)" />
<!-- Gradient Cloud -->
<linearGradient id="gradient-cloud" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#fff" stop-opacity="0.5" />
<stop offset="1" stop-color="#fff" stop-opacity="0.2" />
</linearGradient>
<!-- Castle -->
<g transform="translate(150 100)">
<rect x="-50" y="-50" width="100" height="100" fill="#fff" rx="10" />
<rect x="-40" y="-40" width="80" height="80" fill="#fff" rx="10" />
<rect x="-30" y="-30" width="60" height="60" fill="#fff" rx="10" />
<rect x="-20" y="-20" width="40" height="40" fill="#fff" rx="10" />
<rect x="-10" y="-10" width="20" height="20" fill="#fff" rx="10" />
<circle cx="0" cy="0" r="10" fill="#fff" />
</g>
<!-- Lanterns -->
<g transform="translate(150 100)">
<g transform="translate(-30 30)">
<circle cx="0" cy="0" r="10" fill="url(#glow)" />
<circle cx="0" cy="0" r="5" fill="#fff" />
</g>
<g transform="translate(30 30)">
<circle cx="0" cy="0" r="10" fill="url(#glow)" />
<circle cx="0" cy="0" r="5" fill="#fff" />
</g>
<g transform="translate(0 60)">
<circle cx="0" cy="0" r="10" fill="url(#glow)" />
<circle cx="0" cy="0" r="5" fill="#fff" />
</g>
</g>
<!-- Glow -->
<radialGradient id="glow" cx="0" cy="0" r="10" fx="0" fy="0">
<stop offset="0" stop-color="#ffd700" stop-opacity="0.8" />
<stop offset="1" stop-color="#ffd700" stop-opacity="0.2" />
</radialGradient>
<!-- Rope -->
<path d="M150 100 C150 150 100 200 50 200" stroke="#fff" stroke-width="2" fill="none" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a1010;stop-opacity:1" />
</linearGradient>
<linearGradient id="castleGradient" x1="0" y1="0" x2="0" y2="100">
<stop offset="0%" style="stop-color:#8b4513;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a2c1e;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Clouds -->
<path d="M50 100 Q70 80, 120 60 L120 60 L150 70 L180 60 L210 70 L230 60 Q250 80, 270 100 L270 100 L270 120 Q250 140, 230 160 L230 160 L210 170 L180 160 L150 170 L120 160 Q70 140, 50 120 L50 120 Z" fill="white" opacity="0.8"/>
<path d="M200 150 Q220 140, 250 130 L250 130 L270 140 L290 130 Q300 140, 310 150 L310 150 L310 170 Q300 180, 290 190 L290 190 L270 200 L250 190 L230 200 Q220 190, 200 180 L200 180 Z" fill="white" opacity="0.8"/>
<!-- Castle -->
<path d="M100 50 L150 30 L200 50 L250 30 L300 50 L300 70 L250 90 L200 70 L150 90 L100 70 L100 50 Z" fill="url(#castleGradient)"/>
<path d="M140 60 L160 40 L180 60 L160 80 Z" fill="url(#castleGradient)"/>
<path d="M220 60 L240 40 L260 60 L240 80 Z" fill="url(#castleGradient)"/>
<!-- Windows -->
<rect x="120" y="35" width="10" height="10" fill="gold"/>
<rect x="160" y="45" width="10" height="10" fill="gold"/>
<rect x="200" y="35" width="10" height="10" fill="gold"/>
<rect x="240" y="45" width="10" height="10" fill="gold"/>
<!-- Lanterns -->
<circle cx="150" cy="110" r="8" fill="yellow" filter="url(#glow)"/>
<circle cx="250" cy="110" r="8" fill="yellow" filter="url(#glow)"/>
<circle cx="200" cy="160" r="12" fill="yellow" filter="url(#glow)"/>
<!-- Ropes -->
<path d="M150 110 Q160 130, 160 150" stroke="brown" stroke-width="2"/>
<path d="M250 110 Q240 130, 240 150" stroke="brown" stroke-width="2"/>
<!-- Floating Clouds -->
<ellipse cx="180" cy="220" rx="40" ry="20" fill="white" opacity="0.5"/>
<ellipse cx="120" cy="240" rx="30" ry="15" fill="white" opacity="0.5"/>
<!-- Ground -->
<path d="M0 280 Q150 290, 300 280" fill="url(#skyGradient)"/>
</svg>
Judge's Analysis
Player 2's image more effectively captures the concept of a floating castle tethered to clouds with glowing lanterns.
The composition includes a discernible castle structure, clouds, and glowing elements, adhering closely to the prompt.
While Player 1's image is minimalistic and abstract, it lacks clear representation of the key elements specified in 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
"Moonlit garden with giant, glowing dandelions"
"Ballet-dancing flamingos in rainbow tutus on a lily pad stage"
"Penguins playing jazz underwater"
"An astronaut watering a sunflower on the moon"
"Cat wearing a crown, lounging on a vintage radio"
"Electric jellyfish with neon sunglasses under a starry sky"