Back

SVG Drawing Match #1596

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit jellyfish in a teacup floating on lilypads"

SVG by GPT-3.5 turbo (0125)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Moonlit jellyfish in a teacup floating on lilypads -->
  <!-- Background: Water -->
  <rect x="0" y="0" width="300" height="300" fill="#3f88c5" />
  
  <!-- Moon -->
  <circle cx="240" cy="60" r="40" fill="#f7f5f0" />
  
  <!-- Jellyfish body -->
  <ellipse cx="150" cy="150" rx="20" ry="40" fill="#8a2be2" />
  
  <!-- Jellyfish tentacles -->
  <path d="M150,190 C110,240 190,240 150,290 C110,240 190,240 150,190" fill="#8a2be2" />
  
  <!-- Teacup -->
  <path d="M100,210 Q140,190 180,210 L180,260 Q140,240 100,260 Z" fill="#f9dad0" />
  
  <!-- Teacup handle -->
  <path d="M160,220 C140,250 140,260 160,270" fill="none" stroke="#f9dad0" stroke-width="2" />
  
  <!-- Lily pad 1 -->
  <circle cx="50" cy="220" r="30" fill="#4baf4f" />
  
  <!-- Lily pad 2 -->
  <circle cx="200" cy="250" r="25" fill="#4baf4f" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color: #FFFACD; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FFD700; stop-opacity: 0" />
    </radialGradient>
    <radialGradient id="jellyfishGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color: #FFB6C1; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FF69B4; stop-opacity: 0" />
    </radialGradient>
    <linearGradient id="waterGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#00008B" />
      <stop offset="100%" stop-color="#4682B4" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)" />
  
  <!-- Moon -->
  <circle cx="50" cy="50" r="30" fill="url(#moonGradient)" />

  <!-- Teacup -->
  <ellipse cx="150" cy="160" rx="70" ry="30" fill="#FFF5EE" stroke="#A0522D" stroke-width="4" />
  <path d="M80 160 C130 130, 170 130, 220 160" fill="#FFF5EE" stroke="#A0522D" stroke-width="4" />
  <ellipse cx="150" cy="170" rx="70" ry="15" fill="none" stroke="#A0522D" stroke-width="2" />

  <!-- Jellyfish -->
  <g>
    <ellipse cx="150" cy="140" rx="20" ry="15" fill="url(#jellyfishGradient)" />
    <path d="M150 140 C140 150, 135 180, 140 200 S130 220, 130 210" stroke="#FF69B4" stroke-width="2" fill="none" />
    <path d="M150 140 C130 150, 145 180, 150 200 S140 220, 140 210" stroke="#FF69B4" stroke-width="2" fill="none" />
    <path d="M150 140 C160 150, 165 180, 160 200 S170 220, 170 210" stroke="#FF69B4" stroke-width="2" fill="none" />
  </g>
  
  <!-- Lilypads -->
  <ellipse cx="80" cy="220" rx="40" ry="15" fill="#006400" />
  <path d="M40 220 Q60 200, 80 220" fill="#228B22" />
  <ellipse cx="220" cy="250" rx="50" ry="20" fill="#006400" />
  <path d="M170 250 Q200 230, 220 250" fill="#228B22" />
</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 submission better captures the theme with a clear depiction of a teacup and jellyfish under moonlight, and lilypads are evident.

    The gradient background adds depth, enhancing visual appeal.

    Player 1's image lacks clarity in its representation of the elements, making it harder to interpret the prompt accurately.

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
7

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
10
Player 2
15
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
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