Back

SVG Drawing Match #550

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal whale-shaped hot air balloon floating above a cityscape"

SVG by GPT-4o (2024-11-20)
<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: #87CEEB; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #1E90FF; stop-opacity: 1" />
    </linearGradient>
    <linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #ffffff; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #00BFFF; stop-opacity: 1" />
    </linearGradient>
    <pattern id="cityPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse">
      <rect width="40" height="40" fill="#333" />
      <rect width="20" height="40" fill="#555" />
      <rect width="40" height="20" fill="#666" />
      <rect width="10" height="10" fill="#777" />
    </pattern>
    <radialGradient id="balloonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #FF6347; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FF4500; stop-opacity: 1" />
    </radialGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  <g transform="translate(50, 50)">
    <path d="M200,100 Q220,80 240,100 A40,40 0 0,1 200,180 Q180,200 120,180 A80,80 0 0,1 200,100" fill="url(#whaleGradient)" />
    <circle cx="180" cy="130" r="8" fill="#FFF5EE" />
    <path d="M240,100 Q260,120 240,140" fill="none" stroke="#00008B" stroke-width="2" />
  </g>
  <circle cx="200" cy="250" r="30" fill="url(#balloonGradient)" />
  <line x1="200" y1="250" x2="200" y2="100" stroke="#8B0000" stroke-width="2" stroke-dasharray="5,5" />
  <g transform="translate(0, 220)">
    <rect x="0" y="0" width="300" height="80" fill="url(#cityPattern)" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Sky Gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#70a1ff"/>
      <stop offset="100%" stop-color="#1e90ff"/>
    </linearGradient>
    
    <!-- Whale Gradient -->
    <linearGradient id="whaleGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#4b79a1"/>
      <stop offset="100%" stop-color="#283e51"/>
    </linearGradient>
    
    <!-- City Gradient -->
    <linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#444"/>
      <stop offset="100%" stop-color="#222"/>
    </linearGradient>
    
    <!-- Basket Gradient -->
    <linearGradient id="basketGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#D2691E"/>
    </linearGradient>
    
    <!-- Rope Gradient -->
    <linearGradient id="ropeGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ccc"/>
    </linearGradient>
  </defs>
  
  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Cityscape -->
  <g id="cityscape" transform="translate(0, 200)">
    <!-- Buildings -->
    <rect x="20" y="50" width="40" height="150" fill="url(#cityGradient)" />
    <rect x="80" y="40" width="30" height="160" fill="url(#cityGradient)" />
    <rect x="130" y="60" width="50" height="140" fill="url(#cityGradient)" />
    <rect x="200" y="50" width="35" height="150" fill="url(#cityGradient)" />
    
    <!-- Windows -->
    <g fill="#ffd700">
      <!-- First Building Windows -->
      <rect x="25" y="60" width="5" height="5" />
      <rect x="35" y="60" width="5" height="5" />
      <rect x="25" y="70" width="5" height="5" />
      <rect x="35" y="70" width="5" height="5" />
      <rect x="25" y="80" width="5" height="5" />
      <rect x="35" y="80" width="5" height="5" />
      
      <!-- Second Building Windows -->
      <rect x="85" y="50" width="4" height="4" />
      <rect x="95" y="50" width="4" height="4" />
      <rect x="85" y="60" width="4" height="4" />
      <rect x="95" y="60" width="4" height="4" />
      <rect x="85" y="70" width="4" height="4" />
      <rect x="95" y="70" width="4" height="4" />
      
      <!-- Third Building Windows -->
      <rect x="135" y="70" width="6" height="6" />
      <rect x="145" y="70" width="6" height="6" />
      <rect x="135" y="80" width="6" height="6" />
      <rect x="145" y="80" width="6" height="6" />
      <rect x="135" y="90" width="6" height="6" />
      <rect x="145" y="90" width="6" height="6" />
      
      <!-- Fourth Building Windows -->
      <rect x="205" y="60" width="5" height="5" />
      <rect x="215" y="60" width="5" height="5" />
      <rect x="205" y="70" width="5" height="5" />
      <rect x="215" y="70" width="5" height="5" />
      <rect x="205" y="80" width="5" height="5" />
      <rect x="215" y="80" width="5" height="5" />
    </g>
  </g>
  
  <!-- Whale-shaped hot air balloon -->
  <g id="whaleBalloon" transform="translate(150, 100)">
    <!-- Whale Body -->
    <ellipse cx="0" cy="0" rx="60" ry="30" fill="url(#whaleGradient)" />
    
    <!-- Whale Tail -->
    <path d="M-60,0 C-80,-10 -80,10 -60,0 Z" fill="url(#whaleGradient)" />
    
    <!-- Whale Fins -->
    <path d="M0,-30 L-20,-50 L-10,-30 Z" fill="url(#whaleGradient)" />
    <path d="M0,-30 L20,-50 L10,-30 Z" fill="url(#whaleGradient)" />
    
    <!-- Ropes -->
    <line x1="-30" y1="15" x2="-30" y2="50" stroke="url(#ropeGradient)" stroke-width="2" />
    <line x1="30" y1="15" x2="30" y2="50" stroke="url(#ropeGradient)" stroke-width="2" />
    
    <!-- Basket -->
    <rect x="-15" y="50" width="30" height="20" fill="url(#basketGradient)" stroke="#654321" stroke-width="1" />
  </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 more clearly represents the prompt, with a defined whale-shaped hot air balloon floating above a cityscape.

    The use of simple shapes and contrasting colors effectively captures the surreal concept.

    Player 1's image lacks clarity and does not depict a complete whale or a cityscape, diminishing its adherence to 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
11
Player 2
36
Rectangles

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

Player 1
6
Player 2
30
Circles

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

Player 1
2
Player 2
Ellipses

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

Player 1
Player 2
1
Lines

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
12

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
2
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
7
Player 2
11
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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