Back

SVG Drawing Match #1934

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon made of clouds floating above a calm sea"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#64B5F6" />
      <stop offset="100%" style="stop-color:#90CAF9" />
    </linearGradient>
    <linearGradient id="seaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1976D2" />
      <stop offset="100%" style="stop-color:#0D47A1" />
    </linearGradient>
    <filter id="cloudFilter">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
    </filter>
  </defs>

  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)" />
  
  <!-- Sea -->
  <rect x="0" y="200" width="300" height="100" fill="url(#seaGradient)" />
  <path d="M0 205 Q75 195 150 205 Q225 215 300 205 L300 210 Q225 200 150 210 Q75 220 0 210Z" fill="#ffffff" opacity="0.3" />
  
  <!-- Cloud Dragon -->
  <g filter="url(#cloudFilter)">
    <!-- Body -->
    <path d="M50 150 Q100 120 150 140 Q200 160 250 130" fill="white" opacity="0.9" />
    <!-- Head -->
    <circle cx="250" cy="130" r="20" fill="white" />
    <path d="M260 125 Q270 120 275 130 Q280 140 270 135" fill="white" />
    <!-- Wings -->
    <path d="M150 140 Q180 100 200 120 Q160 110 150 140" fill="white" opacity="0.8" />
    <path d="M150 140 Q180 170 200 150 Q160 160 150 140" fill="white" opacity="0.8" />
    <!-- Tail -->
    <path d="M50 150 Q20 140 30 120 Q40 100 50 150" fill="white" opacity="0.8" />
  </g>

  <!-- Dragon details -->
  <circle cx="255" cy="125" r="3" fill="#FFD700" /> <!-- Eye -->
  
  <!-- Additional clouds -->
  <g filter="url(#cloudFilter)">
    <circle cx="40" cy="80" r="20" fill="white" opacity="0.6" />
    <circle cx="260" cy="60" r="25" fill="white" opacity="0.5" />
    <circle cx="180" cy="40" r="15" fill="white" opacity="0.7" />
  </g>

  <!-- Wave details -->
  <path d="M0 220 Q30 215 60 220 Q90 225 120 220 Q150 215 180 220 Q210 225 240 220 Q270 215 300 220" 
        fill="none" stroke="#ffffff" stroke-width="1" opacity="0.2" />
  <path d="M0 240 Q30 235 60 240 Q90 245 120 240 Q150 235 180 240 Q210 245 240 240 Q270 235 300 240" 
        fill="none" stroke="#ffffff" stroke-width="1" opacity="0.2" />
</svg>
SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions -->
  <defs>
    <!-- Sky Gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFDAB9"/>
    </linearGradient>
    <!-- Sea Gradient -->
    <linearGradient id="seaGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </linearGradient>
    <!-- Cloud Gradient -->
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF" />
      <stop offset="100%" stop-color="#F0F8FF" />
    </radialGradient>
    <!-- Dragon Outline -->
    <filter id="blurFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" />
    </filter>
  </defs>

  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Calm Sea -->
  <rect y="200" width="300" height="100" fill="url(#seaGradient)" />

  <!-- Dragon Made of Clouds -->
  <g filter="url(#blurFilter)" fill="url(#cloudGradient)" opacity="0.9">
    <!-- Body -->
    <ellipse cx="150" cy="120" rx="40" ry="20" />
    <ellipse cx="190" cy="110" rx="20" ry="15" />
    <ellipse cx="110" cy="110" rx="20" ry="15" />
    <!-- Head -->
    <ellipse cx="90" cy="100" rx="15" ry="10" />
    <ellipse cx="210" cy="100" rx="15" ry="10" />
    <!-- Wings -->
    <path d="M150,120 C130,80 170,80 150,120" />
    <path d="M150,120 C130,160 170,160 150,120" />
    <!-- Tail -->
    <path d="M190,110 Q220,100 210,140 Q200,160 180,150" />
    <!-- Features -->
    <circle cx="85" cy="95" r="2" fill="#555" />
    <circle cx="215" cy="95" r="2" fill="#555" />
    <path d="M150,110 Q145,105 150,100 Q155,105 150,110" stroke="#555" stroke-width="1" fill="none" />
  </g>

  <!-- Additional Cloud Layers for Depth -->
  <g fill="url(#cloudGradient)" opacity="0.6">
    <ellipse cx="60" cy="60" rx="25" ry="15" />
    <ellipse cx="90" cy="50" rx="20" ry="12" />
    <ellipse cx="120" cy="60" rx="25" ry="15" />
  </g>

  <g fill="url(#cloudGradient)" opacity="0.7">
    <ellipse cx="240" cy="70" rx="20" ry="10" />
    <ellipse cx="255" cy="65" rx="15" ry="8" />
    <ellipse cx="270" cy="70" rx="20" ry="10" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image creatively uses cloud formations to suggest a dragon shape with a clear silhouette and detail, such as the yellow eye.

    The calm sea below is depicted with smooth lines, enhancing the overall visual appeal and adherence to the prompt.

    Player 2's image, while also creative, lacks the same level of detail and clarity in representing a dragon, making Player 1's submission more compelling.

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
15
Player 2
19
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
5
Player 2
2
Ellipses

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

Player 1
Player 2
11
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
8
Player 2
4
Groups

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
7

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
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
34
Player 2
10
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.

Similar Challenges