Back

SVG Drawing Match #309

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating umbrella city above a stormy sea"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background sky with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1a237e" />
      <stop offset="100%" stop-color="#0d47a1" />
    </linearGradient>
    <!-- Pattern for storm clouds -->
    <pattern id="cloudPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="5" fill="rgba(255,255,255,0.2)" />
      <circle cx="15" cy="10" r="7" fill="rgba(255,255,255,0.15)" />
    </pattern>
    <!-- Gradient for umbrellas -->
    <linearGradient id="umbrellaGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#e91e63"/>
      <stop offset="100%" stop-color="#9c27b0"/>
    </linearGradient>
    <!-- Gradient for the sea -->
    <linearGradient id="seaGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0d47a1" />
      <stop offset="100%" stop-color="#01579b" />
    </linearGradient>
  </defs>

  <!-- The stormy sea -->
  <rect x="0" y="200" width="300" height="100" fill="url(#seaGradient)" />
  <!-- Waves -->
  <path d="M0 230 Q20 220, 40 230 T80 230 T120 230 T160 230 T200 230 T240 230 T280 230 T300 230 L300 300 L0 300 Z" fill="rgba(255,255,255,0.1)" />
  <path d="M0 250 Q20 240, 40 250 T80 250 T120 250 T160 250 T200 250 T240 250 T280 250 T300 250 L300 300 L0 300 Z" fill="rgba(255,255,255,0.15)" />

  <!-- Background sky fill -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)" />
  <!-- Overlay clouds -->
  <rect x="0" y="0" width="300" height="200" fill="url(#cloudPattern)" opacity="0.5" />
  
  <!-- Floating umbrella buildings -->
  <g id="city" transform="translate(0,0)">
    <!-- Umbrella 1 -->
    <g transform="translate(50,40)">
      <!-- Umbrella top (dome) -->
      <path d="M0 30 A30 30 0 0 1 60 30 L60 40 A40 40 0 0 0 0 40 Z" fill="url(#umbrellaGradient)" />
      <!-- Umbrella stick -->
      <rect x="28" y="40" width="4" height="40" fill="#4e342e" />
      <!-- Windows -->
      <circle cx="30" cy="50" r="2" fill="#fff"/>
      <circle cx="30" cy="56" r="2" fill="#fff"/>
    </g>
    
    <!-- Umbrella 2 -->
    <g transform="translate(140,20)">
      <path d="M0 25 A25 25 0 0 1 50 25 L50 35 A35 35 0 0 0 0 35 Z" fill="url(#umbrellaGradient)" />
      <rect x="23" y="35" width="4" height="30" fill="#4e342e" />
      <circle cx="25" cy="42" r="2" fill="#fff"/>
      <circle cx="25" cy="48" r="2" fill="#fff"/>
    </g>
    
    <!-- Umbrella 3 -->
    <g transform="translate(100,70)">
      <path d="M0 35 A35 35 0 0 1 70 35 L70 45 A45 45 0 0 0 0 45 Z" fill="url(#umbrellaGradient)" />
      <rect x="34" y="45" width="2" height="35" fill="#4e342e" />
      <circle cx="35" cy="53" r="2" fill="#fff"/>
      <circle cx="35" cy="59" r="2" fill="#fff"/>
      <circle cx="35" cy="65" r="2" fill="#fff"/>
    </g>
    
    <!-- Umbrella 4 -->
    <g transform="translate(190,50)">
      <path d="M0 28 A28 28 0 0 1 56 28 L56 38 A38 38 0 0 0 0 38 Z" fill="url(#umbrellaGradient)" />
      <rect x="27" y="38" width="2" height="30" fill="#4e342e" />
      <circle cx="28" cy="44" r="2" fill="#fff"/>
      <circle cx="28" cy="50" r="2" fill="#fff"/>
      <circle cx="28" cy="56" r="2" fill="#fff"/>
    </g>
  </g>
  
  <!-- Ethereal floating effects: swirling lines around city -->
  <g opacity="0.6">
    <path d="M80,60 C90,40 110,20 130,40" stroke="#fff" stroke-width="1" fill="none" />
    <path d="M160,30 C170,10 190,10 200,30" stroke="#fff" stroke-width="1" fill="none" />
    <path d="M120,80 C130,60 150,50 170,70" stroke="#fff" stroke-width="1" fill="none" />
  </g>
  
  <!-- Floating umbrella outlines to enhance artistic look -->
  <g stroke="#fff" stroke-width="0.5" fill="none" opacity="0.5">
    <ellipse cx="80" cy="55" rx="30" ry="8" />
    <ellipse cx="165" cy="25" rx="25" ry="7" />
    <ellipse cx="135" cy="90" rx="35" ry="9" />
    <ellipse cx="215" cy="60" rx="28" ry="8" />
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Stormy Sea -->
  <rect x="0" y="150" width="300" height="150" fill="#3498db" rx="10" />
  <path d="M 0 170 Q 150 260 300 170" fill="#2ecc71" />
  <path d="M 0 170 Q 150 140 300 170" fill="#9b59b6" opacity="0.5" />
  <g transform="translate(50 220)">
    <circle cx="0" cy="0" r="10" fill="#e74c3c" />
    <path d="M -5 0 L 5 10 L -5 20 Z" fill="#e74c3c" />
  </g>
  <g transform="translate(100 190)">
    <circle cx="0" cy="0" r="10" fill="#e74c3c" />
    <path d="M -5 0 L 5 10 L -5 20 Z" fill="#e74c3c" />
  </g>
  <g transform="translate(200 210)">
    <circle cx="0" cy="0" r="10" fill="#e74c3c" />
    <path d="M -5 0 L 5 10 L -5 20 Z" fill="#e74c3c" />
  </g>

  <!-- Umbrella City -->
  <g transform="translate(0 -50)">
    <circle cx="150" cy="50" r="120" fill="none" stroke="#2c3e50" stroke-width="5" />
    <path d="M 130 10 L 170 60 L 210 10 Z" fill="#f1c40f" />
    <g transform="translate(110 40)">
      <circle cx="0" cy="0" r="10" fill="#3498db" />
      <path d="M -5 0 L 5 10 L -5 20 Z" fill="#3498db" />
    </g>
    <g transform="translate(190 40)">
      <circle cx="0" cy="0" r="10" fill="#3498db" />
      <path d="M -5 0 L 5 10 L -5 20 Z" fill="#3498db" />
    </g>

    <!-- Buildings -->
    <g transform="translate(70 10)">
      <rect x="0" y="0" width="20" height="60" fill="#9b59b6" rx="5" />
      <rect x="5" y="10" width="10" height="40" fill="#e74c3c" rx="2" />
    </g>
    <g transform="translate(230 10)">
      <rect x="0" y="0" width="20" height="80" fill="#9b59b6" rx="5" />
      <rect x="5" y="20" width="10" height="50" fill="#e74c3c" rx="2" />
    </g>

    <!-- Clouds -->
    <g transform="translate(100 -20)">
      <circle cx="0" cy="0" r="20" fill="#ecf0f1" />
      <circle cx="20" cy="0" r="20" fill="#ecf0f1" />
      <circle cx="40" cy="0" r="20" fill="#ecf0f1" />
    </g>
    <g transform="translate(170 -30)">
      <circle cx="0" cy="0" r="30" fill="#ecf0f1" />
      <circle cx="30" cy="0" r="30" fill="#ecf0f1" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission captures the concept of a 'floating umbrella city above a stormy sea' more effectively, with clear visual representation of umbrellas and a stormy sea.

    The composition is harmonious and vibrant, showing creativity in using color and pattern to depict a city-like structure.

    Player 2's image lacks clarity and cohesion, making it harder to interpret in relation 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
32
Player 2
24
Rectangles

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

Player 1
7
Player 2
5
Circles

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

Player 1
12
Player 2
11
Ellipses

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

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

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

Player 1
7
Player 2
10

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
50
Player 2
28
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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