Back

SVG Drawing Match #502

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon sipping tea in a flower-filled meadow"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="30%" 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="#6DC7A8"/>
      <stop offset="100%" stop-color="#2E594A"/>
    </linearGradient>
    <pattern id="floral" patternUnits="userSpaceOnUse" width="15" height="15">
      <path d="M7.5 0L9.33 4.5H15L10.5 7.5L12 12L7.5 9.75L3 12L4.5 7.5L0 4.5H5.67z" fill="#FF6B6B"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>
  
  <!-- Meadow -->
  <path d="M0 200Q150 160 300 200L300 300 0 300z" fill="#88D18A"/>
  <path d="M0 220Q150 185 300 220L300 300 0 300z" fill="#6FBF73" opacity="0.8"/>

  <!-- Dragon -->
  <g transform="translate(150 130)">
    <path d="M0-40Q-40 20 0 60Q40 20 0-40" fill="url(#dragonBody)" stroke="#2E594A" stroke-width="2"/>
    <path d="M-30 10Q-50 -30 -80 0L-60 20z" fill="#2E594A"/>
    <circle cx="20" cy="-20" r="8" fill="#FFD700"/>
    <path d="M40 50Q60 30 80 50L70 70Q50 60 40 50" fill="#E8A87C"/>
    <path d="M-40 0Q-60 30 -30 50L-10 30Q-30 20 -40 0" fill="#C45B4D"/>
    
    <!-- Wings -->
    <path d="M-60 10Q-90 -20 -120 30L-100 50Q-80 30 -60 10" fill="#6DC7A8" opacity="0.7"/>
    <path d="M60 10Q90 -20 120 30L100 50Q80 30 60 10" fill="#6DC7A8" opacity="0.7"/>
  </g>

  <!-- Teacup -->
  <g transform="translate(170 160)">
    <path d="M0 0Q20 -40 40 0V30Q20 40 0 30z" fill="white"/>
    <rect x="15" y="-45" width="10" height="20" fill="#E8A87C"/>
    <path d="M0 0Q20 10 40 0" fill="url(#floral)"/>
    <path d="M5 15Q20 25 35 15" stroke="#FFB347" stroke-width="2" stroke-dasharray="3" opacity="0.8"/>
  </g>

  <!-- Flowers -->
  <g transform="translate(100 250)">
    <circle cx="0" cy="0" r="8" fill="#FF6B6B"/>
    <circle cx="15" cy="-10" r="6" fill="#FFD700"/>
    <circle cx="-20" cy="5" r="5" fill="#6DC7A8"/>
  </g>
  <path d="M200 250q10-20 30-10" stroke="#6FBF73" stroke-width="4" fill="none"/>
  
  <!-- Sparkles -->
  <g fill="#FFD700" opacity="0.7">
    <circle cx="50" cy="60" r="2"/>
    <circle cx="250" cy="90" r="3"/>
    <circle cx="180" cy="40" r="2.5"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#87ceeb"/>
      <stop offset="100%" stop-color="#f0e68c"/>
    </radialGradient>
    <linearGradient id="grassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#7cfc00"/>
      <stop offset="100%" stop-color="#228b22"/>
    </linearGradient>
    <radialGradient id="flowerGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff69b4"/>
      <stop offset="100%" stop-color="#ff1493"/>
    </radialGradient>
    <linearGradient id="dragonBodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#6a5acd"/>
      <stop offset="100%" stop-color="#483d8b"/>
    </linearGradient>
    <radialGradient id="teaGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffacd"/>
      <stop offset="100%" stop-color="#daa520"/>
    </radialGradient>
    <pattern id="scalePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#ffffff" />
    </pattern>
  </defs>
  
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Meadow -->
  <rect y="200" width="300" height="100" fill="url(#grassGradient)" />
  
  <!-- Flowers -->
  <g>
    <circle cx="50" cy="220" r="5" fill="url(#flowerGradient)" />
    <circle cx="70" cy="230" r="4" fill="url(#flowerGradient)" />
    <circle cx="90" cy="225" r="6" fill="url(#flowerGradient)" />
    <circle cx="110" cy="235" r="5" fill="url(#flowerGradient)" />
    <circle cx="130" cy="220" r="4" fill="url(#flowerGradient)" />
    <circle cx="150" cy="230" r="6" fill="url(#flowerGradient)" />
    <circle cx="170" cy="225" r="5" fill="url(#flowerGradient)" />
    <circle cx="190" cy="235" r="4" fill="url(#flowerGradient)" />
    <circle cx="210" cy="220" r="6" fill="url(#flowerGradient)" />
    <circle cx="230" cy="230" r="5" fill="url(#flowerGradient)" />
    <circle cx="250" cy="225" r="4" fill="url(#flowerGradient)" />
    <circle cx="270" cy="235" r="6" fill="url(#flowerGradient)" />
  </g>
  
  <!-- Dragon -->
  <g id="dragon" transform="translate(80, 120)">
    <!-- Body -->
    <ellipse cx="70" cy="50" rx="40" ry="20" fill="url(#dragonBodyGradient)" />
    <!-- Tail -->
    <path d="M110,50 Q130,40 150,60 Q130,80 110,70" fill="url(#dragonBodyGradient)" />
    <!-- Neck and Head -->
    <path d="M70,50 Q60,30 50,40 Q60,35 65,45" fill="url(#dragonBodyGradient)" />
    <circle cx="50" cy="40" r="8" fill="#ffffff" />
    <!-- Eyes -->
    <circle cx="48" cy="38" r="2" fill="#000000" />
    <!-- Mouth sipping tea -->
    <path d="M52,42 Q55,44 52,46" stroke="#000000" stroke-width="1" fill="none" />
    <!-- Wings -->
    <path d="M40,50 Q20,30 40,10 Q35,25 40,50" fill="rgba(255, 255, 255, 0.6)" />
    <path d="M100,50 Q120,30 100,10 Q105,25 100,50" fill="rgba(255, 255, 255, 0.6)" />
    <!-- Scales pattern -->
    <circle cx="60" cy="50" r="1" fill="#ffffff" />
    <circle cx="62" cy="52" r="1" fill="#ffffff" />
    <circle cx="64" cy="54" r="1" fill="#ffffff" />
    <circle cx="66" cy="56" r="1" fill="#ffffff" />
    <circle cx="68" cy="58" r="1" fill="#ffffff" />
    <circle cx="70" cy="60" r="1" fill="#ffffff" />
  </g>
  
  <!-- Tea Cup -->
  <g transform="translate(100, 150)">
    <ellipse cx="20" cy="10" rx="10" ry="4" fill="url(#teaGradient)" />
    <rect x="10" y="10" width="20" height="15" fill="url(#teaGradient)" rx="3" />
    <path d="M30,12 Q35,15 30,18" stroke="#daa520" stroke-width="2" fill="none" />
    <!-- Steam -->
    <path d="M20,10 Q20,5 25,5" stroke="#ffffff" stroke-width="1" fill="none" />
    <path d="M22,8 Q22,3 27,3" stroke="#ffffff" stroke-width="1" fill="none" />
  </g>
  
  <!-- Dragon's Arm Holding Cup -->
  <path d="M90,150 Q95,145 100,150" stroke="url(#dragonBodyGradient)" stroke-width="4" fill="none" />
  
  <!-- Extra Details -->
  <!-- Sun -->
  <circle cx="250" cy="50" r="20" fill="#ffd700" />
  <path d="M250,10 L250,0 M250,40 L250,60 M290,50 L300,50 M210,50 L200,50 M265,35 L275,25 M235,35 L225,25 M265,65 L275,75 M235,65 L225,75" stroke="#ffeb3b" stroke-width="2" />
  <!-- Clouds -->
  <g fill="#ffffff" opacity="0.8">
    <ellipse cx="60" cy="60" rx="15" ry="10" />
    <ellipse cx="75" cy="60" rx="15" ry="10" />
    <ellipse cx="67.5" cy="55" rx="15" ry="10" />
    <ellipse cx="200" cy="80" rx="20" ry="12" />
    <ellipse cx="220" cy="80" rx="20" ry="12" />
    <ellipse cx="210" cy="75" rx="20" ry="12" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image captures the whimsical essence of a dragon sipping tea in a flower-filled meadow more effectively.

    The dragon is clearly depicted with a teacup, and the bright colors and sunny background create a cheerful and inviting scene.

    Player 1's image is more abstract and lacks clear representation of the dragon, tea, and meadow, 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

Total Shapes

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

Player 1
22
Player 2
43
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
7
Player 2
22
Ellipses

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

Player 1
Player 2
8
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
13
Player 2
10
Groups

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
5
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
15

Interactivity Metrics

Animations

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

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
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
53
Player 2
38
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
6
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