Back

SVG Drawing Match #1387

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow-colored iceberg floating in lemonade sea"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="lemonadeGradient" x1="0" y1="1" x2="1" y2="1">
      <stop offset="0%" stop-color="#f9e68c" />
      <stop offset="100%" stop-color="#fddc7c" />
    </linearGradient>
    <linearGradient id="icebergGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8ecae6" />
      <stop offset="50%" stop-color="#3a86ff" />
      <stop offset="100%" stop-color="#005dff" />
    </linearGradient>
    <radialGradient id="rainbowGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="16%" stop-color="#ff7f00" />
      <stop offset="33%" stop-color="#ffff00" />
      <stop offset="50%" stop-color="#00ff00" />
      <stop offset="66%" stop-color="#0000ff" />
      <stop offset="83%" stop-color="#4b0082" />
      <stop offset="100%" stop-color="#9400d3" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#lemonadeGradient)" />
  <path d="M100,150 L145,100 L180,150 L160,200 L100,200 Z" fill="url(#icebergGradient)" />
  <ellipse cx="150" cy="130" rx="60" ry="30" fill="url(#rainbowGradient)" />
  <path d="M70,210 Q150,270 230,210" fill="none" stroke="#ffdf80" stroke-width="10" stroke-linecap="round" />
  <path d="M0,220 L300,220 Q150,280 0,220 Z" fill="url(#lemonadeGradient)" opacity="0.3" />
  <circle cx="20" cy="250" r="5" fill="#ffea00" />
  <circle cx="40" cy="240" r="5" fill="#ffea00" />
  <circle cx="60" cy="255" r="5" fill="#ffea00" />
  <circle cx="280" cy="250" r="5" fill="#ffea00" />
  <circle cx="250" cy="240" r="5" fill="#ffea00" />
  <circle cx="230" cy="255" r="5" fill="#ffea00" />
</svg>
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>
    <linearGradient id="lemonade" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFEB3B" />
      <stop offset="100%" stop-color="#FDD835" />
    </linearGradient>
    <linearGradient id="rainbowIceberg" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF0000" />
      <stop offset="20%" stop-color="#FF7F00" />
      <stop offset="40%" stop-color="#FFFF00" />
      <stop offset="60%" stop-color="#00FF00" />
      <stop offset="80%" stop-color="#0000FF" />
      <stop offset="100%" stop-color="#8B00FF" />
    </linearGradient>
    <pattern id="bubbles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="#FFFFFF" opacity="0.6" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#lemonade)" />
  <rect width="300" height="100" y="200" fill="url(#bubbles)" />
  <path d="M100,150 C120,100 180,100 200,150 L200,250 C180,250 120,250 100,250 Z" fill="url(#rainbowIceberg)" />
  <path d="M100,250 C120,250 120,300 100,300 Z" fill="#FFF" opacity="0.8" />
  <path d="M200,250 C180,250 180,300 200,300 Z" fill="#FFF" opacity="0.8" />
  <ellipse cx="150" cy="150" rx="10" ry="5" fill="#FFF" opacity="0.7" />
  <circle cx="150" cy="160" r="3" fill="#FFF" />
  <circle cx="160" cy="155" r="3" fill="#FFF" />
  <circle cx="140" cy="155" r="3" fill="#FFF" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's image features a vibrant use of rainbow colors on the iceberg, which is more closely aligned with the prompt.

    The composition is well-balanced with a clear depiction of a rainbow-colored iceberg against a lemonade sea, enhanced by dotted patterns that add texture.

    Player 1's image lacks clarity in depicting the iceberg and its colors are less defined, resulting in a less compelling visual representation of the idea.

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
11
Player 2
10
Rectangles

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

Player 1
1
Player 2
2
Circles

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
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

Complexity Metrics

Path Commands

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

Player 1
12
Player 2
11
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
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