Back

SVG Drawing Match #877

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a floating iceberg under a green moon"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#003566"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.7" cy="0.3" r="0.4" fx="0.7" fy="0.3">
      <stop offset="0%" stop-color="#a8ff60"/>
      <stop offset="100%" stop-color="#56ab2f"/>
    </radialGradient>
    <linearGradient id="icebergGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0c8f0" />
      <stop offset="100%" stop-color="#5fa7d6" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9a9e" />
      <stop offset="100%" stop-color="#fad0c4" />
    </linearGradient>
    <linearGradient id="shadowGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="rgba(0,0,0,0.2)" />
      <stop offset="100%" stop-color="rgba(0,0,0,0.5)" />
    </linearGradient>
  </defs>

  <!-- Sky -->
  <rect width="300" height="300" fill="url(#bgGradient)" />

  <!-- Green Moon -->
  <circle cx="240" cy="60" r="40" fill="url(#moonGradient)" filter="url(#moonFilter)" />

  <!-- Iceberg -->
  <g transform="translate(50, 180)">
    <path d="M0,80 C50,60 70,100 120,80 C170,60 200,120 250,80 C300,40 300,120 150,150 C0,120 0,40 0,80 Z" fill="url(#icebergGradient)" stroke="#4a90e2" stroke-width="2"/>
    <defs>
      <pattern id="icePattern" patternUnits="userSpaceOnUse" width="10" height="10">
        <path d="M0,10 L10,0" stroke="#ffffff33" stroke-width="1"/>
      </pattern>
    </defs>
    <rect width="300" height="300" fill="url(#icePattern)" opacity="0.1"/>
  </g>

  <!-- Melting Clock -->
  <g transform="translate(100, 100)">
    <!-- Clock Base -->
    <ellipse cx="50" cy="50" rx="40" ry="20" fill="url(#clockGradient)" stroke="#ff7675" stroke-width="2"/>
    <text x="50" y="55" text-anchor="middle" font-family="Arial" font-size="12" fill="#333">12:45</text>
    <!-- Drippings -->
    <path d="M30,70 C35,80 35,90 30,100" fill="none" stroke="#ff7675" stroke-width="4" stroke-linecap="round"/>
    <path d="M50,75 C55,85 55,95 50,105" fill="none" stroke="#ff7675" stroke-width="4" stroke-linecap="round"/>
    <path d="M70,70 C65,80 65,90 70,100" fill="none" stroke="#ff7675" stroke-width="4" stroke-linecap="round"/>
  </g>

  <!-- Shadows and Highlights -->
  <ellipse cx="240" cy="60" r="40" fill="url(#moonGradient)" opacity="0.3"/>
  <path d="M100,200 Q150,240 200,200" fill="none" stroke="url(#shadowGradient)" stroke-width="10" opacity="0.3"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:limegreen;stop-opacity:1" />
      <stop offset="100%" style="stop-color:darkgreen;stop-opacity:0.8" />
    </radialGradient>
    <linearGradient id="iceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:lightblue;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:blue;stop-opacity:0.6" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:gold;stop-opacity:0.9" />
      <stop offset="100%" style="stop-color:orange;stop-opacity:0.9" />
    </linearGradient>
    <pattern id="dots" x="0" y="0" width=".1" height=".1" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="lightgreen" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#dots)" />
  <circle cx="230" cy="70" r="50" fill="url(#moonGradient)" />
  <path d="M50,180 Q75,120 100,180 T150,180 T200,180 T250,180" fill="url(#iceGradient)" />
  <g transform="translate(100, 150) rotate(25)">
    <ellipse cx="40" cy="20" rx="50" ry="20" fill="url(#clockGradient)" />
    <path d="M25,15 L35,45 L55,35 Z" fill="brown" transform="translate(-10, -5) rotate(-15)" />
    <g transform="translate(25, 15)">
      <circle cx="0" cy="0" r="2" fill="black" />
      <line x1="0" y1="0" x2="10" y2="0" stroke="black" stroke-width="2" />
      <line x1="0" y1="0" x2="0" y2="-10" stroke="black" stroke-width="2" transform="rotate(120)" />
    </g>
  </g>
  <path d="M140,140 C150,180 180,220 210,200 Q240,180 200,180 Q160,160 140,140" fill="url(#clockGradient)" />
</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 captures the surreal essence of the melting clock with a more dynamic and abstract representation, using vibrant colors and shapes that suggest melting.

    The composition is visually intriguing and aligns well with the prompt's dreamlike quality.

    Player 1's image, while clear in its depiction, lacks the same level of creativity and surreal quality.

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

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
3

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
4

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
13
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
6
Player 2
4
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
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