Back

SVG Drawing Match #672

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock tower sprouting tree branches, clock hands as leaves"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="towerGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8B5A2B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#CD853F;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="leafGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#32CD32;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#006400;stop-opacity:1" />
    </radialGradient>
  </defs>

  <g transform="translate(150, 150)">
    <rect x="-20" y="50" width="40" height="100" fill="url(#towerGradient)" rx="10" ry="10"/>
    <polygon points="-30,50 -50,0 50,0 30,50" fill="#8B4513" />
    <circle cx="0" cy="50" r="20" fill="#FFD700"/>
    
    <line x1="0" y1="50" x2="0" y2="70" stroke="#000" stroke-width="4" stroke-linecap="round" transform="rotate(50)"/>
    <line x1="0" y1="50" x2="0" y2="70" stroke="#000" stroke-width="4" stroke-linecap="round" transform="rotate(-30)"/>
    
    <g fill="url(#leafGradient)">
      <ellipse cx="0" cy="20" rx="10" ry="5" transform="rotate(50)" />
      <ellipse cx="0" cy="20" rx="10" ry="5" transform="rotate(-30)" />
    </g>

    <g stroke="#8B5A2B" stroke-width="5">
      <line x1="0" y1="0" x2="-70" y2="-70"/>
      <line x1="0" y1="0" x2="70" y2="-70"/>
      <line x1="0" y1="0" x2="-50" y2="-50"/>
      <line x1="0" y1="0" x2="50" y2="-50"/>
    </g>
    
    <g fill="url(#leafGradient)">
      <ellipse cx="-70" cy="-70" rx="10" ry="5" />
      <ellipse cx="70" cy="-70" rx="10" ry="5" />
      <ellipse cx="-50" cy="-50" rx="10" ry="5" />
      <ellipse cx="50" cy="-50" rx="10" ry="5" />
    </g>
  </g>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#a0e7ff" />
      <stop offset="100%" stop-color="#ffb3f0" />
    </linearGradient>
    <radialGradient id="woodGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#a86f32" />
      <stop offset="100%" stop-color="#653812" />
    </radialGradient>
    <pattern id="leafPattern" x="0" y="0" width="20" height="40" patternUnits="userSpaceOnUse">
      <path d="M10 0c-5 5-5 15 0 20s5 15 10 20h-20z" fill="#008000" stroke="#004000" stroke-width="1" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <polygon points="130,200 170,200 150,100" fill="url(#woodGradient)" />
  <circle cx="150" cy="100" r="30" fill="url(#woodGradient)" />
  <path d="M140,90c0-15,25-15,25,0v20l-15,80h-20z" fill="url(#leafPattern)" transform="rotate(20 150 100)" />
  <path d="M160,90c0-15,-25-15,-25,0v20l15,80h20z" fill="url(#leafPattern)" transform="rotate(-160 150 100)" />
  <circle cx="150" cy="100" r="20" fill="white" stroke="black" stroke-width="2" />
  <path d="M150 100L170 110" stroke="black" stroke-width="3" stroke-linecap="round"/>
  <path d="M150 100L140 75" stroke="black" stroke-width="2" stroke-linecap="round" />

  <path d="M150 200L160 250A50 50 0 0 0 170 200Z" stroke="brown" stroke-width="3" fill="url(#woodGradient)" />
  <path d="M150 200L140 250A50 50 0 0 1 130 200Z" stroke="brown" stroke-width="3" fill="url(#woodGradient)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's image exhibits greater visual appeal and creativity with a more dynamic integration of the tree branches and clock hands concept.

    The background adds depth, and the design effectively merges the clock and natural elements.

    Player 1's submission, while adhering to the prompt, lacks the same level of detail and visual impact.

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
11
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
2
Ellipses

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

Player 1
6
Player 2
Lines

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

Player 1
6
Player 2
Polygons

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

Player 1
1
Player 2
1
Paths

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

Player 1
Player 2
7
Groups

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

Player 1
4
Player 2

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
9

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
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
Player 2
29
Max Group Nesting

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

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

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