Back

SVG Drawing Match #1798

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lemon-shaped hot air balloon over a surreal purple ocean"

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="oceanGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4B0082"/>
      <stop offset="100%" style="stop-color:#800080"/>
    </linearGradient>
    <pattern id="waves" width="30" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 5 Q7.5 0, 15 5 Q22.5 10, 30 5" fill="none" stroke="rgba(255,255,255,0.2)"/>
    </pattern>
    <radialGradient id="lemonGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#fff5b0"/>
      <stop offset="90%" style="stop-color:#ffd700"/>
      <stop offset="100%" style="stop-color:#ffa500"/>
    </radialGradient>
  </defs>

  <!-- Sky -->
  <rect x="0" y="0" width="300" height="200" fill="#1a0033"/>
  
  <!-- Ocean -->
  <rect x="0" y="200" width="300" height="100" fill="url(#oceanGrad)"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#waves)"/>

  <!-- Balloon -->
  <g transform="translate(150,140)">
    <!-- Basket -->
    <rect x="-15" y="60" width="30" height="25" fill="#8b4513" rx="2"/>
    <path d="M-15 60 C-15 50 15 50 15 60" fill="none" stroke="#8b4513" stroke-width="2"/>
    
    <!-- Ropes -->
    <path d="M-30 20 L-15 60 M30 20 L15 60" stroke="#654321" stroke-width="1.5"/>
    
    <!-- Lemon Balloon -->
    <ellipse cx="0" cy="0" rx="45" ry="35" fill="url(#lemonGlow)"/>
    <path d="M0 -35 L0 35" stroke="#ffd700" stroke-width="1" fill="none"/>
    <path d="M-45 0 Q0 -15 45 0 Q0 15 -45 0" stroke="#ffd700" stroke-width="1" fill="none"/>
  </g>

  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="80" cy="30" r="1.5"/>
    <circle cx="250" cy="70" r="1"/>
    <circle cx="200" cy="40" r="1.2"/>
    <circle cx="150" cy="20" r="1.3"/>
  </g>

  <!-- Moon -->
  <path d="M260 40 A20 20 0 0 1 240 60 A20 20 0 0 0 260 40" fill="#ffd700"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="oceanGradient" x1="0%" y1="100%" x2="0%" y2="0%">
      <stop offset="0%" style="stop-color:#6a5acd;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8a2be2;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="lemonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#fff700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffd700;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  <path d="M150 50C180 40, 210 80, 185 100C160 120, 120 95, 150 50Z" fill="url(#lemonGradient)" stroke="#ffa500" stroke-width="3" />
  <path d="M155 75C158 85, 148 95, 145 85C142 75, 152 65, 155 75Z" fill="#ffec40" />
  <line x1="150" y1="110" x2="150" y2="170" stroke="#8b4513" stroke-width="3" />
  <ellipse cx="150" cy="170" rx="20" ry="30" fill="#8b4513" />
  <path d="M150 170C160 175, 140 178, 150 170Z" fill="#d2691e" />
  <g fill="#fff">
    <circle cx="125" cy="80" r="2" />
    <circle cx="155" cy="85" r="2" />
    <circle cx="135" cy="70" r="2" />
    <circle cx="145" cy="95" r="2" />
  </g>
  <path d="M0 250 Q75 200 150 230 Q225 260 300 250" fill="none" stroke="#c71585" stroke-width="5" />
  <circle cx="260" cy="250" r="10" fill="url(#lemonGradient)" />
  <path d="M70 260 Q100 245 130 250 Q150 270 170 250 Q200 245 230 260" fill="#fff" fill-opacity="0.1" />
</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 submission more closely adheres to the prompt with a clear depiction of a lemon-shaped hot air balloon over a purple ocean, maintaining a straightforward and visually appealing composition.

    Player 2's image, while creative, deviates from the prompt with a less recognizable balloon shape and a more abstract interpretation of the ocean, which may confuse the intended theme.

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
16
Player 2
13
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
5
Player 2
5
Ellipses

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

Player 1
1
Player 2
1
Lines

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

Player 1
Player 2
1
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
6
Player 2
5
Groups

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
6

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
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
17
Player 2
18
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
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