Back

SVG Drawing Match #441

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal floating island with giant clock trees and flowing rivers of glowing paint"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
  
  <!-- Floating island -->
  <ellipse cx="150" cy="250" rx="120" ry="40" fill="#8B4513" />
  
  <!-- Clock trees -->
  <g>
    <circle cx="80" cy="180" r="30" fill="#228B22" />
    <rect x="77.5" y="80" width="5" height="120" fill="#8B4513" />
    <line x1="80" y1="180" x2="60" y2="140" stroke="#A0522D" stroke-width="2" />
  </g>
  <g>
    <circle cx="220" cy="180" r="30" fill="#228B22" />
    <rect x="217.5" y="80" width="5" height="120" fill="#8B4513" />
    <line x1="220" y1="180" x2="240" y2="140" stroke="#A0522D" stroke-width="2" />
  </g>
  
  <!-- Flowing rivers of glowing paint -->
  <path d="M20 200 Q 100 50 200 200 Q 150 220 100 200 Q 50 220 20 200" fill="url(#paint)" />
  
  <defs>
    <linearGradient id="paint" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF69B4" />
      <stop offset="50%" stop-color="#00BFFF" />
      <stop offset="100%" stop-color="#FF69B4" />
    </linearGradient>
  </defs>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="islandGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#7f5a58"/>
      <stop offset="100%" stop-color="#43231a"/>
    </radialGradient>
    <radialGradient id="treeGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffe47a"/>
      <stop offset="100%" stop-color="#ffae42"/>
    </radialGradient>
    <linearGradient id="riverGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0093E9" stop-opacity="1"/>
      <stop offset="100%" stop-color="#80D0C7" stop-opacity="1"/>
    </linearGradient>
    <pattern id="clockPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="5" fill="#555"/>
      <line x1="5" y1="5" x2="5" y2="0" stroke="#fff" stroke-width="1"/>
      <line x1="5" y1="5" x2="10" y2="5" stroke="#fff" stroke-width="1"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="lightblue"/>
  <g transform="translate(150, 100)">
    <ellipse cx="0" cy="0" rx="90" ry="40" fill="url(#islandGradient)" />
    <path d="M-70,10 C-30,30 30,30 70,10 Q0,60 -70,10" fill="url(#islandGradient)" opacity="0.8"/>
  </g>
  <g transform="translate(120, 60)">
    <circle cx="0" cy="0" r="20" fill="url(#treeGradient)" filter="url(#f1)"/>
    <circle cx="0" cy="0" r="18" fill="none" stroke="url(#clockPattern)" stroke-width="3"/>
    <line x1="0" y1="0" x2="0" y2="-15" stroke="#fff" stroke-width="2"/>
    <line x1="0" y1="0" x2="-10" y2="5" stroke="#fff" stroke-width="2"/>
  </g>
  <g transform="translate(180, 70)">
    <circle cx="0" cy="0" r="20" fill="url(#treeGradient)" filter="url(#f1)"/>
    <circle cx="0" cy="0" r="18" fill="none" stroke="url(#clockPattern)" stroke-width="3"/>
    <line x1="0" y1="0" x2="0" y2="-15" stroke="#fff" stroke-width="2"/>
    <line x1="0" y1="0" x2="10" y2="5" stroke="#fff" stroke-width="2"/>
  </g>
  <path d="M80,150 C100,160 120,145 140,160 S160,180 180,160 S200,140 220,160 C240,180 260,170 280,160" stroke="none" fill="url(#riverGradient)"/>
</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 image better captures the surreal essence of the prompt with the inclusion of clear clock faces and a flowing river element, enhancing both creativity and adherence to the theme.

    The technical execution is slightly more polished, with a harmonious color palette and distinct visual elements that contribute to stronger visual appeal.

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

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

Player 1
3
Player 2
1
Circles

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

Player 1
2
Player 2
5
Ellipses

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

Player 1
1
Player 2
1
Lines

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

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

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
10

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