Back

SVG Drawing Match #392

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a desert cactus under a crescent moon"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="desertGradient" cx="0.5" cy="1" r="1.2">
      <stop offset="0%" stop-color="#f9c74f"/>
      <stop offset="100%" stop-color="#f3722c"/>
    </radialGradient>
    <linearGradient id="cactusGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#90be6d"/>
      <stop offset="100%" stop-color="#43aa8b"/>
    </linearGradient>
    <linearGradient id="clockGradient" x1="0.5" y1="0" x2="0.5" y2="1">
      <stop offset="0%" stop-color="#f94144"/>
      <stop offset="100%" stop-color="#f8961e"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.6">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#ced4da" stop-opacity="0"/>
    </radialGradient>
    <pattern id="cactusPattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <circle cx="3" cy="3" r="3" fill="#577590" fill-opacity="0.3"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#desertGradient)"/>

  <ellipse cx="230" cy="70" rx="40" ry="60" fill="url(#moonGradient)" fill-opacity="0.8" transform="rotate(20,230,70)"/>

  <rect x="120" y="100" width="20" height="120" fill="url(#cactusGradient)"/>
  <rect x="100" y="160" width="60" height="20" fill="url(#cactusGradient)"/>
  <rect x="160" y="130" width="20" height="60" fill="url(#cactusGradient)"/>
  
  <circle cx="130" cy="120" r="60" fill="url(#clockGradient)" transform="rotate(45,130,120)"/>
  
  <path d="M100,90 Q130,120 100,150 T200,150" fill="#f94144" opacity="0.7"/>

  <circle cx="130" cy="120" r="3" fill="#000"/>
  <line x1="130" y1="120" x2="110" y2="140" stroke="#000" stroke-width="3"/>
  <line x1="130" y1="120" x2="150" y2="105" stroke="#000" stroke-width="3"/>
  
  <circle cx="130" cy="160" r="3" fill="#f8961e"/>
  <circle cx="80" cy="110" r="3" fill="#f8961e"/>
  <circle cx="180" cy="180" r="3" fill="#f8961e"/>

  <rect x="110" y="140" width="40" height="80" fill="url(#cactusPattern)" opacity="0.3"/>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color: #2E8B57; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #228B22; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #F5F5DC; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #F0E68C; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="clockGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" style="stop-color: #FFA07A; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #E9967A; stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#F5DEB3" />
  <path d="M150 200 Q175 225 200 200 T250 200 Q275 225 300 200 T300 100 Q275 75 250 100 T200 100 Q175 75 150 100 T100 100 Q75 75 50 100 T0 200 Z" fill="url(#cactusGradient)" />
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  <path d="M150 150 Q175 175 200 150 T250 150 Q275 175 300 150 T300 50 Q275 25 250 50 T200 50 Q175 25 150 50 T100 50 Q75 25 50 50 T0 150" fill="url(#clockGradient)" stroke="#8B4513" stroke-width="5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission effectively captures the surreal theme with a melting clock face over a cactus, and the crescent moon is subtly incorporated, adhering closely to the prompt.

    The use of vibrant colors and abstract forms enhances the overall visual appeal.

    Player 2's image, while creative, lacks clear elements of the prompt such as the melting clock and cactus, and is less visually coherent.

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
4
Rectangles

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

Player 1
5
Player 2
1
Circles

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

Player 1
6
Player 2
1
Ellipses

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

Player 1
1
Player 2
Lines

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
3
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
2

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