Back

SVG Drawing Match #2425

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon blowing bubbles instead of fire."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for dragon body -->
    <linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#4a7cdb"/>
      <stop offset="100%" stop-color="#3b5998"/>
    </linearGradient>
    <!-- Gradient for bubbles -->
    <radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#a0e8ff" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#f0f8ff"/>
  
  <!-- Dragon body (curved shape) -->
  <path d="M100,250 
           Q80,200 120,150
           Q100,130 160,130
           Q150,170 200,140
           Q220,160 180,200
           Q220,250 100,250
           Z" fill="url(#dragonGradient)" stroke="#333" stroke-width="2"/>
  
  <!-- Dragon eye -->
  <circle cx="165" cy="125" r="5" fill="#fff"/>
  <circle cx="165" cy="125" r="2" fill="#000"/>
  
  <!-- Dragon horns -->
  <polygon points="140,120 150,100 130,110" fill="#ffcc00"/>
  <polygon points="180,115 190,95 170,105" fill="#ffcc00"/>
  
  <!-- Dragon nostrils -->
  <circle cx="160" cy="135" r="2" fill="#333"/>
  <circle cx="170" cy="138" r="2" fill="#333"/>
  
  <!-- Bubble stream (descending and ascending bubbles) -->
  <g>
    <!-- Bubbles -->
    <circle cx="150" cy="180" r="4" fill="url(#bubbleGradient)" opacity="0.8">
      <animate attributeName="cx" values="150;160;150" dur="4s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="180;150;180" dur="4s" repeatCount="indefinite"/>
    </circle>
    <circle cx="160" cy="185" r="3" fill="url(#bubbleGradient)" opacity="0.7">
      <animate attributeName="cx" values="160;170;160" dur="3.5s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="185;155;185" dur="3.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="155" cy="190" r="2" fill="url(#bubbleGradient)" opacity="0.6">
      <animate attributeName="cx" values="155;165;155" dur="4.2s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="190;160;190" dur="4.2s" repeatCount="indefinite"/>
    </circle>
    
    <!-- Some ascending bubbles -->
    <circle cx="170" cy="220" r="2.5" fill="url(#bubbleGradient)" opacity="0.8">
      <animate attributeName="cx" values="170;155;170" dur="4.3s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="220;200;220" dur="4.3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="165" cy="210" r="3" fill="url(#bubbleGradient)" opacity="0.75">
      <animate attributeName="cx" values="165;180;165" dur="3.8s" repeatCount="indefinite"/>
      <animate attributeName="cy" values="210;190;210" dur="3.8s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <!-- Artistic metaphor: a subtle rainbow arc to symbolize the bubbles' colorful nature -->
  <path d="M80,180 Q150,250 220,180" stroke="linear-gradient(to right, #fbc02d, #d500f9, #00e5ff)" stroke-width="4" fill="none" opacity="0.3"/>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bubbleGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.9)"/>
      <stop offset="70%" stop-color="rgba(135,206,235,0.6)"/>
      <stop offset="100%" stop-color="rgba(135,206,235,0.2)"/>
    </radialGradient>
    <linearGradient id="dragonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#9933ff"/>
      <stop offset="100%" stop-color="#6600cc"/>
    </linearGradient>
  </defs>
  
  <!-- Dragon Body -->
  <path d="M120,150 C90,140 70,160 60,180 C50,200 70,220 90,210 C110,200 130,190 150,185 C180,178 200,180 220,190 L180,150 C160,130 140,140 120,150Z" fill="url(#dragonGrad)"/>
  
  <!-- Dragon Head -->
  <path d="M220,190 C240,195 250,185 255,175 C260,165 258,155 250,150 C242,145 230,148 225,155 C220,162 215,170 220,190Z" fill="url(#dragonGrad)"/>
  
  <!-- Dragon Eye -->
  <circle cx="240" cy="160" r="5" fill="#ffcc00"/>
  <circle cx="240" cy="160" r="2" fill="#000"/>
  
  <!-- Dragon Spikes -->
  <path d="M120,150 L110,130 L130,145 L140,125 L150,142 L160,122 L170,140 L180,120 L190,138" fill="none" stroke="#9933ff" stroke-width="3"/>
  
  <!-- Bubbles -->
  <g class="bubbles">
    <circle cx="270" cy="170" r="15" fill="url(#bubbleGrad)"/>
    <circle cx="290" cy="155" r="10" fill="url(#bubbleGrad)"/>
    <circle cx="280" cy="185" r="12" fill="url(#bubbleGrad)"/>
    <circle cx="260" cy="150" r="8" fill="url(#bubbleGrad)"/>
    <circle cx="275" cy="140" r="6" fill="url(#bubbleGrad)"/>
    <circle cx="265" cy="190" r="9" fill="url(#bubbleGrad)"/>
  </g>
  
  <!-- Dragon Nostrils -->
  <ellipse cx="255" cy="170" rx="2" ry="3" fill="#4d0099"/>
  <ellipse cx="245" cy="170" rx="2" ry="3" fill="#4d0099"/>
  
  <!-- Dragon Scales -->
  <path d="M100,160 Q110,165 120,160 M110,170 Q120,175 130,170 M120,180 Q130,185 140,180" fill="none" stroke="#b366ff" stroke-width="2"/>
  
  <!-- Small floating bubbles -->
  <circle cx="285" cy="130" r="4" fill="url(#bubbleGrad)">
    <animate attributeName="cy" values="130;120;130" dur="2s" repeatCount="indefinite"/>
  </circle>
  <circle cx="255" cy="135" r="3" fill="url(#bubbleGrad)">
    <animate attributeName="cy" values="135;125;135" dur="1.5s" repeatCount="indefinite"/>
  </circle>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission more effectively adheres to the prompt by depicting a dragon-like creature with clear bubble-blowing action, using vibrant colors and bubbly visual elements.

    While Player 1's image is simple and abstract, it lacks clarity and visual elements that strongly convey the idea of a dragon blowing bubbles.

    Player 2's composition is more creative and visually appealing 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

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
14
Player 2
16
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
1
Player 2
Circles

The number of circle elements (circle) in the SVG.

Player 1
9
Player 2
10
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
Player 2
2
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
2
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
2
Player 2
4
Groups

The number of group elements (g) in the SVG.

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
2
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
6
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
9

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
10
Player 2
2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
9
Player 2
29
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
2
Player 2
2
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

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