Back

SVG Drawing Match #1593

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a flaming ice cube"

SVG by Qwen-2.5-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF6347" />
      <stop offset="100%" stop-color="#FFA07A" />
    </linearGradient>
    <linearGradient id="iceGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#1E90FF" />
      <stop offset="100%" stop-color="#ADD8E6" />
    </linearGradient>
    <linearGradient id="flameGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF4500" />
      <stop offset="100%" stop-color="#FFD700" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#8B4513" />
  <path d="M150,20 Q120,80 150,140 Q180,200 150,260 Q120,320 150,380" stroke="black" stroke-width="5" fill="url(#clockGradient)" />
  <circle cx="150" cy="150" r="50" fill="url(#iceGradient)" />
  <path d="M140,140 Q120,150 140,160 Q160,170 140,180 Q120,190 140,200" stroke="black" stroke-width="2" fill="url(#flameGradient)" />
  <path d="M160,140 Q180,150 160,160 Q140,170 160,180 Q180,190 160,200" stroke="black" stroke-width="2" fill="url(#flameGradient)" />
  <path d="M150,140 Q130,150 150,160 Q170,170 150,180 Q130,190 150,200" stroke="black" stroke-width="2" fill="url(#flameGradient)" />
  <path d="M150,140 Q170,150 150,160 Q130,170 150,180 Q170,190 150,200" stroke="black" stroke-width="2" fill="url(#flameGradient)" />
</svg>
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="100%" y2="100%">
      <stop offset="0%" style="stop-color:#1e3c72; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2a5298; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#f0f0f0; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#d0d0d0; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="fireGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff9a00; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff0000; stop-opacity:0" />
    </radialGradient>
    <radialGradient id="iceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#a0c4ff; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#69a3ff; stop-opacity:0.7" />
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="rgba(0,0,0,0.5)" />
    </filter>
  </defs>

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

  <!-- Ice Cube with Flames -->
  <g transform="translate(150,200)">
    <!-- Ice Cube -->
    <polygon points="-60,-60 60,-60 60,60 -60,60" fill="url(#iceGradient)" stroke="#69a3ff" stroke-width="2"/>
    <!-- Flames -->
    <path d="M-30,-60 C-20,-80,20,-80,30,-60 C25,-70,15,-65,0,-75 C-15,-65,-25,-70,-30,-60 Z" fill="url(#fireGradient)" opacity="0.8">
      <animateTransform attributeName="transform" type="scale" values="1,1;1.2,1.2;1" dur="2s" repeatCount="indefinite"/>
    </path>
    <path d="M-10,-60 C-5,-85,15,-85,20,-60 C18,-70,10,-65,0,-78 C-10,-65,-18,-70,-20,-60 Z" fill="url(#fireGradient)" opacity="0.6">
      <animateTransform attributeName="transform" type="scale" values="1,1;1.1,1.1;1" dur="2.5s" repeatCount="indefinite"/>
    </path>
  </g>

  <!-- Melting Clock -->
  <g transform="translate(150,100)">
    <!-- Clock Face -->
    <circle cx="0" cy="0" r="50" fill="url(#clockGradient)" stroke="#999" stroke-width="3" filter="url(#shadow)"/>
    <!-- Hour Marks -->
    <g stroke="#333" stroke-width="2">
      <line x1="0" y1="-40" x2="0" y2="-45"/>
      <line x1="35.36" y1="-35.36" x2="38" y2="-38"/>
      <line x1="40" y1="0" x2="45" y2="0"/>
      <line x1="35.36" y1="35.36" x2="38" y2="38"/>
      <line x1="0" y1="40" x2="0" y2="45"/>
      <line x1="-35.36" y1="35.36" x2="-38" y2="38"/>
      <line x1="-40" y1="0" x2="-45" y2="0"/>
      <line x1="-35.36" y1="-35.36" x2="-38" y2="-38"/>
    </g>
    <!-- Numbers -->
    <text x="0" y="-25" text-anchor="middle" font-size="12" fill="#333">12</text>
    <text x="22" y="-18" text-anchor="middle" font-size="12" fill="#333">1</text>
    <text x="35" y="0" text-anchor="middle" font-size="12" fill="#333">3</text>
    <text x="22" y="22" text-anchor="middle" font-size="12" fill="#333">5</text>
    <text x="0" y="35" text-anchor="middle" font-size="12" fill="#333">6</text>
    <text x="-22" y="22" text-anchor="middle" font-size="12" fill="#333">7</text>
    <text x="-35" y="0" text-anchor="middle" font-size="12" fill="#333">9</text>
    <text x="-22" y="-18" text-anchor="middle" font-size="12" fill="#333">11</text>
    <!-- Clock Hands -->
    <line x1="0" y1="0" x2="0" y2="-15" stroke="#333" stroke-width="4" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="60s" repeatCount="indefinite"/>
    </line>
    <line x1="0" y1="0" x2="0" y2="-20" stroke="#333" stroke-width="2" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="10s" repeatCount="indefinite"/>
    </line>
    <!-- Melting Drips -->
    <path d="M-25,50 C-25,60 -15,60 -15,70 S-25,80 -25,90" fill="none" stroke="#999" stroke-width="3" filter="url(#shadow)"/>
    <path d="M25,50 C25,60 15,60 15,70 S25,80 25,90" fill="none" stroke="#999" stroke-width="3" filter="url(#shadow)"/>
    <path d="M-10,50 C-10,55 0,55 0,60 S-10,65 -10,70" fill="none" stroke="#999" stroke-width="3" filter="url(#shadow)"/>
    <path d="M10,50 C10,55 20,55 20,60 S10,65 10,70" fill="none" stroke="#999" stroke-width="3" filter="url(#shadow)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image clearly depicts a surreal clock melting over an ice cube, with the melting effect and the cube being visually distinct.

    It adheres more closely to the prompt with a surrealistic approach and better technical execution.

    Player 1's image lacks clarity in representing the melting clock over an ice cube concept.

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

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

Player 1
Player 2
Lines

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

Player 1
Player 2
10
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
5
Player 2
6
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
3

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
4
Elements with Transform

The number of elements with transform attributes in the SVG.

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

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