Back

SVG Drawing Match #2033

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a tree branch at sunset"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sunset background -->
  <defs>
    <linearGradient id="sunset" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#ff8f00;stop-opacity:1" />
      <stop offset="0.5" style="stop-color:#ff6b6b;stop-opacity:1" />
      <stop offset="1" style="stop-color:#8b008b;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="clockGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" style="stop-color:#ffd700;stop-opacity:1" />
      <stop offset="1" style="stop-color:#b88800;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="leafGrad" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" style="stop-color:#32cd32;stop-opacity:1" />
      <stop offset="1" style="stop-color:#ffd700;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Background with sunset gradient -->
  <rect width="300" height="300" fill="url(#sunset)" />

  <!-- Tree branch -->
  <path d="M150,200 C160,190 170,180 180,170 C190,160 200,150 210,140 L210,130 L185,125 L160,120 L135,115 L110,110 L85,105 L60,100 L35,95 L10,90 L0,85" 
        stroke="#4a2b0a" stroke-width="4" fill="none" opacity="0.8"/>

  <!-- Clock face -->
  <circle cx="150" cy="170" r="30" fill="url(#clockGrad)" />
  <!-- Melting clock numbers -->
  <g transform="translate(150,170)" opacity="0.9">
    <!-- Distorted numbers -->
    <text x="-25" y="-20" transform="rotate(-10)" style="font-family:Arial; font-size:20; fill:#b88800;">XII</text>
    <text x="0" y="10" transform="rotate(-5)" style="font-family:Arial; font-size:20; fill:#b88800;">III</text>
    <text x="20" y="-10" transform="rotate(5)" style="font-family:Arial; font-size:20; fill:#b88800;">VI</text>
    <text x="-15" y="-5" transform="rotate(10)" style="font-family:Arial; font-size:20; fill:#b88800;">IX</text>
  </g>

  <!-- Melting clock hands -->
  <path d="M150,170 L160,165" stroke="#ffd700" stroke-width="2"/>
  <path d="M150,170 L140,175" stroke="#ffd700" stroke-width="2"/>

  <!-- Melting droplets -->
  <circle cx="160" cy="180" r="4" fill="url(#clockGrad)" opacity="0.6"/>
  <circle cx="140" cy="185" r="4" fill="url(#clockGrad)" opacity="0.6"/>
  <circle cx="150" cy="190" r="5" fill="url(#clockGrad)" opacity="0.6"/>

  <!-- Tree leaves -->
  <circle cx="180" cy="160" r="10" fill="url(#leafGrad)"/>
  <circle cx="120" cy="160" r="10" fill="url(#leafGrad)"/>
  <circle cx="150" cy="140" r="8" fill="url(#leafGrad)"/>

  <!-- Birds flying away -->
  <path d="M250,100 L270,90 L290,100" fill="#2b2b2b"/>
  <path d="M240,110 L260,100 L280,110" fill="#2b2b2b"/>
  <path d="M230,120 L250,110 L270,120" fill="#2b2b2b"/>

  <!-- Additional tree branch details -->
  <path d="M150,200 C160,190 170,180 180,170 C190,160 200,150 210,140" 
        stroke="#4a2b0a" stroke-width="2" fill="none" opacity="0.4"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,120,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(75,0,130);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,255,204);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(204,204,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="treeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(102,51,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(51,51,0);stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#sunsetGradient)" />
  <path d="M240,150 Q260,140 280,150 L270,250 Q250,240 250,210 Q240,220 240,250 Q220,240 220,210 L230,150 Z" fill="url(#treeGradient)" />
  <ellipse cx="230" cy="155" rx="45" ry="15" fill="url(#clockGradient)" transform="rotate(10 230 155)" />
  <path d="M200,155 C230,180 250,190 235,210 C215,230 180,220 170,200 Q190,180 200,155" fill="url(#clockGradient)" />
  <circle cx="230" cy="155" r="5" fill="brown" />
  <line x1="230" y1="155" x2="245" y2="160" stroke="brown" stroke-width="2" />
  <line x1="230" y1="155" x2="230" y2="175" stroke="brown" stroke-width="2" />
  <text x="220" y="130" font-family="Arial" font-size="12" fill="brown">12</text>
  <text x="170" y="200" font-family="Arial" font-size="12" fill="brown">6</text>
  <text x="225" y="188" font-family="Arial" font-size="12" fill="brown">3</text>
  <text x="208" y="158" font-family="Arial" font-size="12" fill="brown">9</text>
</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 effectively captures the surreal concept with a melting clock draped over a tree branch, set against a vivid sunset gradient.

    The composition is clear and visually appealing, with a stronger adherence to the prompt.

    Player 1's image, while creative, lacks clarity in conveying the theme and appears more abstract, making it less effective thematically.

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
15
Player 2
7
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
7
Player 2
1
Ellipses

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
1

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

Complexity Metrics

Path Commands

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

Player 1
29
Player 2
12
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
3
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
4
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