Back

SVG Drawing Match #1122

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating clock tower island above a sea of clouds, in a surreal style"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sea of clouds background with vibrant colors -->
  <rect x="0" y="0" width="300" height="300" fill="#b3e0ff" />
  <ellipse cx="150" cy="240" rx="180" ry="70" fill="#d1e8ff" />
  
  <!-- Floating clock tower island with surreal design -->
  <!-- Clock tower -->
  <rect x="125" y="70" width="50" height="150" fill="#fca400" />
  <rect x="132" y="70" width="36" height="10" fill="#b87333" />
  <!-- Clock -->
  <circle cx="150" cy="135" r="15" fill="#fff" />
  <circle cx="150" cy="135" r="13" fill="#fca400" />
  <rect x="148" y="135" width="4" height="50" fill="#b87333" />
  <circle cx="150" cy="185" r="3" fill="#b87333" />
  
  <!-- Island base -->
  <path d="M75 220 L150 170 L225 220 Z" fill="#c2ffae" />
  
  <!-- Cloud-like details -->
  <circle cx="70" cy="160" r="25" fill="#fff" />
  <circle cx="90" cy="180" r="20" fill="#fff" />
  <circle cx="110" cy="150" r="22" fill="#fff" />
  <circle cx="130" cy="175" r="18" fill="#fff" />
  <circle cx="160" cy="150" r="23" fill="#fff" />
  <circle cx="190" cy="180" r="21" fill="#fff" />
  <circle cx="210" cy="160" r="24" fill="#fff" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#89CFF0" />
      <stop offset="100%" stop-color="#F0F8FF" />
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0" y1="1" x2="0" y2="0">
      <stop offset="0%" stop-color="#F8F9FA" stop-opacity="0" />
      <stop offset="50%" stop-color="#F8F9FA" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0.9" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
    </linearGradient>
  </defs>
  
  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Sea of clouds -->
  <ellipse cx="150" cy="240" rx="180" ry="60" fill="url(#cloudGradient)" />
  <ellipse cx="150" cy="260" rx="200" ry="70" fill="url(#cloudGradient)" />
  <ellipse cx="150" cy="280" rx="210" ry="80" fill="url(#cloudGradient)" />

  <!-- Floating island -->
  <polygon points="120,100 180,100 150,200" fill="#6B8E23" stroke="#2E8B57" stroke-width="2" />
  <ellipse cx="150" cy="100" rx="60" ry="20" fill="#8FBC8F" />

  <!-- Clock tower -->
  <rect x="135" y="50" width="30" height="50" fill="url(#clockGradient)" stroke="#DAA520" stroke-width="2" />
  <polygon points="135,50 150,30 165,50" fill="#FFA500" />
  <circle cx="150" cy="75" r="10" fill="#FF4500" />
  <line x1="150" y1="75" x2="150" y2="65" stroke="white" stroke-width="2" />
  <line x1="150" y1="75" x2="160" y2="80" stroke="white" stroke-width="2" />

  <!-- Decorative clouds around island -->
  <path d="M110,130 C120,120 130,130 140,120 C150,110 160,130 170,120 C180,110 190,130 200,120 C210,110 220,130 230,120 L230,130 L110,130 Z" fill="url(#cloudGradient)" opacity="0.8" />
  <path d="M150,120 C160,110 170,120 180,110 C190,100 200,120 210,110 C220,100 230,120 240,110 L240,120 L150,120 Z" fill="url(#cloudGradient)" opacity="0.7" />

  <!-- Sun -->
  <circle cx="240" cy="60" r="30" fill="#FFD700" opacity="0.8" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better captures the surreal concept with a more developed depiction of the clock tower island floating above the clouds.

    The inclusion of a sun and layered clouds enhances the surreal and imaginative quality, while the clear use of perspective and color adds depth and visual appeal.

    Player 1's submission, though colorful, lacks detail and dimensionality, making it less effective in conveying 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
16
Player 2
14
Rectangles

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

Player 1
4
Player 2
2
Circles

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

Player 1
10
Player 2
2
Ellipses

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

Player 1
1
Player 2
4
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
1
Player 2
2
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
11

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
4
Player 2
15
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
Player 2
3
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