Back

SVG Drawing Match #355

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock tower wearing a top hat, under a starry sky, with clouds shaped like gears"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky Background -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#123456"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Stars -->
  <g>
    <circle cx="50" cy="50" r="2" fill="yellow"/>
    <circle cx="150" cy="100" r="3" fill="white"/>
    <circle cx="250" cy="150" r="2" fill="yellow"/>
    <circle cx="100" cy="200" r="2" fill="white"/>
    <circle cx="200" cy="250" r="3" fill="yellow"/>
  </g>
  
  <!-- Clouds Shaped Like Gears -->
  <defs>
    <linearGradient id="cloudGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ffffff;stop-opacity:0"/>
    </linearGradient>
  </defs>
  <g transform="translate(100, 100)">
    <path d="M 100 100 A 50 50 0 0 1 200 100 L 150 50 A 50 50 0 0 1 100 100 Z" fill="url(#cloudGradient)"/>
    <path d="M 200 100 A 50 50 0 0 1 250 150 L 200 100 Z" fill="url(#cloudGradient)"/>
  </g>
  
  <!-- Clock Tower -->
  <defs>
    <linearGradient id="towerGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#888888;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#555555;stop-opacity:1"/>
    </linearGradient>
  </defs>
  <rect x="120" y="160" width="60" height="80" fill="url(#towerGradient)"/>
  
  <!-- Top Hat -->
  <defs>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#000000;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#333333;stop-opacity:1"/>
    </linearGradient>
  </defs>
  <path d="M 120 160 L 180 160 L 150 100 Z" fill="url(#hatGradient)"/>
  
  <!-- Clock Face -->
  <circle cx="150" cy="180" r="20" fill="silver"/>
  <circle cx="150" cy="180" r="15" fill="black"/>
  
  <!-- Hands -->
  <line x1="150" y1="180" x2="150" y2="140" stroke="white" stroke-width="3"/>
  <line x1="150" y1="180" x2="170" y2="170" stroke="white" stroke-width="3"/>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Starry Night Sky -->
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="0%" r="150%" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#0a0a40"/>
      <stop offset="100%" stop-color="#000010"/>
    </radialGradient>
    <pattern id="gearCloud" patternUnits="userSpaceOnUse" width="50" height="50">
      <circle cx="25" cy="25" r="20" fill="rgba(255,255,255,0.2)"/>
      <path d="M25,5 L25,15 M25,35 L25,45 M5,25 L15,25 M35,25 L45,25 M10,10 L18,18 M32,32 L40,40 M10,40 L18,32 M32,18 L40,10" stroke="rgba(255,255,255,0.3)" stroke-width="1"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="40" r="1.2" fill="white"/>
    <circle cx="80" cy="60" r="1.5" fill="white"/>
    <circle cx="120" cy="30" r="1" fill="white"/>
    <circle cx="200" cy="50" r="1.3" fill="white"/>
    <circle cx="260" cy="70" r="1.1" fill="white"/>
    <circle cx="50" cy="90" r="1.4" fill="white"/>
    <circle cx="150" cy="20" r="0.9" fill="white"/>
    <circle cx="220" cy="40" r="1.2" fill="white"/>
    <circle cx="280" cy="30" r="1.6" fill="white"/>
    <circle cx="240" cy="100" r="1.3" fill="white"/>
  </g>
  
  <!-- Clock Tower -->
  <g id="clock-tower">
    <!-- Tower base -->
    <rect x="130" y="100" width="40" height="130" fill="#7d7d7d" stroke="#555" stroke-width="2"/>
    <path d="M130 100 L150 70 L170 100 Z" fill="#999" stroke="#555" stroke-width="2"/>
    
    <!-- Clock Face -->
    <circle cx="150" cy="120" r="18" fill="white" stroke="#333" stroke-width="3"/>
    <!-- Clock Hands -->
    <line x1="150" y1="120" x2="150" y2="105" stroke="#333" stroke-width="2" stroke-linecap="round"/>
    <line x1="150" y1="120" x2="163" y2="127" stroke="#333" stroke-width="2" stroke-linecap="round"/>
    
    <!-- Top Hat on the Tower -->
    <g id="top-hat">
      <rect x="135" y="40" width="30" height="25" fill="black" stroke="#333" stroke-width="2"/>
      <rect x="125" y="60" width="50" height="5" fill="black" stroke="#333" stroke-width="2"/>
    </g>
    
    <!-- Clock tower window details -->
    <rect x="138" y="140" width="24" height="20" fill="lightblue" stroke="#333" stroke-width="1"/>
    <rect x="138" y="165" width="24" height="20" fill="lightblue" stroke="#333" stroke-width="1"/>
  </g>
  
  <!-- Clouds Shaped Like Gears -->
  <g id="gear-clouds">
    <!-- Gear Cloud 1 -->
    <g transform="translate(50, 200)">
      <circle cx="0" cy="0" r="20" fill="url(#gearCloud)" stroke="white" stroke-width="1"/>
      <!-- Teeth -->
      <g fill="white">
        <rect x="-2" y="-30" width="4" height="8" transform="rotate(0)"/>
        <rect x="-2" y="22" width="4" height="8" transform="rotate(0)"/>
        <rect x="-30" y="-2" width="8" height="4" transform="rotate(0)"/>
        <rect x="22" y="-2" width="8" height="4" transform="rotate(0)"/>
        <rect x="-21" y="-21" width="4" height="8" transform="rotate(45)"/>
        <rect x="17" y="13" width="4" height="8" transform="rotate(45)"/>
        <rect x="-21" y="13" width="4" height="8" transform="rotate(-45)"/>
        <rect x="17" y="-21" width="4" height="8" transform="rotate(-45)"/>
      </g>
    </g>
    <!-- Gear Cloud 2 -->
    <g transform="translate(220, 240)">
      <circle cx="0" cy="0" r="15" fill="url(#gearCloud)" stroke="white" stroke-width="1"/>
      <g fill="white">
        <rect x="-2" y="-23" width="4" height="6" transform="rotate(0)"/>
        <rect x="-2" y="17" width="4" height="6" transform="rotate(0)"/>
        <rect x="-23" y="-2" width="6" height="4" transform="rotate(0)"/>
        <rect x="17" y="-2" width="6" height="4" transform="rotate(0)"/>
        <rect x="-16" y="-16" width="3" height="6" transform="rotate(45)"/>
        <rect x="13" y="13" width="3" height="6" transform="rotate(45)"/>
        <rect x="-16" y="10" width="3" height="6" transform="rotate(-45)"/>
        <rect x="13" y="-19" width="3" height="6" transform="rotate(-45)"/>
      </g>
    </g>
  </g>
  
  <!-- Additional decorative elements: swirling mist -->
  <path d="M100,250 C120,230 140,270 160,250 S200,230 220,250" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="3" stroke-linecap="round"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt by including a clearly defined top hat on the clock tower and clouds shaped like gears, which are missing in Player 1's submission.

    The composition also effectively captures the starry sky backdrop, enhancing the visual appeal.

    Overall, Player 2 demonstrates greater creativity and technical execution in fulfilling 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
14
Player 2
41
Rectangles

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

Player 1
2
Player 2
22
Circles

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

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

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

Player 1
2
Player 2
8

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
12

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

Complexity Metrics

Path Commands

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

Player 1
13
Player 2
23
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
4
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
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