Back

SVG Drawing Match #507

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish wearing vintage top hats, floating through a starry midnight sky"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#1a1a50" />
      <stop offset="100%" stop-color="#000020" />
    </radialGradient>
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffbbff" />
      <stop offset="100%" stop-color="#e68fe6" />
    </radialGradient>
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffccff" />
      <stop offset="100%" stop-color="#b366b3" />
    </linearGradient>
    <pattern id="stars" x="0" y="0" width="5" height="5" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="#ffffff" opacity="0.8" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)" />
  <rect width="100%" height="100%" fill="url(#stars)" opacity="0.4" />
  <!-- Jellyfish 1 -->
  <g transform="translate(70, 100)">
    <ellipse fill="url(#jellyGradient)" cx="0" cy="0" rx="25" ry="15" />
    <g fill="url(#tentacleGradient)">
      <path d="M0,15 Q-10,30 -5,45" stroke-width="3" stroke-linecap="round" fill="none" />
      <path d="M-10,15 Q-15,25 -10,45" stroke-width="2" stroke-linecap="round" fill="none" />
      <path d="M10,15 Q15,30 10,45" stroke-width="3" stroke-linecap="round" fill="none" />
    </g>
    <g transform="translate(0, -25)">
      <rect x="-13" y="-5" width="26" height="10" fill="#000" />
      <path d="M-13,-5 Q-10,-15 13,-5" fill="#333" />
      <rect x="-8" y="-3" width="16" height="5" fill="#666" />
    </g>
  </g>
  <!-- Jellyfish 2 -->
  <g transform="translate(200, 180)">
    <ellipse fill="url(#jellyGradient)" cx="0" cy="0" rx="30" ry="20" />
    <g fill="url(#tentacleGradient)">
      <path d="M0,20 Q-15,35 -10,55" stroke-width="4" stroke-linecap="round" fill="none" />
      <path d="M-12,20 Q-20,30 -12,55" stroke-width="2" stroke-linecap="round" fill="none" />
      <path d="M15,20 Q20,40 15,55" stroke-width="3" stroke-linecap="round" fill="none" />
    </g>
    <g transform="translate(0, -28)">
      <rect x="-16" y="-6" width="32" height="12" fill="#111" />
      <path d="M-16,-6 Q-12,-18 16,-6" fill="#444" />
      <rect x="-10" y="-4" width="20" height="6" fill="#777" />
    </g>
  </g>
  <!-- Jellyfish 3 -->
  <g transform="translate(140, 60)">
    <ellipse fill="url(#jellyGradient)" cx="0" cy="0" rx="20" ry="12" />
    <g fill="url(#tentacleGradient)">
      <path d="M0,12 Q-8,24 -4,36" stroke-width="2" stroke-linecap="round" fill="none" />
      <path d="M-8,12 Q-10,20 -8,36" stroke-width="1" stroke-linecap="round" fill="none" />
      <path d="M8,12 Q10,24 8,36" stroke-width="2" stroke-linecap="round" fill="none" />
    </g>
    <g transform="translate(0, -20)">
      <rect x="-10" y="-3" width="20" height="6" fill="#222" />
      <path d="M-10,-3 Q-6,-10 10,-3" fill="#555" />
      <rect x="-6" y="-2" width="12" height="3" fill="#888" />
    </g>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#0b003b"/>
      <stop offset="100%" stop-color="#000010"/>
    </linearGradient>
    <!-- Star Gradient -->
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#ffffff00"/>
    </radialGradient>
    <!-- Jellyfish Gradient -->
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#89cff0cc"/>
      <stop offset="100%" stop-color="#89cff099"/>
    </radialGradient>
    <!-- Top Hat Gradient -->
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <!-- Stars -->
  <g fill="url(#starGradient)" opacity="0.8">
    <circle cx="50" cy="60" r="1.5"/>
    <circle cx="120" cy="80" r="1"/>
    <circle cx="200" cy="40" r="1.2"/>
    <circle cx="270" cy="100" r="1"/>
    <circle cx="30" cy="200" r="1.3"/>
    <circle cx="150" cy="250" r="1.1"/>
    <circle cx="220" cy="180" r="1"/>
    <circle cx="90" cy="150" r="1.2"/>
    <circle cx="60" cy="220" r="1"/>
    <circle cx="250" cy="60" r="1.4"/>
    <circle cx="180" cy="130" r="1"/>
    <circle cx="210" cy="210" r="1.3"/>
    <circle cx="130" cy="70" r="1"/>
    <circle cx="280" cy="220" r="1"/>
    <circle cx="10" cy="90" r="1.2"/>
  </g>

  <!-- Jellyfish 1 -->
  <g transform="translate(60, 180)">
    <!-- Umbrella -->
    <ellipse cx="0" cy="0" rx="20" ry="25" fill="url(#jellyGradient)" stroke="#66c1ff" stroke-width="0.5"/>
    <!-- Tentacles -->
    <path d="M-10,0 C-15,15 -15,30 0,35" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M10,0 C15,15 15,30 0,35" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <!-- Top Hat -->
    <g transform="translate(0,-25)">
      <rect x="-10" y="-10" width="20" height="8" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
      <rect x="-7" y="-18" width="14" height="8" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
    </g>
  </g>

  <!-- Jellyfish 2 -->
  <g transform="translate(180, 100)">
    <!-- Umbrella -->
    <ellipse cx="0" cy="0" rx="25" ry="30" fill="url(#jellyGradient)" stroke="#66c1ff" stroke-width="0.5"/>
    <!-- Tentacles -->
    <path d="M-12,0 C-18,20 -10,40 0,45" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M12,0 C18,20 10,40 0,45" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M0,0 C0,20 -15,35 0,50" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <!-- Top Hat -->
    <g transform="translate(0,-30)">
      <rect x="-12" y="-12" width="24" height="10" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
      <rect x="-9" y="-22" width="18" height="10" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
    </g>
  </g>

  <!-- Jellyfish 3 -->
  <g transform="translate(240, 220)">
    <!-- Umbrella -->
    <ellipse cx="0" cy="0" rx="18" ry="22" fill="url(#jellyGradient)" stroke="#66c1ff" stroke-width="0.5"/>
    <!-- Tentacles -->
    <path d="M-8,0 C-12,15 -10,30 0,32" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M8,0 C12,15 10,30 0,32" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <!-- Top Hat -->
    <g transform="translate(0,-22)">
      <rect x="-8" y="-8" width="16" height="6" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
      <rect x="-5" y="-16" width="10" height="6" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
    </g>
  </g>

  <!-- Jellyfish 4 -->
  <g transform="translate(120, 220)">
    <!-- Umbrella -->
    <ellipse cx="0" cy="0" rx="22" ry="26" fill="url(#jellyGradient)" stroke="#66c1ff" stroke-width="0.5"/>
    <!-- Tentacles -->
    <path d="M-10,0 C-14,18 -8,35 0,38" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M10,0 C14,18 8,35 0,38" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <path d="M0,0 C0,18 -12,30 0,42" stroke="#89cff0" stroke-width="1" fill="none" opacity="0.7"/>
    <!-- Top Hat -->
    <g transform="translate(0,-26)">
      <rect x="-11" y="-11" width="22" height="7" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
      <rect x="-8" y="-20" width="16" height="7" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the whimsical nature of the prompt with jellyfish that have clearer, more defined features and vintage top hats.

    The starry background enhances the midnight sky setting, adding to the overall visual appeal.

    Player 1's image, while creative, lacks the same level of detail and depth in the representation of jellyfish and the night sky.

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
24
Player 2
38
Rectangles

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

Player 1
8
Player 2
9
Circles

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

Player 1
1
Player 2
15
Ellipses

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

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

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

Player 1
9
Player 2
9

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
4
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
22

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
8

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
6
Player 2
8

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
20
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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