Back

SVG Drawing Match #1418

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Melting clock on a skateboarding pizza slice under a disco ball"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="clockGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#CD7F32;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="discoGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
      <stop offset="33%" style="stop-color:#00FF00;stop-opacity:1" />
      <stop offset="66%" style="stop-color:#0000FF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0" />
    </radialGradient>
  </defs>
  <path d="M150 250 Q 120 220 150 180 Q 180 140 150 120 Q 120 100 150 80 Q 180 60 150 30 Q 120 0 150 20 Q 180 40 150 60 Z" fill="url(#clockGrad)" />
  <path d="M100 150 L 200 150 L 150 250 Z" fill="#FF6B6B">
    <animate attributeName="points" from="100,150 200,150 150,250" to="100,150 200,150 150,230" dur="1s" repeatCount="indefinite" />
  </path>
  <rect x="130" y="220" width="40" height="10" rx="5" fill="#DEB887" />
  <circle cx="150" cy="160" r="5" fill="#FF4500" />
  <circle cx="150" cy="140" r="5" fill="#FF4500" />
  <path d="M140 240 L 160 240 L 155 255" fill="#FFD700" />
  <circle cx="150" cy="100" r="80" fill="url(#discoGrad)" />
  <g transform="translate(150,180)">
    <rect x="-20" y="-20" width="40" height="40" rx="10" fill="#2F4F4F" />
    <circle cx="-15" cy="-15" r="5" fill="#FFFFFF" />
    <circle cx="15" cy="-15" r="5" fill="#FFFFFF" />
    <rect x="-20" y="10" width="40" height="5" rx="2" fill="#FFA500" />
  </g>
  <g transform="translate(150,220)">
    <rect x="-20" y="-20" width="40" height="40" rx="20" fill="#FF6B6B" />
    <rect x="-10" y="-10" width="20" height="20" rx="10" fill="#FFFFFF" />
  </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="meltingClock" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFCC00; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6699; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="pizzaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#DCA27A; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#CE8B55; stop-opacity:1" />
    </radialGradient>
    <pattern id="discoBallPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect x="0" y="0" width="10" height="10" fill="white" />
      <circle cx="5" cy="5" r="3" fill="grey" />
    </pattern>
  </defs>

  <rect width="100%" height="100%" fill="#4A4E69" />

  <g transform="translate(30, 230)">
    <path d="M40 0 Q10 20, 0 40 Q20 70, 50 50 Q90 40, 80 0 Q60 20, 40 0 Z" fill="url(#pizzaGradient)" />
    <ellipse cx="25" cy="40" rx="8" ry="4" fill="white" />
    <ellipse cx="35" cy="40" rx="7" ry="3" fill="red" />
    <ellipse cx="20" cy="45" rx="5" ry="2" fill="green" />
    <ellipse cx="40" cy="45" rx="5" ry="2" fill="black" />
    <path d="M15 60 L0 70 L5 75 Q10 80, 20 75 Q30 70, 15 60 Z" fill="#9B59B6" />
    <path d="M25 50 Q23 60, 27 60 Q25 58, 25 50 Z" fill="#FDCB82" />
  </g>

  <g transform="translate(200, 95)">
    <ellipse cx="0" cy="0" rx="30" ry="45" fill="url(#meltingClock)" />
    <text x="-10" y="-10" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">12</text>
    <text x="-15" y="1" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">9</text>
    <text x="5" y="15" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">3</text>
    <text x="-10" y="25" font-family="Arial" font-size="12" fill="black" transform="rotate(-20)">6</text>
    <line x1="-5" y1="0" x2="5" y2="0" stroke="black" stroke-width="2" />
    <path d="M-8 10 Q-5 20, -4 10" stroke="black" stroke-width="1" fill="none" />
    <path d="M8 10 Q5 20, 4 10" stroke="black" stroke-width="1" fill="none" />
  </g>

  <g transform="translate(150, 30)">
    <rect x="-20" y="-20" width="40" height="40" fill="url(#discoBallPattern)" />
    <circle cx="0" cy="0" r="20" stroke="silver" stroke-width="3" fill="none" />
    <ellipse cx="0" cy="0" rx="20" ry="10" fill="none" stroke="lightblue" stroke-width="0.5" />
    <ellipse cx="0" cy="0" rx="15" ry="7" fill="none" stroke="lightpink" stroke-width="0.5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt with clearer elements: a visible disco ball, a melting clock with numbers, and a pizza slice.

    The composition is more coherent and visually appealing, while Player 1's image lacks clarity and recognizable elements related to the prompt.

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
13
Player 2
18
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
5
Player 2
2
Ellipses

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

Player 1
Player 2
7
Lines

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

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

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

Player 1
2
Player 2
3

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
11

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
7

Complexity Metrics

Path Commands

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

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