Back

SVG Drawing Match #1618

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish conducting a starry sky orchestra with luminescent tentacles"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry sky background -->
  <rect width="300" height="300" fill="black" />
  <circle cx="150" cy="150" r="2" fill="white" />
  <circle cx="100" cy="200" r="2" fill="white" />
  <circle cx="200" cy="100" r="2" fill="white" />
  <!-- Jellyfish body -->
  <circle cx="150" cy="150" r="80" fill="purple" />
  <!-- Luminescent tentacles -->
  <line x1="150" y1="150" x2="50" y2="120" stroke="cyan" stroke-width="4" />
  <line x1="150" y1="150" x2="80" y2="60" stroke="cyan" stroke-width="4" />
  <line x1="150" y1="150" x2="250" y2="120" stroke="cyan" stroke-width="4" />
  <line x1="150" y1="150" x2="220" y2="60" stroke="cyan" stroke-width="4" />
  <line x1="150" y1="150" x2="100" y2="250" stroke="cyan" stroke-width="4" />
  <line x1="150" y1="150" x2="200" y2="250" stroke="cyan" stroke-width="4" />
  <!-- Jellyfish conducting -->
  <circle cx="150" cy="80" r="15" fill="yellow" />
  <line x1="150" y1="95" x2="150" y2="120" stroke="yellow" stroke-width="2" />
  <line x1="150" y1="120" x2="135" y2="140" stroke="yellow" stroke-width="2" />
  <line x1="150" y1="120" x2="165" y2="140" stroke="yellow" stroke-width="2" />
  <line x1="150" y1="140" x2="135" y2="160" stroke="yellow" stroke-width="2" />
  <line x1="150" y1="140" x2="165" y2="160" stroke="yellow" stroke-width="2" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="jellyGradient" cx="0.5" cy="0.5" r="0.75">
      <stop offset="0%" style="stop-color:rgb(255,192,203);stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:rgb(255,105,180);stop-opacity:0.3" />
    </radialGradient>
    <radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:rgb(173,216,230);stop-opacity:0" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="rgb(10,10,40)" />
  <!-- Jellyfish Body -->
  <ellipse cx="150" cy="90" rx="50" ry="40" fill="url(#jellyGradient)" />
  <!-- Jellyfish Tentacles -->
  <path d="M150 130 Q140 180 130 260" stroke="rgb(173,216,230)" stroke-width="3" fill="none" />
  <path d="M150 130 Q150 180 125 250" stroke="rgb(144,238,144)" stroke-width="3" fill="none" />
  <path d="M150 130 Q160 190 140 265" stroke="rgb(135,206,250)" stroke-width="3" fill="none" />
  <path d="M150 130 Q170 175 170 255" stroke="rgb(186,85,211)" stroke-width="3" fill="none" />
  <path d="M150 130 Q135 190 155 280" stroke="rgb(255,182,193)" stroke-width="3" fill="none" />
  <path d="M150 130 Q180 185 175 270" stroke="rgb(173,216,230)" stroke-width="3" fill="none" />
  <!-- Stars -->
  <circle cx="20" cy="40" r="6" fill="url(#starGradient)" />
  <circle cx="240" cy="50" r="4" fill="url(#starGradient)" />
  <circle cx="80" cy="120" r="5" fill="url(#starGradient)" />
  <circle cx="200" cy="90" r="3" fill="url(#starGradient)" />
  <circle cx="50" cy="220" r="4" fill="url(#starGradient)" />
  <circle cx="280" cy="180" r="7" fill="url(#starGradient)" />
  <circle cx="180" cy="250" r="6" fill="url(#starGradient)" />
  <!-- Conductor Baton -->
  <rect x="148" y="60" width="5" height="50" fill="rgb(255,255,255)" transform="rotate(-20,150,90)" />
</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 effectively captures the concept of a jellyfish conducting a starry sky orchestra with a more realistic depiction, utilizing luminescent tentacles and a cosmic backdrop.

    The visual appeal is enhanced by the delicate use of colors and the inclusion of stars, which adheres closely to the prompt.

    Player 1’s submission lacks the visual and thematic clarity present in Player 2’s work.

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
17
Player 2
16
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
5
Player 2
7
Ellipses

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

Player 1
Player 2
1
Lines

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

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

The number of elements with stroke attributes in the SVG.

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

Complexity Metrics

Path Commands

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

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