Back

SVG Drawing Match #1684

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a waterfall of stars"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="sky" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#1a2a6c"/>
      <stop offset="50%" stop-color="#b21f1f"/>
      <stop offset="100%" stop-color="#fdbb2d"/>
    </radialGradient>
    <linearGradient id="waterfall" x1="150" y1="0" x2="150" y2="300" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="50%" stop-color="#aad4f7"/>
      <stop offset="100%" stop-color="#1a2a6c"/>
    </linearGradient>
    <pattern id="star" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#ffffff"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#sky)"/>
  <ellipse cx="150" cy="100" rx="80" ry="40" fill="#4caf50"/>
  <path d="M120,100 C120,140 180,140 180,100 L150,200 Z" fill="#8bc34a"/>
  <rect x="140" y="100" width="20" height="200" fill="url(#waterfall)"/>
  <g fill="url(#star)">
    <rect x="0" y="0" width="300" height="300" fill-opacity="0.5"/>
  </g>
  <circle cx="150" cy="250" r="10" fill="#ffffff"/>
  <circle cx="130" cy="240" r="8" fill="#ffffff"/>
  <circle cx="170" cy="240" r="8" fill="#ffffff"/>
  <circle cx="150" cy="270" r="12" fill="#ffffff"/>
  <circle cx="120" cy="260" r="7" fill="#ffffff"/>
  <circle cx="180" cy="260" r="7" fill="#ffffff"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Stars -->
  <circle cx="150" cy="30" r="2" fill="white" />
  <circle cx="170" cy="45" r="3" fill="white" />
  <circle cx="130" cy="50" r="2" fill="white" />
  <circle cx="140" cy="75" r="2" fill="white" />
  <circle cx="160" cy="80" r="3" fill="white" />
  <circle cx="180" cy="90" r="2" fill="white" />
  <circle cx="120" cy="100" r="2" fill="white" />
  <circle cx="150" cy="120" r="3" fill="white" />
  <circle cx="170" cy="130" r="2" fill="white" />
  <circle cx="130" cy="140" r="2" fill="white" />
  
  <!-- Island -->
  <ellipse cx="150" cy="200" rx="120" ry="40" fill="#8DB600" />
  
  <!-- Grass on Island -->
  <ellipse cx="150" cy="190" rx="100" ry="20" fill="#98C344" />
  
  <!-- Waterfall -->
  <path d="M100,200 Q150,170 200,200 Q175,170 150,120 Q125,170 100,200Z" fill="url(#waterfall)" />
  
  <linearGradient id="waterfall" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" style="stop-color: #A7EEFF; stop-opacity: 1" />
    <stop offset="100%" style="stop-color: #38A3D4; stop-opacity: 1" />
  </linearGradient>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image creatively captures the idea of a floating island with a waterfall of stars through the use of a vibrant gradient background, giving the scene a celestial feel.

    The composition effectively combines elements of nature with a cosmic twist, adhering well to the prompt.

    Player 2's image, while clean and minimalistic, lacks the dynamic presence and adherence to the theme evident in Player 1's submission.

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
12
Player 2
13
Rectangles

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

Player 1
3
Player 2
Circles

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

Player 1
7
Player 2
10
Ellipses

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
3

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

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
5
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
3
Player 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