Back

SVG Drawing Match #311

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock with wings flying through a forest of giant, floating eyeballs"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the sky -->
    <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#96c8ff" />
      <stop offset="100%" stop-color="#ffffff" />
    </linearGradient>
    <!-- Gradient for the clock -->
    <radialGradient id="clockGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color: rgb(240,233,211);" />
      <stop offset="100%" style="stop-color: rgb(200,177,130);" />
    </radialGradient>
    <!-- Wing pattern -->
    <pattern id="wingPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#ffebcd" />
    </pattern>
  </defs>
  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Surreal floating eyeballs -->
  <g>
    <circle cx="70" cy="70" r="30" fill="white" />
    <circle cx="70" cy="70" r="20" fill="skyblue" />
    <circle cx="70" cy="70" r="10" fill="black" />
    <circle cx="230" cy="60" r="25" fill="white" />
    <circle cx="230" cy="60" r="15" fill="skyblue" />
    <circle cx="230" cy="60" r="8" fill="black" />
    <circle cx="150" cy="200" r="35" fill="white" />
    <circle cx="150" cy="200" r="25" fill="skyblue" />
    <circle cx="150" cy="200" r="12" fill="black" />
    <circle cx="210" cy="220" r="30" fill="white" />
    <circle cx="210" cy="220" r="20" fill="skyblue" />
    <circle cx="210" cy="220" r="10" fill="black" />
  </g>
  <!-- Flying surreal clock -->
  <g transform="translate(100, 100)">
    <!-- Clock body -->
    <circle r="40" fill="url(#clockGradient)" stroke="#8b6b29" stroke-width="3" />
    <!-- Clock face markings -->
    <line x1="0" y1="-30" x2="0" y2="-38" stroke="black" stroke-width="2" />
    <line x1="28" y1="-28" x2="35" y2="-35" stroke="black" stroke-width="2" />
    <line x1="30" y1="0" x2="38" y2="0" stroke="black" stroke-width="2" />
    <line x1="28" y1="28" x2="35" y2="35" stroke="black" stroke-width="2" />
    <line x1="0" y1="30" x2="0" y2="38" stroke="black" stroke-width="2" />
    <line x1="-28" y1="28" x2="-35" y2="35" stroke="black" stroke-width="2" />
    <line x1="-30" y1="0" x2="-38" y2="0" stroke="black" stroke-width="2" />
    <line x1="-28" y1="-28" x2="-35" y2="-35" stroke="black" stroke-width="2" />
    <!-- Clock hands -->
    <line x1="0" y1="0" x2="10" y2="-20" stroke="black" stroke-width="3" />
    <line x1="0" y1="0" x2="20" y2="10" stroke="black" stroke-width="2" />
    <!-- Wings -->
    <g transform="rotate(-15)">
      <path d="M-40,-10 Q-70,-40 -100,-20 Q-70,0 -40,-10" fill="url(#wingPattern)" />
      <path d="M40,-10 Q70,-40 100,-20 Q70,0 40,-10" fill="url(#wingPattern)" />
    </g>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#ff7e5f;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#feb47b;stop-opacity:1" />
        </linearGradient>
        <linearGradient id="eyeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#50c9c3;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#96deda;stop-opacity:1" />
        </linearGradient>
    </defs>
    <rect width="100%" height="100%" fill="#2c3e50" />
    <ellipse cx="150" cy="230" rx="18" ry="10" fill="white" />
    <ellipse cx="150" cy="230" rx="16" ry="8" fill="black" />
    <ellipse cx="150" cy="230" rx="8" ry="4" fill="red" />
    <path d="M150 100 C120 70, 120 130, 150 100" fill="none" stroke="gold" stroke-width="3" />
    <path d="M150 100 C180 70, 180 130, 150 100" fill="none" stroke="gold" stroke-width="3" />
    <path d="M120 80 Q 150 50, 180 80" fill="none" stroke="gold" stroke-width="3" />
    <g transform="translate(150, 150)">
        <g fill="none" stroke="black" stroke-width="3">
            <circle cx="0" cy="0" r="40" fill="url(#wingGradient)" />
            <circle cx="0" cy="0" r="38" fill="white" />
            <circle cx="0" cy="0" r="30" fill="url(#wingGradient)" />
        </g>
        <text x="-10" y="10" font-family="Arial" font-size="12" fill="black">12</text>
        <text x="-20" y="-25" font-family="Arial" font-size="12" fill="black">9</text>
        <text x="20" y="-25" font-family="Arial" font-size="12" fill="black">3</text>
        <text x="-10" y="25" font-family="Arial" font-size="12" fill="black">6</text>
    </g>
    <g>
        <circle cx="50" cy="50" r="15" fill="url(#eyeGradient)" />
        <circle cx="50" cy="50" r="10" fill="white" />
        <circle cx="50" cy="50" r="5" fill="black" />
        <circle cx="250" cy="80" r="15" fill="url(#eyeGradient)" />
        <circle cx="250" cy="80" r="10" fill="white" />
        <circle cx="250" cy="80" r="5" fill="black" />
        <circle cx="100" cy="200" r="15" fill="url(#eyeGradient)" />
        <circle cx="100" cy="200" r="10" fill="white" />
        <circle cx="100" cy="200" r="5" fill="black" />
    </g>
    <g transform="translate(60, 10) rotate(-20)">
        <path d="M-40 40 Q0 -60 40 40 Q80 140 40 140 Q0 240 -40 140 Q-80 40 -40 40" fill="url(#wingGradient)" />
    </g>
    <g transform="translate(190, 220) rotate(20)">
        <path d="M-40 40 Q0 -60 40 40 Q80 140 40 140 Q0 240 -40 140 Q-80 40 -40 40" fill="url(#wingGradient)" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image effectively captures the surreal concept with a clock that has clear, wing-like elements flying through a sky populated by floating eyeballs.

    The composition is clean and visually appealing, with a good balance between the elements.

    Player 2's image, while creative, lacks clarity in the depiction of wings and is less visually cohesive, making Player 1's submission the stronger contender.

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
27
Player 2
21
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
14
Player 2
12
Ellipses

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

Player 1
Player 2
3
Lines

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

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

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

Player 1
3
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
5

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
3

Complexity Metrics

Path Commands

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

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

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