Creative Challenge
"A dragon and a knight sharing an umbrella in the rain."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#4e54c8"/>
<stop offset="100%" stop-color="#8f94fb"/>
</linearGradient>
<linearGradient id="grassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#a8ff78"/>
<stop offset="100%" stop-color="#78ffd6"/>
</linearGradient>
<radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ff9900"/>
<stop offset="100%" stop-color="#ff5e00"/>
</radialGradient>
<pattern id="rainPattern" x="0" y="0" width="5" height="10" patternUnits="userSpaceOnUse">
<line x1="2.5" y1="0" x2="2.5" y2="10" stroke="#a9a9a9" stroke-width="1" stroke-linecap="round"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<rect x="0" y="250" width="300" height="50" fill="url(#grassGradient)"/>
<rect x="0" y="0" width="300" height="300" fill="url(#rainPattern)"/>
<!-- Umbrella -->
<path d="M 150 120 A 80 80 0 0 1 70 120 L 150 180 Z M 150 120 A 80 80 0 0 0 230 120 L 150 180 Z" fill="url(#umbrellaGradient)"/>
<line x1="150" y1="180" x2="150" y2="240" stroke="#5a2d1a" stroke-width="5" stroke-linecap="round"/>
<circle cx="150" cy="245" r="5" fill="#5a2d1a"/>
<!-- Dragon -->
<g transform="translate(80, 180)">
<path d="M 50 0 C 70 20 70 60 50 80 S 30 80 10 60 S 10 20 30 0 Z" fill="#3cb371"/> <!-- Body -->
<path d="M 50 0 Q 60 -20 70 -20 T 80 0" fill="#3cb371"/> <!-- Head -->
<circle cx="75" cy="-15" r="3" fill="#000"/> <!-- Eye -->
<path d="M 80 0 C 90 10 90 30 80 40" fill="#3cb371"/> <!-- Neck -->
<path d="M 30 0 Q 20 -10 10 -10" fill="#3cb371"/> <!-- Snout -->
<path d="M 60 40 C 70 50 80 50 90 40 Q 80 30 70 30 Z" fill="#3cb371"/> <!-- Wing -->
</g>
<!-- Knight -->
<g transform="translate(180, 190)">
<path d="M 50 0 C 70 20 70 60 50 80 S 30 80 10 60 S 10 20 30 0 Z" fill="#a9a9a9"/> <!-- Body -->
<path d="M 50 0 Q 60 -20 70 -20 T 80 0" fill="#a9a9a9"/> <!-- Helmet -->
<rect x="72" y="-18" width="6" height="6" fill="#000"/> <!-- Visor slit -->
<path d="M 80 0 C 90 10 90 30 80 40" fill="#a9a9a9"/> <!-- Neck -->
</g>
<text x="150" y="280" text-anchor="middle" font-family="Arial, sans-serif" font-size="10" fill="#fff">Unlikely Companions</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#4a69bd" />
<stop offset="100%" stop-color="#60a3bc" />
</radialGradient>
<linearGradient id="dragonScales" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#2c3e50" />
<stop offset="50%" stop-color="#182848" />
<stop offset="100%" stop-color="#2c3e50" />
</linearGradient>
<pattern id="raindrops" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="1" fill="#a4b0be" opacity="0.7"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#f1f2f6" />
<rect width="300" height="300" fill="url(#raindrops)" />
<path d="M100 50a50 50 0 0 1 100 0z" fill="url(#umbrellaGradient)" stroke="#34495e" stroke-width="2"/>
<path d="M150 50L150 100" stroke="#34495e" stroke-width="3"/>
<g transform="translate(50,100)">
<ellipse cx="40" cy="50" rx="30" ry="40" fill="#e67e22" stroke="#d35400" stroke-width="2"/>
<path d="M70 50c20 20 50 20 70 0" fill="none" stroke="#d35400" stroke-width="5"/>
<circle cx="30" cy="40" r="5" fill="white"/>
<circle cx="50" cy="40" r="5" fill="white"/>
</g>
<g transform="translate(150,100)">
<path d="M0 50c30 30 60 20 90 -10l-20 -30c-10 10 -30 0 -40 -20l-30 10zM10 80c20 10 40 -10 50 -30" fill="url(#dragonScales)" stroke="#2c3e50" stroke-width="2"/>
<ellipse cx="10" cy="60" rx="8" ry="10" fill="#f39c12" stroke="#e67e22" stroke-width="2"/>
<ellipse cx="30" cy="70" rx="8" ry="10" fill="#f39c12" stroke="#e67e22" stroke-width="2"/>
</g>
</svg>
Judge's Analysis
Player 1's submission better adheres to the prompt by clearly depicting a dragon and a knight under a shared umbrella in a rainy setting.
While the composition is simple, it effectively conveys the scene with distinguishable characters and rain elements.
Player 2's submission is less clear in representing a dragon, knight, or the rain, making it less aligned with 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.