Back

SVG Drawing Match #1637

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Bioluminescent jellyfish floating through 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 width="300" height="300" fill="navy" />
  <circle cx="150" cy="150" r="2" fill="white" />
  <circle cx="50" cy="80" r="1" fill="white" />
  <circle cx="200" cy="40" r="1" fill="white" />
  
  <!-- Bioluminescent Jellyfish -->
  <!-- Jellyfish body -->
  <ellipse cx="150" cy="200" rx="35" ry="70" fill="#65C9FF" />
  <!-- Jellyfish tentacles -->
  <path d="M125,250 Q130,190 120,150 Q140,180 140,230 Q145,190 160,170 Q170,190 180,230 Q180,190 180,150 Q185,180 200,200" fill="#96ED89" />
  <path d="M165,250 Q160,190 170,150 Q150,180 150,230 Q145,190 130,170 Q120,190 110,230 Q110,190 110,150 Q105,180 90,200" fill="#96ED89" />
</svg>
SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="nightGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0d0d2b"/>
      <stop offset="100%" stop-color="#010130"/>
    </linearGradient>
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#00eaff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#000033" stop-opacity="0.5"/>
    </radialGradient>
    <linearGradient id="tentacleGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#00eaff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#000033" stop-opacity="0.3"/>
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#nightGradient)"/>
  <g id="stars">
    <circle cx="30" cy="30" r="1.2" fill="white"/>
    <circle cx="80" cy="20" r="0.8" fill="white"/>
    <circle cx="150" cy="10" r="1" fill="white"/>
    <circle cx="220" cy="40" r="1.5" fill="white"/>
    <circle cx="270" cy="30" r="1" fill="white"/>
    <circle cx="50" cy="90" r="1" fill="white"/>
    <circle cx="200" cy="70" r="1.2" fill="white"/>
    <circle cx="260" cy="100" r="0.7" fill="white"/>
    <circle cx="40" cy="150" r="1.3" fill="white"/>
    <circle cx="130" cy="20" r="1" fill="white"/>
    <circle cx="280" cy="150" r="1" fill="white"/>
    <circle cx="100" cy="230" r="1.2" fill="white"/>
    <circle cx="210" cy="200" r="0.9" fill="white"/>
    <circle cx="250" cy="260" r="1" fill="white"/>
    <circle cx="70" cy="260" r="1" fill="white"/>
  </g>
  <g id="jellyfish" filter="url(#glow)">
    <path d="M150,60 C130,60 110,80 110,100 C110,120 150,140 150,140 C150,140 190,120 190,100 C190,80 170,60 150,60 Z" fill="url(#jellyGradient)"/>
    <path d="M120,140 C115,160 105,180 110,200" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M130,140 C125,160 120,190 130,210" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M150,140 C150,160 150,190 150,210" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M170,140 C170,160 175,190 165,210" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M180,140 C185,160 195,180 190,200" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" stroke-linecap="round"/>
    <circle cx="135" cy="85" r="2" fill="white" opacity="0.8"/>
    <circle cx="165" cy="85" r="1.5" fill="white" opacity="0.8"/>
    <circle cx="150" cy="100" r="1" fill="white" opacity="0.8"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 2

Judge's Analysis

    Player 2's image effectively captures the ethereal quality of bioluminescent jellyfish floating in a starry night sky with a glowing jellyfish and a well-rendered starry background.

    The use of gradients and soft edges enhances the visual appeal and aligns closely with the prompt.

    In contrast, Player 1's submission lacks detail and depth, making it less compelling and visually appealing.

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
7
Player 2
25
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
18
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
5

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
14
Player 2
16
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
4
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