Back

SVG Drawing Match #956

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal: A clock melting over a fish swimming through floating piano keys"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <defs>
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(58,123,213);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,210,255);stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Piano Keys -->
  <g transform="translate(30, 210)">
    <rect x="0" y="0" width="30" height="10" fill="white" />
    <rect x="40" y="-5" width="30" height="15" fill="white" />
    <rect x="80" y="-10" width="30" height="20" fill="white" />
    <rect x="120" y="-5" width="30" height="15" fill="white" />
    <rect x="160" y="0" width="30" height="10" fill="white" />
    <rect x="200" y="5" width="30" height="5" fill="white" />
  </g>
  
  <!-- Fish -->
  <g transform="translate(150, 160)">
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="gold" stroke="darkorange" stroke-width="2" />
    <polygon points="-45,-10 -30,0 -45,10" fill="gold" stroke="darkorange" stroke-width="2"/>
    <circle cx="-10" cy="-5" r="2.5" fill="black" />
  </g>

  <!-- Melting Clock -->
  <g transform="translate(90, 90)">
    <path d="M0,0 C30,0 40,30 20,60 C0,90 -30,90 -40,60 C-50,30 -30,0 0,0 Z" fill="#f1c232" stroke="#7f6000" stroke-width="2"/>
    <line x1="2" y1="25" x2="10" y2="45" stroke="brown" stroke-width="2" />
    <line x1="2" y1="25" x2="-15" y2="25" stroke="brown" stroke-width="2" />
    <circle cx="0" cy="25" r="3" fill="brown" />
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="grad-blue" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#79d2f2" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#0089ff" stop-opacity="1" />
    </linearGradient>
    <radialGradient id="grad-red" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff9979" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#ff4646" stop-opacity="1" />
    </linearGradient>
    <linearGradient id="grad-purple" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#7f90bb" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#9757ff" stop-opacity="1" />
    </linearGradient>
  </defs>
  <!-- Floating piano keys -->
  <rect x="50" y="100" width="200" height="20" rx="10" fill="#fff" stroke="#ddd" />
  <rect x="60" y="120" width="180" height="20" rx="10" fill="#fff" stroke="#ddd" />
  <rect x="70" y="140" width="160" height="20" rx="10" fill="#fff" stroke="#ddd" />
  <rect x="80" y="160" width="140" height="20" rx="10" fill="#fff" stroke="#ddd" />
  <rect x="90" y="180" width="120" height="20" rx="10" fill="#fff" stroke="#ddd" />
  <!-- Fish shape -->
  <path d="M110 200C100 220 100 240 120 250 160 220 180 230 180 200Z" stroke="#000" fill="url(#grad-blue)" />
  <circle cx="140" cy="190" r="5" fill="#fff" stroke="#000" />
  <!-- Melting clock -->
  <g transform="translate(230 150)">
    <rect x="-30" y="-50" width="60" height="80" rx="10" fill="#333" stroke="#000" />
    <circle cx="0" cy="0" r="40" fill="#333" stroke="#000" />
    <line x1="0" y1="0" x2="0" y2="50" stroke="#fff" stroke-width="5" />
    <line x1="0" y1="0" x2="20" y2="40" stroke="#fff" stroke-width="5" />
  </g>
  <!-- Clock details -->
  <g transform="translate(255 152)">
    <text font-size="12" font-family="Arial" fill="#fff">5</text>
  </g>
  <g transform="translate(255 180)">
    <text font-size="12" font-family="Arial" fill="#fff">10</text>
  </g>
  <g transform="translate(255 172)">
    <circle cx="0" cy="0" r="5" fill="#fff" stroke="#000" />
  </g>
  <!-- Gradient background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#grad-purple)" opacity="0.3" />
  <!-- Bubble animation -->
  <g transform="translate(120 250)">
    <circle cx="0" cy="0" r="10" fill="#fff" stroke="#000" />
    <animateTransform attributeName="transform" begin="0s" dur="2s" from="translate(0 0)" to="translate(10 10)" repeatCount="indefinite" />
  </g>
  <g transform="translate(130 260)">
    <circle cx="0" cy="0" r="10" fill="#fff" stroke="#000" />
    <animateTransform attributeName="transform" begin="1s" dur="2s" from="translate(0 0)" to="translate(-10 -10)" repeatCount="indefinite" />
  </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 submission captures the surreal concept with a clock and fish, and attempts to include piano keys, even though they are represented simply.

    The image maintains a balance of elements, adhering to the prompt, while Player 2's submission failed to load and cannot be evaluated.

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
14
Player 2
Rectangles

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

Player 1
7
Player 2
Circles

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

Player 1
2
Player 2
Ellipses

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

Player 1
1
Player 2
Lines

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

Player 1
2
Player 2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
1
Player 2
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2

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