Creative Challenge
"A dragon blowing bubbles instead of fire."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="dragonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8E8E;stop-opacity:1" />
</linearGradient>
<linearGradient id="bubbleGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#A1C4FD;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#8FB3D5;stop-opacity:0.8" />
</linearGradient>
<filter id="bubbleFilter">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Dragon Body -->
<path d="M50,200 c30,0 55,-10 70,-25 15,-15 20,-40 20,-50 0,-10 -5,-20 -20,-30 -15,-10 -25,-25 -35,-35 -10,-5 -20,-10 -30,-10 -20,0 -25,20 -15,40 5,10 25,15 40,15 15,0 30,-5 45,-10 15,-5 25,-15 30,-25 5,-10 5,-20 0,-25 -5,-5 -15,-5 -30,0 -15,5 -25,15 -30,30 -5,15 10,30 20,35 5,5 15,5 30,0 25,-20 30,-50 25,-50 -5,-20 -15,-30 -30,-30 -20,0 -25,20 -15,50 5,20 15,30 30,30 15,0 25,-10 35,-20 10,-5 20,-15 25,-25 5,-10 10,-20 15,-25 5,-5 10,-10 20,-10 15,0 25,10 35,20 10,5 20,10 25,15 5,5 15,10 30,10 20,0 40,-10 50,-20 l0,0" fill="url(#dragonGrad)"/>
<!-- Dragon Head -->
<path d="M120,150 c5,0 10,5 10,10 0,5 -5,10 -10,10 -5,0 -10,-5 -10,-10 0,-5 5,-10 10,-10z" fill="#fff"/>
<circle cx="125" cy="145" r="3" fill="#000"/>
<path d="M115,155 c5,0 10,-5 10,-10 0,-5 -5,-10 -10,-10 -5,0 -10,5 -10,10 0,5 5,10 10,10z" fill="url(#dragonGrad)"/>
<!-- Bubbles -->
<symbol id="bubble">
<circle r="15" fill="url(#bubbleGrad)" filter="url(#bubbleFilter)"/>
</symbol>
<use href="#bubble" x="140" y="130" transform="scale(1.5)"/>
<use href="#bubble" x="160" y="120" transform="scale(1)"/>
<use href="#bubble" x="180" y="110" transform="scale(0.8)"/>
<use href="#bubble" x="200" y="100" transform="scale(0.6)"/>
<use href="#bubble" x="220" y="90" transform="scale(0.4)"/>
<!-- Background -->
<rect width="300" height="300" fill="gradient(#87CEEB, #E0F6FF)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision">
<defs>
<radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%">
<stop offset="20%" stop-color="#a8e0ff" stop-opacity="0.9" />
<stop offset="100%" stop-color="#78b9ff" stop-opacity="0.3" />
</radialGradient>
<radialGradient id="bubbleHighlight" cx="30%" cy="30%" r="40%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.8" />
<stop offset="100%" stop-color="#9cdcff" stop-opacity="0" />
</radialGradient>
<linearGradient id="dragonScale1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff5f6d" />
<stop offset="100%" stop-color="#ffc371" />
</linearGradient>
<linearGradient id="dragonScale2" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffa69e" />
<stop offset="100%" stop-color="#861657" />
</linearGradient>
<linearGradient id="dragonBody" x1="0" y1="0" x2="1" y2="1">
<stop offset="10%" stop-color="#a83279" />
<stop offset="50%" stop-color="#bd3e82" />
<stop offset="90%" stop-color="#7c224e" />
</linearGradient>
<filter id="bubbleGlow" x="-50%" y="-50%" width="200%" height="200%" color-interpolation-filters="sRGB">
<feDropShadow dx="0" dy="0" stdDeviation="1" flood-color="#88d1ff" flood-opacity="0.7"/>
<feDropShadow dx="0" dy="0" stdDeviation="2" flood-color="#a8e7ff" flood-opacity="0.5"/>
</filter>
<filter id="dragonShadow" x="-20%" y="-20%" width="140%" height="140%" color-interpolation-filters="sRGB" >
<feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#25000a" flood-opacity="0.8"/>
</filter>
<pattern id="scalesPattern" x="0" y="0" width="20" height="18" patternUnits="userSpaceOnUse" patternTransform="rotate(30)">
<path d="M10 0 Q5 10 10 18 Q15 10 10 0Z" fill="url(#dragonScale1)" stroke="#7e1a3a" stroke-width="0.3" />
</pattern>
<pattern id="scalesPatternAlt" x="0" y="0" width="20" height="18" patternUnits="userSpaceOnUse" patternTransform="rotate(25)">
<path d="M10 0 Q5 10 10 18 Q15 10 10 0Z" fill="url(#dragonScale2)" stroke="#5e1231" stroke-width="0.3" />
</pattern>
</defs>
<!-- Background gradient sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<radialGradient id="skyGradient" cx="50%" cy="130%" r="80%" fx="50%" fy="130%">
<stop offset="0%" stop-color="#0d1e4a"/>
<stop offset="100%" stop-color="#0a0f27"/>
</radialGradient>
<!-- Ground abstract -->
<ellipse cx="150" cy="275" rx="180" ry="45" fill="url(#groundGradient)" filter="url(#dragonShadow)" />
<linearGradient id="groundGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#4c1d1b" />
<stop offset="100%" stop-color="#1b0a0a" />
</linearGradient>
<!-- Dragon body -->
<g filter="url(#dragonShadow)">
<path id="dragonBodyPath" fill="url(#dragonBody)" stroke="#5f1a3a" stroke-width="1.5"
d="
M90 150
c 40 -50 140 -50 130 20
c -5 25 -15 40 -50 50
c -20 5 -40 0 -50 -20
c -13 -30 -20 -25 -30 -50
z" />
<!-- Overlay scales patterns on dragon body -->
<path d="M90 150
c 40 -50 140 -50 130 20
c -5 25 -15 40 -50 50
c -20 5 -40 0 -50 -20
c -13 -30 -20 -25 -30 -50
z" fill="url(#scalesPattern)" opacity="0.6" />
<path d="M115 165
c 30 -35 115 -35 105 10
c -4 18 -13 30 -40 38
c -15 4 -30 0 -38 -14
c -10 -22 -15 -18 -20 -34
z" fill="url(#scalesPatternAlt)" opacity="0.3" />
</g>
<!-- Dragon tail curled -->
<path fill="url(#dragonBody)" stroke="#5f1a3a" stroke-width="1.3"
d="M 85 150 q -35 40 -15 80 q 15 20 40 10 q 15 -15 10 -40 q -5 -20 -35 -30" filter="url(#dragonShadow)"/>
<!-- Dragon wing stylized translucent -->
<g filter="url(#dragonShadow)">
<path d="M140 105
q 40 -40 80 5
q -15 45 -75 45
q -20 -20 -20 -50
z" fill="url(#wingGradient)" stroke="#91183a" stroke-width="1.5" />
</g>
<linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff7a9b" stop-opacity="0.7"/>
<stop offset="100%" stop-color="#a83067" stop-opacity="0.3"/>
</linearGradient>
<!-- Dragon head -->
<g filter="url(#dragonShadow)">
<ellipse cx="90" cy="150" rx="25" ry="18" fill="url(#dragonBody)" stroke="#5f1a3a" stroke-width="1.5" />
<path d="M75 142 q12 -15 25 0" fill="#7a2040" />
<!-- Eyes -->
<ellipse cx="78" cy="147" rx="5" ry="8" fill="white" />
<circle cx="80" cy="148" r="3" fill="#4d0a2f" />
<circle cx="81" cy="147" r="1.5" fill="#eeffff" filter="url(#bubbleGlow)" />
<!-- Snout -->
<path d="M105 153 q20 12 30 18 q6 4 2 12 q-7 4 -10 1 q-10 -5 -8 -7 q-10 -5 -14 -10 q-4 -5 0 -16 z"
fill="url(#dragonBody)" stroke="#5f1a3a" stroke-width="1" />
</g>
<!-- Mouth open with bubble pipe -->
<path d="M110 170 q15 4 30 -8" stroke="#b1587b" stroke-width="5" stroke-linecap="round" fill="none" />
<!-- Bubble blowing pipe resembling tongue -->
<path d="M116 168 q10 10 22 -8" stroke="#ff91b3" stroke-width="3" stroke-linecap="round" fill="none" />
<!-- Bubbles coming out -->
<g filter="url(#bubbleGlow)">
<circle cx="145" cy="155" r="12" fill="url(#bubbleGradient)" />
<circle cx="165" cy="140" r="9" fill="url(#bubbleGradient)" />
<circle cx="185" cy="125" r="15" fill="url(#bubbleGradient)" />
<circle cx="205" cy="115" r="7" fill="url(#bubbleGradient)" />
<circle cx="225" cy="110" r="10" fill="url(#bubbleGradient)" />
<!-- Bubble highlights -->
<circle cx="143" cy="152" r="6" fill="url(#bubbleHighlight)" />
<circle cx="163" cy="137" r="5" fill="url(#bubbleHighlight)" />
<circle cx="183" cy="122" r="8" fill="url(#bubbleHighlight)" />
<circle cx="203" cy="112" r="4" fill="url(#bubbleHighlight)" />
<circle cx="223" cy="108" r="6" fill="url(#bubbleHighlight)" />
</g>
<!-- Fine detail veins on wings -->
<g stroke="#7f1944" stroke-width="0.7" stroke-linecap="round" opacity="0.5">
<line x1="150" y1="105" x2="180" y2="140"/>
<line x1="160" y1="100" x2="200" y2="130"/>
<line x1="170" y1="110" x2="210" y2="140"/>
<line x1="140" y1="115" x2="190" y2="160"/>
<line x1="130" y1="120" x2="175" y2="170"/>
</g>
<!-- Dragon horn with gradient -->
<path d="M70 138 l-15 -20 l8 -5 l13 23 z" fill="url(#hornGradient)" stroke="#3a0928" stroke-width="1" />
<linearGradient id="hornGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffa8a8" />
<stop offset="100%" stop-color="#6c0733" />
</linearGradient>
<!-- Subtle texture dots on dragon neck -->
<circle cx="110" cy="170" r="1.5" fill="#bd3e82" opacity="0.7" />
<circle cx="105" cy="175" r="1.2" fill="#bd3e82" opacity="0.6" />
<circle cx="98" cy="160" r="1" fill="#bd3e82" opacity="0.5" />
<circle cx="115" cy="165" r="1.7" fill="#e363a9" opacity="0.75" />
<circle cx="120" cy="170" r="0.9" fill="#7c224e" opacity="0.4" />
<!-- Small whimsical bubbles around dragon's body -->
<g filter="url(#bubbleGlow)" opacity="0.4">
<circle cx="130" cy="185" r="6" fill="url(#bubbleGradient)" />
<circle cx="105" cy="190" r="4" fill="url(#bubbleGradient)" />
<circle cx="140" cy="200" r="5" fill="url(#bubbleGradient)" />
</g>
</svg>
Judge's Analysis
Player 2's submission is more visually appealing and adheres better to the prompt by depicting a dragon-like figure blowing bubbles in a colorful and creative manner.
The use of vibrant colors, smooth gradients, and expressive design makes it more engaging compared to Player 1's minimalist and overly abstract representation, which lacks clarity and visual detail.
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.