Back

SVG Drawing Match #2255

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon blowing bubbles instead of fire."

SVG by Gemini 2.5 Flash Preview High 04-17
<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%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ADD8E6;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6347;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA07A;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%" fx="60%" fy="40%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ADD8E6;stop-opacity:0.4" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <g id="dragon">
    <path d="M50 200 C 80 150 150 150 180 200 C 170 230 100 250 50 200 Z" fill="url(#dragonGradient)">
      <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="5 -5" dur="5s" repeatCount="indefinite" />
    </path>
    <circle cx="60" cy="180" r="15" fill="#FFB6C1" />
    <ellipse cx="70" cy="175" rx="5" ry="3" fill="#000000" />
    <path d="M 180 200 Q 200 150 250 170 L 230 220 Z" fill="url(#dragonGradient)">
      <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 200 200" to="5 200 200" dur="3s" repeatCount="indefinite" />
    </path>
    <path d="M 180 200 Q 200 250 250 230 L 230 180 Z" fill="url(#dragonGradient)">
        <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 200 200" to="-5 200 200" dur="3s" repeatCount="indefinite" />
    </path>

    <path d="M 80 170 Q 90 160 110 165 L 100 175 Z" fill="#FFFFFF">
         <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="1 0" dur="0.5s" repeatCount="indefinite" />
    </path>
     <path d="M 75 170 Q 85 160 105 165 L 95 175 Z" fill="#FFFFFF">
         <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="-1 0" dur="0.5s" repeatCount="indefinite" />
    </path>
  </g>

  <g id="bubbles">
    <circle cx="100" cy="160" r="10" fill="url(#bubbleGradient)" opacity="0.8">
      <animate attributeName="cy" from="160" to="50" dur="4s" repeatCount="indefinite" />
      <animate attributeName="cx" from="100" to="120" dur="4s" repeatCount="indefinite" />
      <animate attributeName="r" from="10" to="20" dur="4s" repeatCount="indefinite" />
       <animate attributeName="opacity" from="0.8" to="0" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="110" cy="170" r="8" fill="url(#bubbleGradient)" opacity="0.7">
      <animate attributeName="cy" from="170" to="60" dur="5s" begin="1s" repeatCount="indefinite" />
      <animate attributeName="cx" from="110" to="90" dur="5s" begin="1s" repeatCount="indefinite" />
      <animate attributeName="r" from="8" to="15" dur="5s" begin="1s" repeatCount="indefinite" />
       <animate attributeName="opacity" from="0.7" to="0" dur="5s" begin="1s" repeatCount="indefinite" />
    </circle>
     <circle cx="95" cy="165" r="12" fill="url(#bubbleGradient)" opacity="0.9">
      <animate attributeName="cy" from="165" to="70" dur="6s" begin="2s" repeatCount="indefinite" />
      <animate attributeName="cx" from="95" to="115" dur="6s" begin="2s" repeatCount="indefinite" />
      <animate attributeName="r" from="12" to="25" dur="6s" begin="2s" repeatCount="indefinite" />
       <animate attributeName="opacity" from="0.9" to="0" dur="6s" begin="2s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0F6FF"/>
    </radialGradient>
    <linearGradient id="dragonBody" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4CAF50"/>
      <stop offset="100%" stop-color="#2E7D32"/>
    </linearGradient>
    <linearGradient id="bubble" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#E3F2FD" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#BBDEFB" stop-opacity="0.6"/>
    </linearGradient>
    <filter id="bubbleGlow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>

  <!-- Dragon Body -->
  <path d="M80 150 Q100 80 120 150 Q140 220 160 150 Q180 80 200 150 L220 220 L240 150" 
        fill="url(#dragonBody)" 
        stroke="#1B5E20" 
        stroke-width="2"/>

  <!-- Wings -->
  <path d="M160 100 Q140 60 120 100 Q140 140 160 100" 
        fill="#7B1FA2" 
        opacity="0.7"/>
  <path d="M200 100 Q220 60 240 100 Q220 140 200 100" 
        fill="#7B1FA2" 
        opacity="0.7"/>

  <!-- Head -->
  <circle cx="120" cy="150" r="20" fill="url(#dragonBody)"/>
  <path d="M100 140 Q110 130 120 140" fill="#1B5E20"/>
  <circle cx="115" cy="145" r="3" fill="#FFF"/>

  <!-- Bubbles -->
  <g filter="url(#bubbleGlow)">
    <circle cx="140" cy="120" r="15" fill="url(#bubble)"/>
    <circle cx="160" cy="90" r="12" fill="url(#bubble)"/>
    <circle cx="180" cy="60" r="8" fill="url(#bubble)"/>
    <circle cx="200" cy="40" r="6" fill="url(#bubble)"/>
    <circle cx="140" cy="100" r="10" fill="url(#bubble)" opacity="0.7"/>
  </g>

  <!-- Tail Details -->
  <path d="M240 150 L260 140 L270 160 L260 180 Z" fill="#2E7D32"/>
  <circle cx="260" cy="160" r="5" fill="#FFF" opacity="0.8"/>

  <!-- Bubble Highlights -->
  <g stroke="#FFF" stroke-width="2" fill="none">
    <path d="M135 115 Q137 110 140 112"/>
    <path d="M155 85 Q157 80 160 82"/>
    <path d="M175 55 Q177 50 180 52"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission more closely adheres to the prompt by incorporating dragon-like features and depicting the act of blowing bubbles.

    The use of abstract shapes effectively conveys a stylized dragon, and the bubbles are clear and visually appealing.

    Player 1's submission lacks clear dragon elements and is less aligned with the prompt, resembling a fish rather than a dragon.

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
11
Player 2
17
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
4
Player 2
8
Ellipses

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

Player 1
1
Player 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
Player 2
Paths

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

Player 1
5
Player 2
8
Groups

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
3
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
1
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
3
Player 2
4
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
9

Interactivity Metrics

Animations

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

Player 1
17
Player 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
20
Player 2
25
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
3
Player 2
4
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.