Back

SVG Drawing Match #1112

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating umbrella island with a waterfall pouring into a teacup"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Sky Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#F0F8FF;stop-opacity:1" />
    </linearGradient>

    <!-- Waterfall Pattern -->
    <pattern id="waterfallPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white" />
    </pattern>
  </defs>

  <!-- Floating Island -->
  <g transform="translate(150, 80)">
    <ellipse cx="0" cy="0" rx="80" ry="20" fill="#4169E1" />
    <path d="M-80,0 Q0,-40 80,0 Q0,40 -80,0 Z" fill="#228B22" />

    <!-- Umbrella -->
    <path fill="#FF6347" d="M-30,0 C-15,-20 15,-20 30,0 Z" />
    <rect x="-5" y="0" width="10" height="60" fill="#8B4513" />
  </g>

  <!-- Teacup -->
  <g transform="translate(220, 260)">
    <path d="M-40,0 A40,20 0 0,1 40,0 L30,20 A20,10 0 0,1 -30,20 Z" fill="#FFFAF0" />
    <ellipse cx="0" cy="15" rx="30" ry="10" fill="#CD853F" />
    <circle cx="60" cy="0" r="7" fill="none" stroke="#CD853F" stroke-width="4" />
  </g>

  <!-- Waterfall -->
  <path d="M150,90 Q170,160 220,245" stroke="url(#waterGradient)" stroke-width="12" fill="none" />
  <g mask="url(#waterfallPattern)">
    <path d="M150,90 Q170,160 220,245" stroke="white" stroke-width="4" fill="none" opacity="0.7" />
  </g>

  <!-- Additional Water Effects -->
  <path d="M159,95 Q180,160 215,240" stroke="#00BFFF" stroke-width="4" fill="none" opacity="0.5" />
  <path d="M151,100 Q167,155 225,245" stroke="#87CEFA" stroke-width="3" fill="none" opacity="0.6" />
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="umbrellaGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#f39c12;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e74c3c;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#27ae60;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#145a32;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="waterfallGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#3498db;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2980b9;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ecf0f1;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#bdc3c7;stop-opacity:1" />
    </linearGradient>
    <pattern id="umbrellaPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <path d="M0,0 L4,4 M4,0 L0,4" stroke="#ffffff" stroke-width="0.5"/>
    </pattern>
  </defs>
  
  <!-- Floating umbrella island -->
  <g id="umbrella-island" transform="translate(150,70)">
    <!-- Umbrella canopy -->
    <path d="M -60,0 
             C -40,-40, 40,-40, 60,0 
             C 40,10, -40,10, -60,0 Z" fill="url(#umbrellaGradient)" stroke="#c0392b" stroke-width="2"/>
    <rect x="-60" y="0" width="120" height="20" fill="url(#umbrellaPattern)" opacity="0.8" />
    <!-- Island under the umbrella -->
    <circle cx="0" cy="40" r="40" fill="url(#islandGradient)" stroke="#145a32" stroke-width="2"/>
    <!-- Umbrella poles (spokes) -->
    <line x1="0" y1="0" x2="0" y2="40" stroke="#7f8c8d" stroke-width="2"/>
    <line x1="-30" y1="0" x2="-15" y2="40" stroke="#7f8c8d" stroke-width="2"/>
    <line x1="30" y1="0" x2="15" y2="40" stroke="#7f8c8d" stroke-width="2"/>
  </g>
  
  <!-- Waterfall pouring from the umbrella downwards -->
  <g id="waterfall">
    <path d="M150,20 
             C 155,60, 145,100, 150,130 
             C 148,150, 152,170, 150,190" 
             fill="none" stroke="url(#waterfallGradient)" stroke-width="5" stroke-linecap="round" opacity="0.8"/>
  </g>
  
  <!-- Teacup at the bottom receiving the waterfall -->
  <g id="teacup" transform="translate(100,190)">
    <!-- Cup body -->
    <path d="M0,0 
             Q50,-10,100,0 
             Q95,50,50,60 
             Q5,50,0,0 Z" fill="url(#teacupGradient)" stroke="#7f8c8d" stroke-width="2"/>
    <!-- Cup handle -->
    <path d="M100,10 
             C130,20,130,40,100,50" fill="none" stroke="#7f8c8d" stroke-width="4"/>
    <!-- Water inside teacup -->
    <path d="M15,10 
             Q50,5,85,10 
             Q80,30,50,35 
             Q20,30,15,10 Z" fill="url(#waterfallGradient)" opacity="0.7" stroke="none"/>
    <!-- Teacup shadow for depth -->
    <ellipse cx="50" cy="55" rx="40" ry="8" fill="#000" opacity="0.1"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission is more visually appealing and technically refined, with a clear depiction of the concept.

    The composition is well-balanced, with the umbrella seamlessly integrated into the island, and the waterfall flowing elegantly into the teacup.

    Player 1's image, while creative, lacks the same level of detail and coherence in representing the idea.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
2
Player 2
1
Ellipses

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

Player 1
2
Player 2
1
Lines

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

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

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
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
20
Player 2
23
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
2
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