Back

SVG Drawing Match #2169

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock-faced tree with melting leaf numbers"

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="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#f0e68c"/>
    </linearGradient>
    <radialGradient id="treeGradient" cx="150" cy="150" r="100" fx="150" fy="150">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <linearGradient id="trunkGradient" x1="150" y1="300" x2="150" y2="180">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#654321"/>
    </linearGradient>
    <filter id="melting">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" />
      <feOffset in="blur" dx="0" dy="2" result="offsetBlur"/>
      <feMerge>
        <feMergeNode in="offsetBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <style>
      .leaf {
        fill: url(#treeGradient);
        filter: url(#melting);
      }
      .trunk {
        fill: url(#trunkGradient);
      }
      .clock-face {
        fill: none;
        stroke: #fff;
        stroke-width: 2;
      }
      .clock-hand {
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
      }
      .number {
        fill: #fff;
        font-family: Arial, sans-serif;
        font-size: 12px;
        text-anchor: middle;
        filter: url(#melting);
      }
    </style>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Trunk -->
  <rect x="140" y="180" width="20" height="120" class="trunk" />
  
  <!-- Branches -->
  <path d="M150 180 Q130 150 100 130" stroke="#654321" stroke-width="5" fill="none"/>
  <path d="M150 180 Q170 150 200 130" stroke="#654321" stroke-width="5" fill="none"/>
  
  <!-- Clock Face -->
  <circle cx="150" cy="100" r="50" class="clock-face" />
  
  <!-- Clock Numbers as Melting Leaves -->
  <g>
    <text x="150" y="70" class="number">12</text>
    <text x="190" y="100" class="number">3</text>
    <text x="150" y="130" class="number">6</text>
    <text x="110" y="100" class="number">9</text>
  </g>
  
  <!-- Clock Hands -->
  <line x1="150" y1="100" x2="150" y2="80" class="clock-hand"/>
  <line x1="150" y1="100" x2="170" y2="100" class="clock-hand"/>
  
  <!-- Tree Canopy -->
  <ellipse cx="150" cy="100" rx="60" ry="40" fill="url(#treeGradient)" />
  
  <!-- Additional Melting Leaves -->
  <path d="M130 90 Q125 95 130 100 Q135 95 130 90" class="leaf" />
  <path d="M170 90 Q165 95 170 100 Q175 95 170 90" class="leaf" />
  <path d="M140 120 Q138 125 140 130 Q142 125 140 120" class="leaf" />
  <path d="M160 120 Q158 125 160 130 Q162 125 160 120" class="leaf" />
  
  <!-- Ground -->
  <ellipse cx="150" cy="300" rx="300" ry="20" fill="#556B2F"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="meltGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
      <stop offset="70%" style="stop-color:#ffa7a7;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffe6e6;stop-opacity:0" />
    </radialGradient>
    <pattern id="leafPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="url(#meltGradient)" />
    </pattern>
  </defs>
  <g transform="translate(150,150)">
    <!-- Tree Trunk -->
    <rect x="-10" y="-120" width="20" height="120" fill="#3d2b1f" />
    
    <!-- Branches -->
    <g transform="rotate(45)">
      <line x1="0" y1="0" x2="80" y2="80" stroke="#654321" stroke-width="4" />
      <g transform="translate(60,60)">
        <circle r="15" fill="url(#meltGradient)" />
        <text font-size="6" fill="#ffffff">
          <textPath xlink:href="M0,0 15,0 15,15 0,15Z">
            12 1 2 3 4 5 6 7 8 9 10 11
          </textPath>
        </text>
      </g>
    </g>
    <g transform="rotate(-45)">
      <line x1="0" y1="0" x2="80" y2="-80" stroke="#654321" stroke-width="4" />
      <g transform="translate(60,-60)">
        <circle r="15" fill="url(#meltGradient)" />
        <text font-size="6" fill="#ffffff">
          <textPath xlink:href="M0,0 15,0 15,15 0,15Z">
            12 1 2 3 4 5 6 7 8 9 10 11
          </textPath>
        </text>
      </g>
    </g>
    
    <!-- Clock Face Leaves -->
    <g transform="rotate(30)">
      <circle cx="40" cy="0" r="15" fill="url(#meltGradient)" />
      <text x="40" y="0" font-size="6" fill="#ffffff" transform="rotate(-30 40 0)">
        <textPath xlink:href="M0,0 30,0 30,30 0,30Z">
          12 1 2 3 4 5 6 7 8 9 10 11
        </textPath>
      </text>
    </g>
    <g transform="rotate(-30)">
      <circle cx="40" cy="0" r="15" fill="url(#meltGradient)" />
      <text x="40" y="0" font-size="6" fill="#ffffff" transform="rotate(30 40 0)">
        <textPath xlink:href="M0,0 30,0 30,30 0,30Z">
          12 1 2 3 4 5 6 7 8 9 10 11
        </textPath>
      </text>
    </g>
    
    <!-- Melting Effect -->
    <circle cx="0" cy="0" r="80" fill="none" stroke="url(#meltGradient)" stroke-width="4" stroke-linecap="round" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image features a tree with a clock face, which aligns more closely with the prompt.

    Although it lacks the melting leaf numbers, it has a clear depiction of a tree and a clock.

    Player 2's image did not load, so it 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
13
Player 2
9
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
1
Player 2
6
Ellipses

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

Player 1
2
Player 2
Lines

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

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

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

Player 1
1
Player 2
7

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
3

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

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
2
Defs Elements

The number of elements defined within the defs element in the SVG.

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