Creative Challenge
"Tiny dragon roasting marshmallows on a single matchstick"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="fireGradient">
<stop offset="0%" stop-color="#FF6B6B"/>
<stop offset="100%" stop-color="#FF8E8E"/>
</linearGradient>
<linearGradient id="dragonGradient">
<stop offset="0%" stop-color="#9C27B0"/>
<stop offset="100%" stop-color="#6A1B9A"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="#1A1A1A"/>
<rect x="140" y="150" width="20" height="100" rx="5" fill="#8B4513" stroke="#654321" stroke-width="2"/>
<g transform="translate(140,220)">
<path d="M0,0 L20,0 Q15,10 0,20" fill="#9C27B0" filter="url(#glow)"/>
<path d="M0,20 L20,20 Q15,10 0,0" fill="#6A1B9A" filter="url(#glow)"/>
<circle cx="10" cy="10" r="2" fill="#FF6B6B"/>
<circle cx="10" cy="15" r="2" fill="#FF6B6B"/>
</g>
<g transform="translate(130,160)">
<circle r="15" fill="#FFF" stroke="#FFA726" stroke-width="2"/>
<circle r="12" fill="#FFA726"/>
<circle r="8" fill="#FFF"/>
<circle r="4" fill="#FFA726"/>
</g>
<g transform="translate(150,160)">
<circle r="15" fill="#FFF" stroke="#FFA726" stroke-width="2"/>
<circle r="12" fill="#FFA726"/>
<circle r="8" fill="#FFF"/>
<circle r="4" fill="#FFA726"/>
</g>
<g transform="translate(140,230)">
<path d="M0,0 L20,0 Q10,15 0,30" fill="#FF6B6B" opacity="0.8"/>
<path d="M0,30 L20,30 Q10,15 0,0" fill="#FF8E8E" opacity="0.8"/>
</g>
<rect x="0" y="250" width="300" height="50" rx="25" fill="#FFD39B"/>
<path d="M120,270 Q150,260 180,270" stroke="#FF6B6B" stroke-width="4" fill="none"/>
<path d="M130,275 Q160,265 190,275" stroke="#FF6B6B" stroke-width="3" fill="none"/>
<circle cx="140" cy="280" r="3" fill="#FF6B6B"/>
<circle cx="160" cy="280" r="3" fill="#FF6B6B"/>
<circle cx="180" cy="280" r="3" fill="#FF6B6B"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background gradient -->
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1a1a2e"/>
<stop offset="100%" stop-color="#16213e"/>
</radialGradient>
<!-- Flame gradient -->
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="yellow"/>
<stop offset="50%" stop-color="orange"/>
<stop offset="100%" stop-color="red"/>
</radialGradient>
<!-- Wood grain pattern -->
<pattern id="woodPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#F4A460"/>
<path d="M0,0 L10,10" stroke="#CD853F" stroke-width="0.5"/>
<path d="M10,0 L0,10" stroke="#CD853F" stroke-width="0.5"/>
</pattern>
<!-- Dragon color gradient -->
<linearGradient id="dragonGradient" gradientTransform="rotate(45)">
<stop offset="0%" stop-color="#98fb98"/>
<stop offset="100%" stop-color="#006400"/>
</linearGradient>
<!-- Marshmallow gradient -->
<radialGradient id="marshmallowGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white"/>
<stop offset="100%" stop-color="#f0f0f0"/>
</radialGradient>
<!-- Glow filter for flame -->
<filter id="glow">
<feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)"/>
<!-- Group for the matchstick (rotated and translated) -->
<g transform="translate(50,250) rotate(-45)">
<!-- Match head (flame) -->
<ellipse cx="0" cy="0" rx="12" ry="15" fill="url(#flameGradient)" filter="url(#glow)"/>
<!-- Sparkles around the flame -->
<circle cx="-8" cy="-10" r="2" fill="orange" opacity="0.8"/>
<circle cx="5" cy="-12" r="1.5" fill="yellow" opacity="0.8"/>
<circle cx="-5" cy="8" r="1.2" fill="red" opacity="0.8"/>
<!-- Wooden part of the matchstick -->
<rect x="0" y="-5" width="200" height="10" fill="url(#woodPattern)"/>
<!-- Marshmallow skewered on the matchstick -->
<line x1="5" y1="0" x2="5" y2="-8" stroke="#8B4513" stroke-width="1" stroke-linecap="round"/>
<circle cx="5" cy="-12" r="4" fill="url(#marshmallowGradient)" stroke="#D2B48C" stroke-width="0.5"/>
<!-- Tiny dragon roasting the marshmallow -->
<g transform="translate(10,-20) scale(0.8)">
<!-- Dragon head -->
<circle cx="0" cy="0" r="3" fill="url(#dragonGradient)" stroke="black" stroke-width="0.4"/>
<!-- Dragon eyes -->
<circle cx="-1" cy="-0.5" r="0.5" fill="white"/>
<circle cx="-1" cy="-0.5" r="0.25" fill="black"/>
<circle cx="1" cy="-0.5" r="0.5" fill="white"/>
<circle cx="1" cy="-0.5" r="0.25" fill="black"/>
<!-- Dragon horns -->
<path d="M -2 -2 L -1 -4 L 0 -2 Z" fill="#daa520" stroke="black" stroke-width="0.3"/>
<path d="M 2 -2 L 1 -4 L 0 -2 Z" fill="#daa520" stroke="black" stroke-width="0.3"/>
<!-- Dragon tail (a subtle curve) -->
<path d="M 2,2 C 3,6, 6,6, 7,2" stroke="url(#dragonGradient)" stroke-width="0.5" fill="none" stroke-linecap="round"/>
<!-- Dragon arm reaching toward the marshmallow -->
<line x1="-2" y1="0" x2="-5" y2="8" stroke="black" stroke-width="0.5" stroke-linecap="round"/>
</g>
</g>
</svg>
Judge's Analysis
Player 2's image better adheres to the prompt by depicting a tiny dragon clearly engaging with the flame of a matchstick, capturing the whimsical idea effectively.
The composition is more visually appealing with a clear focus on the interaction between the dragon and the flame.
Player 1's image lacks clarity and coherence in illustrating the prompt, making it less effective overall.
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
"Iceberg shaped like a sleeping cat"
"An octopus wearing a top hat, juggling teacups in an underwater ballroom"
"A snail wearing a top hat and monocle, sipping tea under a mushroom"
"Moonlit jellyfish ballet in a glass globe"
"Whale-shaped cloud raining neon-colored fish"
"Cyborg octopus knitting a galaxy with stars as yarn"