Back

SVG Drawing Match #910

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock made of clouds with birds as hands, in a surrealism style"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#240049"/>
      <stop offset="100%" stop-color="#88167a"/>
    </linearGradient>
    <filter id="cloudGlow">
      <feGaussianBlur stdDeviation="5" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <rect width="300" height="300" fill="url(#sky)"/>
  
  <g transform="translate(150,150)">
    <!-- Cloud Clock Base -->
    <g filter="url(#cloudGlow)">
      <path d="M-80 0Q-100-30 -60-40 0-60 40-40 70-30 60 0 40 30 0 40-40 30-60 0Z" fill="#f0f8ff"/>
      <path d="M-50-20Q-30-40 10-45 45-50 60-30 55 0 30 20-10 40-40 30Z" fill="#e0f0ff" opacity="0.8"/>
    </g>

    <!-- Bird Hands -->
    <g transform="rotate(210)">
      <path d="M0-70Q20-85 40-90L0-40Q-10-55 0-70Z" fill="#1a1f2c"/>
      <path d="M0-70L10-75Q25-80 40-90L30-95Q15-100 0-90Z" fill="#2d3546"/>
    </g>
    
    <g transform="rotate(135)">
      <path d="M0-45Q15-50 30-60L5-25Q-5-35 0-45Z" fill="#36486b"/>
      <path d="M0-45L8-50Q20-55 30-60L25-65Q12-70 0-60Z" fill="#1a1f2c"/>
    </g>

    <!-- Floating Numbers -->
    <g fill="#ffffff50" font-family="monospace" text-anchor="middle">
      <text y="-55" transform="rotate(30)" font-size="18">∞</text>
      <text y="-55" transform="rotate(150)" font-size="18">∅</text>
      <text y="-55" transform="rotate(270)" font-size="18">∆</text>
    </g>
  </g>

  <!-- Atmospheric Elements -->
  <g opacity="0.4">
    <circle cx="50" cy="60" r="20" fill="#ff7b00"/>
    <path d="M200 250Q220 220 240 230 260 250 280 240" stroke="#ff00c3" fill="none" stroke-width="2"/>
    <ellipse cx="250" cy="100" rx="15" ry="35" transform="rotate(45)" fill="#00e1ff"/>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:royalblue;stop-opacity:1" />
      <stop offset="100%" style="stop-color:lightcyan;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Cloud clock face -->
  <g>
    <circle cx="150" cy="150" r="90" fill="white" stroke="lightgray" stroke-width="2" />
    <path fill="white" d="M130 150 Q125 140 130 130, 150 125, 170 130 Q175 140 170 150, 150 155 Z" />
    <path fill="white" d="M150 130 Q160 125 170 130, 175 140, 170 150, 160 155 Z" transform="rotate(72,150,150)" />
    <path fill="white" d="M150 130 Q160 125 170 130, 175 140, 170 150, 160 155 Z" transform="rotate(144,150,150)" />
    <path fill="white" d="M150 130 Q160 125 170 130, 175 140, 170 150, 160 155 Z" transform="rotate(216,150,150)" />
    <path fill="white" d="M150 130 Q160 125 170 130, 175 140, 170 150, 160 155 Z" transform="rotate(288,150,150)" />
  </g>

  <!-- Bird hands -->
  <path d="M150 150 L160 120 Q155 125 150 130 Q145 125 140 120 L150 150" fill="cornflowerblue" transform="rotate(35 150 150)" />
  <path d="M150 150 L180 160 Q175 155 170 150 Q175 145 180 140 L150 150" fill="deepskyblue" transform="rotate(-15 150 150)" />

  <!-- Additional cloud elements -->
  <ellipse cx="220" cy="80" rx="40" ry="20" fill="white" opacity="0.8" />
  <ellipse cx="80" cy="220" rx="30" ry="15" fill="white" opacity="0.8" />
  <ellipse cx="250" cy="200" rx="50" ry="25" fill="white" opacity="0.8" />

  <!-- Surreal bird-shaped clouds -->
  <path d="M75 75 Q65 70 55 75 Q45 80 55 85 Q65 90 75 85 Q85 80 75 75 Z" fill="lightskyblue" opacity="0.6" />
  <path d="M225 225 Q215 220 205 225 Q195 230 205 235 Q215 240 225 235 Q235 230 225 225 Z" fill="lightskyblue" opacity="0.6" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission more effectively adheres to the prompt by clearly depicting a clock made of clouds with birds as hands.

    The circular composition and the use of cloud-like forms enhance the surrealism aspect, while the technical execution is cleaner and more coherent.

    Player 1's image lacks clarity in depicting the clock and birds, resulting in a less effective representation of the concept.

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
10
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
1
Player 2
1
Ellipses

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

Player 1
1
Player 2
3
Lines

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

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

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

Player 1
6
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
5

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

Complexity Metrics

Path Commands

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

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