Back

SVG Drawing Match #449

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock with melting numbers turning into birds flying away"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="clockGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#1a1a1a;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4a4a4a;stop-opacity:1" />
    </linearGradient>
    <filter id="meltFilter">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feColorMatrix values="0 0 0 0 0.5   0 0 0 0.5 0   0 0 0 0.5 0   0 0 0 1 0" result="color"/>
      <feBlend in="SourceGraphic" in2="color" mode="multiply"/>
    </filter>
    <path id="birdPath" d="M10 20 Q 15 15, 20 20 Q 15 25, 10 30 Q 5 25, 0 20 Q 5 15, 10 20 Z"/>
    <linearGradient id="birdGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#2d1810;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#5b2a1a;stop-opacity:1" />
    </linearGradient>
    <filter id="glowFilter">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#clockGrad)"/>
  
  <!-- Clock Face -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#fff" stroke-width="2"/>
  <circle cx="150" cy="150" r="110" fill="none" stroke="#fff" stroke-width="1"/>
  <circle cx="150" cy="150" r="100" fill="none" stroke="#fff" stroke-width="1"/>
  
  <!-- Center Gear -->
  <circle cx="150" cy="150" r="20" fill="#333"/>
  <path d="M150 0 L 300 150 L 150 300 L 0 150 Z" fill="#666"/>
  
  <!-- Melting Numbers -->
  <g filter="url(#meltFilter)">
    <text x="150" y="30" text-anchor="middle" font-size="24" font-family="Arial" fill="#fff" opacity="0.8">12</text>
    <text x="270" y="150" text-anchor="end" font-size="24" font-family="Arial" fill="#fff" opacity="0.8">3</text>
    <text x="150" y="270" text-anchor="middle" font-size="24" font-family="Arial" fill="#fff" opacity="0.8">6</text>
    <text x="30" y="150" text-anchor="start" font-size="24" font-family="Arial" fill="#fff" opacity="0.8">9</text>
  </g>
  
  <!-- Birds -->
  <use xlink:href="#birdPath" x="200" y="100" fill="url(#birdGrad)" transform="rotate(45)" filter="url(#glowFilter)"/>
  <use xlink:href="#birdPath" x="250" y="200" fill="url(#birdGrad)" transform="rotate(135)" filter="url(#glowFilter)"/>
  <use xlink:href="#birdPath" x="180" y="250" fill="url(#birdGrad)" transform="rotate(225)" filter="url(#glowFilter)"/>
  <use xlink:href="#birdPath" x="120" y="200" fill="url(#birdGrad)" transform="rotate(315)" filter="url(#glowFilter)"/>
  
  <!-- Floating Feathers -->
  <path d="M200 100 Q 220 90, 240 100" fill="none" stroke="#fff" stroke-width="1" opacity="0.5"/>
  <path d="M240 200 Q 260 190, 280 200" fill="none" stroke="#fff" stroke-width="1" opacity="0.5"/>
  <path d="M180 250 Q 160 240, 140 250" fill="none" stroke="#fff" stroke-width="1" opacity="0.5"/>
  <path d="M120 200 Q 100 190, 80 200" fill="none" stroke="#fff" stroke-width="1" opacity="0.5"/>
  
  <!-- Background Birds -->
  <use xlink:href="#birdPath" x="50" y="50" fill="url(#birdGrad)" transform="rotate(45)" opacity="0.3"/>
  <use xlink:href="#birdPath" x="250" y="50" fill="url(#birdGrad)" transform="rotate(135)" opacity="0.3"/>
  <use xlink:href="#birdPath" x="50" y="250" fill="url(#birdGrad)" transform="rotate(225)" opacity="0.3"/>
  <use xlink:href="#birdPath" x="250" y="250" fill="url(#birdGrad)" transform="rotate(315)" opacity="0.3"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#cccccc" />
    </radialGradient>
    <linearGradient id="numberGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff6f91" />
      <stop offset="100%" stop-color="#ff9671" />
    </linearGradient>
    <linearGradient id="dripGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffc75f" />
      <stop offset="100%" stop-color="#f9f871" />
    </linearGradient>
    <pattern id="birdPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,5 L5,0 L10,5 L5,10 Z" fill="#455A64" />
    </pattern>
  </defs>
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Clock Face -->
  <circle cx="150" cy="150" r="100" fill="url(#clockGradient)" stroke="#333" stroke-width="2"/>
  
  <!-- Clock Center -->
  <circle cx="150" cy="150" r="5" fill="#333" />
  
  <!-- Clock Hands -->
  <line x1="150" y1="150" x2="150" y2="80" stroke="#333" stroke-width="3" stroke-linecap="round"/>
  <line x1="150" y1="150" x2="200" y2="150" stroke="#333" stroke-width="3" stroke-linecap="round"/>
  
  <!-- Melting Numbers -->
  <text x="150" y="60" text-anchor="middle" font-size="20" fill="url(#numberGradient)" font-family="Arial" transform="rotate(-10 150,60)">
    12
  </text>
  <text x="240" y="150" text-anchor="middle" font-size="20" fill="url(#numberGradient)" font-family="Arial" transform="rotate(-5 240,150)">
    3
  </text>
  <text x="150" y="240" text-anchor="middle" font-size="20" fill="url(#numberGradient)" font-family="Arial" transform="rotate(10 150,240)">
    6
  </text>
  <text x="60" y="150" text-anchor="middle" font-size="20" fill="url(#numberGradient)" font-family="Arial" transform="rotate(5 60,150)">
    9
  </text>
  
  <!-- Dripping Effects -->
  <path d="M150,60 C148,70 152,80 150,90" stroke="url(#dripGradient)" stroke-width="3" fill="none" />
  <path d="M240,150 C230,155 220,160 210,165" stroke="url(#dripGradient)" stroke-width="3" fill="none" />
  <path d="M150,240 C160,250 170,255 180,260" stroke="url(#dripGradient)" stroke-width="3" fill="none" />
  <path d="M60,150 C55,160 50,170 45,180" stroke="url(#dripGradient)" stroke-width="3" fill="none" />
  
  <!-- Birds Flying Away -->
  <g fill="url(#birdPattern)" opacity="0.8">
    <path d="M155,80 L160,75 L165,80 Z" transform="translate(0,0) rotate(-15 160 78)" />
    <path d="M205,150 L210,145 L215,150 Z" transform="translate(-10,10) rotate(-10 210 148)" />
    <path d="M150,250 L155,245 L160,250 Z" transform="translate(5,-5) rotate(20 155 248)" />
    <path d="M50,160 L55,155 L60,160 Z" transform="translate(10,-10) rotate(-25 55 158)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's image effectively captures the surreal theme with numbers dynamically transforming into birds, aligning closely with the prompt.

    The creative melting effect and flying birds are visually engaging and technically well-executed.

    In contrast, Player 2's image lacks the transformation aspect, making it less adherent to the prompt's requirements.

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
11
Player 2
14
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
4
Player 2
2
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
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
6
Player 2
9
Groups

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
10

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
8
Player 2
8

Complexity Metrics

Path Commands

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

Player 1
19
Player 2
29
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
5
Player 2
5
Use Elements

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

Player 1
8
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