Back

SVG Drawing Match #1191

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock melting over a mountain peak, Daliesque style"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient for Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#f7c4a5;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fdeecf;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Mountain -->
  <path d="M150 50 L50 250 L250 250 Z" fill="#5da082" />
  
  <!-- Clock Face -->
  <ellipse cx="150" cy="150" rx="80" ry="100" fill="#fce7ac" stroke="#a58241" stroke-width="3" />

  <!-- Melting Effect -->
  <path d="M150 150 Q120 220, 130 270 Q160 300, 180 270 Q190 220, 150 150" fill="#f8b26f" />

  <!-- Clock Numbers -->
  <text x="110" y="90" font-size="16" fill="#774e24" transform="rotate(-30 110,90)">12</text>
  <text x="190" y="90" font-size="16" fill="#774e24" transform="rotate(30 190,90)">3</text>
  <text x="190" y="210" font-size="16" fill="#774e24" transform="rotate(30 190,210)">6</text>
  <text x="110" y="210" font-size="16" fill="#774e24" transform="rotate(-30 110,210)">9</text>

  <!-- Clock Hands -->
  <line x1="150" y1="150" x2="180" y2="95" stroke="#774e24" stroke-width="4" />
  <line x1="150" y1="150" x2="150" y2="170" stroke="#774e24" stroke-width="3" />

  <!-- Surreal Elements (abstract cloud and sun) -->
  <circle cx="220" cy="60" r="30" fill="orange" opacity="0.7"/>
  
  <path d="M70 60 Q80 40, 110 55 Q130 75, 160 69" fill="none" stroke="#ffffff" stroke-width="5" opacity="0.8"/>
  <path d="M70 65 Q80 85, 110 70 Q130 50, 160 56" fill="none" stroke="#ffffff" stroke-width="5" opacity="0.8"/>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FF6B6B"/>
      <stop offset="100%" stop-color="#4ECDC4"/>
    </linearGradient>
    <radialGradient id="clockGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </radialGradient>
    <filter id="softEdge">
      <feGaussianBlur stdDeviation="2"/>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Mountain Range -->
  <path d="M-10 250 L80 180 L160 250 L240 160 L320 250" 
        fill="#2C3E50" filter="url(#softEdge)"/>

  <!-- Main Peak -->
  <path d="M120 300 L150 50 L180 300 Z" fill="#34495E"/>

  <!-- Melting Clock -->
  <g transform="translate(150 100)">
    <path d="M-40 0 Q-20 -30 0 0 Q20 30 40 0 L30 60 Q0 80 -30 60 Z" 
          fill="url(#clockGrad)" stroke="#2E4053" stroke-width="2"/>
    
    <!-- Clock Details -->
    <path d="M-15 15 L15 15 M0 -10 L0 10" stroke="#2E4053" stroke-width="3"/>
    <text x="-25" y="-5" font-size="12" fill="#2E4053" transform="rotate(-30)">III</text>
    <text x="15" y="-5" font-size="12" fill="#2E4053" transform="rotate(30)">IX</text>
    
    <!-- Dripping Elements -->
    <path d="M25 45 Q30 55 20 65 L15 70 Q10 75 5 70 L0 65 Q-5 70 -10 65 L-15 70 Q-25 75 -30 65" 
          fill="#FF8C00"/>
  </g>

  <!-- Surreal Elements -->
  <circle cx="200" cy="80" r="15" fill="#E74C3C" opacity="0.8">
    <animate attributeName="cy" values="80;100;80" dur="5s" repeatCount="indefinite"/>
  </circle>
  
  <path d="M50 200 Q70 170 90 200 Q110 230 130 200" 
        stroke="#ECF0F1" stroke-width="3" fill="none" stroke-dasharray="5 5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission better captures the surreal and Daliesque essence of the prompt with its dynamic composition and abstract forms.

    The melting clock is creatively integrated into the sharp mountain peak, enhancing the visual appeal.

    Player 1's image, while visually pleasing, lacks the surreal impact and complexity needed to fully embody the Daliesque style.

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
9
Player 2
8
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
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
4
Player 2
6
Groups

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
9

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
3

Complexity Metrics

Path Commands

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

Player 1
14
Player 2
30
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
1
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
4
Player 2
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