Back

SVG Drawing Match #2010

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale floating in a teacup on a starry night sky"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry night sky -->
  <rect x="0" y="0" width="300" height="300" fill="navy" />

  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="white" />
  <circle cx="100" cy="150" r="2" fill="white" />
  <circle cx="200" cy="100" r="2" fill="white" />
  <circle cx="250" cy="200" r="2" fill="white" />
  
  <!-- Teacup -->
  <path d="M60 200 q40 -40 80 0 l30 20 q-40 20 -80 0z" fill="tan" />
  <circle cx="100" cy="200" r="40" fill="transparent" stroke="tan" stroke-width="2" />
  
  <!-- Whale -->
  <path d="M180 160 q10 -20 30 0 q10 10 -10 20 q-10 10 -20 0 q-10 -10 -10 -20z" fill="lightblue" />
  <ellipse cx="185" cy="170" rx="15" ry="40" fill="lightblue" />
  <circle cx="170" cy="160" r="7" fill="gray" />
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <radialGradient id="sky" cx="150" cy="150" r="150">
    <stop offset="0%" stop-color="#1A237E" />
    <stop offset="100%" stop-color="#000000" />
  </radialGradient>
  <rect width="300" height="300" fill="url(#sky)" />
  <g transform="translate(100 130)">
    <path d="M55 50 C 55 20, 80 20, 80 0 L 20 0 C 20 20, 45 20, 45 50 Z" fill="#F5F5DC" stroke="#D4AF37" stroke-width="2" />
    <ellipse cx="50" cy="50" rx="50" ry="20" fill="#F5F5DC" stroke="#D4AF37" stroke-width="2" />
    <g transform="translate(15 15)">
      <path d="M20 10 C 10 10, 5 20, 10 30 L 70 30 C 75 20, 70 10, 60 10 C 50 0, 30 0, 40 10 C 30 15, 50 15, 40 10 Z" fill="lightblue" />
      <ellipse cx="40" cy="35" rx="15" ry="5" fill="lightblue"/>
      <circle cx="25" cy="25" r="2" fill="white"/>
      <animateTransform attributeName="transform" type="rotate" from="0 40 25" to="360 40 25" dur="20s" repeatCount="indefinite" />
      <radialGradient id="water" cx="40" cy="40" r="30" gradientUnits="userSpaceOnUse">
        <stop offset="0%" stop-color="rgba(0,191,255, 0.7)" />
        <stop offset="80%" stop-color="rgba(0, 191, 255, 0.2)" />
      </radialGradient>
      <ellipse cx="40" cy="40" rx="25" ry="8" fill="url(#water)" />
    </g>
  </g>
  <circle cx="50" cy="50" r="5" fill="gold" opacity=".8"/>
  <circle cx="100" cy="20" r="3" fill="white" opacity=".8"/>
  <circle cx="200" cy="80" r="6" fill="#ADD8E6" opacity=".7"/>
  <circle cx="280" cy="150" r="2" fill="gold" opacity=".9"/>
  <circle cx="250" cy="250" r="4" fill="white" opacity=".6"/>
  <circle cx="70" cy="280" r="3" fill="#ADD8E6" opacity=".8"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's image more effectively captures the whimsical concept of a whale floating in a teacup against a starry night sky.

    The whale is clearly depicted within the teacup, and the composition is well-balanced with a clear night sky background.

    In contrast, Player 1's image lacks clarity in depicting the teacup and whale, making it less visually appealing and harder to interpret within the given theme.

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
10
Player 2
13
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
6
Player 2
7
Ellipses

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
2

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
1
Elements with Transform

The number of elements with transform attributes in the SVG.

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

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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