Back

SVG Drawing Match #1370

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Glowing jellyfish orbiting a miniature Saturn"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="jellyfishBodyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(0, 255, 255, 0.8)" />
      <stop offset="60%" stop-color="rgba(0, 128, 255, 0.6)" />
      <stop offset="100%" stop-color="rgba(0, 64, 128, 0.3)" />
    </radialGradient>
    <linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#fdd835" />
      <stop offset="100%" stop-color="#ff6f00" />
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="10" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <!-- Saturn-like planet -->
  <ellipse cx="150" cy="150" rx="40" ry="30" fill="#f5f5f5" filter="url(#glow)" />
  <ellipse cx="150" cy="150" rx="70" ry="10" fill="url(#ringGradient)" filter="url(#glow)" />
  <!-- Jellyfish orbiting -->
  <g>
    <ellipse cx="95" cy="90" rx="18" ry="22" fill="url(#jellyfishBodyGradient)" filter="url(#glow)" />
    <path d="M77,110 Q75,130 85,150 Q95,130 97,110" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M95,115 Q90,135 105,155 Q120,135 113,115" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M113,102 Q110,122 125,142 Q140,122 133,102" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
  </g>
  <g transform="rotate(120 150 150)">
    <ellipse cx="95" cy="90" rx="18" ry="22" fill="url(#jellyfishBodyGradient)" filter="url(#glow)" />
    <path d="M77,110 Q75,130 85,150 Q95,130 97,110" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M95,115 Q90,135 105,155 Q120,135 113,115" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M113,102 Q110,122 125,142 Q140,122 133,102" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
  </g>
  <g transform="rotate(240 150 150)">
    <ellipse cx="95" cy="90" rx="18" ry="22" fill="url(#jellyfishBodyGradient)" filter="url(#glow)" />
    <path d="M77,110 Q75,130 85,150 Q95,130 97,110" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M95,115 Q90,135 105,155 Q120,135 113,115" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
    <path d="M113,102 Q110,122 125,142 Q140,122 133,102" fill="none" stroke="rgba(64, 224, 208, 0.7)" stroke-width="2" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Background Gradient -->
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0d0f1a"/>
      <stop offset="100%" stop-color="#010116"/>
    </radialGradient>
    
    <!-- Saturn Gradient -->
    <radialGradient id="saturnGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f5c76b"/>
      <stop offset="100%" stop-color="#d6a235"/>
    </radialGradient>
    
    <!-- Rings Gradient -->
    <linearGradient id="ringsGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#c2a16b"/>
      <stop offset="100%" stop-color="#a18f5d"/>
    </linearGradient>
    
    <!-- Jellyfish Gradient -->
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6ec4" stop-opacity="1"/>
      <stop offset="100%" stop-color="#ff6ec4" stop-opacity="0.3"/>
    </radialGradient>
    
    <!-- Glow Filter -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="100%" height="100%" fill="url(#bgGradient)" />
  
  <!-- Saturn -->
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="40" fill="url(#saturnGradient)" filter="url(#glow)"/>
    <!-- Rings -->
    <ellipse cx="0" cy="0" rx="60" ry="20" fill="none" stroke="url(#ringsGradient)" stroke-width="5" opacity="0.8"/>
  </g>
  
  <!-- Orbits -->
  <g stroke="#4a4e69" stroke-width="1" fill="none" opacity="0.3">
    <ellipse cx="150" cy="150" rx="80" ry="40"/>
    <ellipse cx="150" cy="150" rx="100" ry="50"/>
    <ellipse cx="150" cy="150" rx="120" ry="60"/>
  </g>
  
  <!-- Jellyfish 1 -->
  <g transform="rotate(45,150,150)">
    <g transform="translate(230,150)">
      <ellipse cx="0" cy="0" rx="10" ry="20" fill="url(#jellyGradient)" filter="url(#glow)"/>
      <path d="M0,20 Q-5,30 -10,20 Q-5,25 0,20 Q5,25 10,20 Q5,30 0,20" fill="url(#jellyGradient)" filter="url(#glow)"/>
    </g>
  </g>
  
  <!-- Jellyfish 2 -->
  <g transform="rotate(120,150,150)">
    <g transform="translate(190,150)">
      <ellipse cx="0" cy="0" rx="12" ry="22" fill="url(#jellyGradient)" filter="url(#glow)"/>
      <path d="M0,22 Q-6,35 -12,22 Q-6,28 0,22 Q6,28 12,22 Q6,35 0,22" fill="url(#jellyGradient)" filter="url(#glow)"/>
    </g>
  </g>
  
  <!-- Jellyfish 3 -->
  <g transform="rotate(210,150,150)">
    <g transform="translate(170,150)">
      <ellipse cx="0" cy="0" rx="8" ry="18" fill="url(#jellyGradient)" filter="url(#glow)"/>
      <path d="M0,18 Q-4,28 -8,18 Q-4,24 0,18 Q4,24 8,18 Q4,28 0,18" fill="url(#jellyGradient)" filter="url(#glow)"/>
    </g>
  </g>
  
  <!-- Jellyfish 4 -->
  <g transform="rotate(300,150,150)">
    <g transform="translate(210,150)">
      <ellipse cx="0" cy="0" rx="9" ry="19" fill="url(#jellyGradient)" filter="url(#glow)"/>
      <path d="M0,19 Q-4.5,32 -9,19 Q-4.5,25 0,19 Q4.5,25 9,19 Q4.5,32 0,19" fill="url(#jellyGradient)" filter="url(#glow)"/>
    </g>
  </g>
  
  <!-- Stars -->
  <g fill="#ffffff" opacity="0.2">
    <circle cx="50" cy="50" r="1.5"/>
    <circle cx="250" cy="80" r="1"/>
    <circle cx="100" cy="250" r="1"/>
    <circle cx="200" cy="30" r="1.2"/>
    <circle cx="280" cy="220" r="1"/>
    <circle cx="30" cy="180" r="1.3"/>
    <circle cx="120" cy="60" r="1"/>
    <circle cx="220" cy="200" r="1.5"/>
  </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 effectively captures the concept of glowing jellyfish orbiting a miniature Saturn with a clear depiction of both elements, using soft colors and smooth gradients for a visually appealing result.

    The composition is balanced and technically refined, creating a serene space scene.

    In comparison, Player 1's image is more abstract and less structured, making it harder to discern the miniature Saturn and jellyfish clearly.

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
14
Player 2
22
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
Player 2
9
Ellipses

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

Player 1
5
Player 2
8
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
9
Player 2
4
Groups

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

Player 1
3
Player 2
11

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
9

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
2
Player 2
9

Complexity Metrics

Path Commands

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

Player 1
27
Player 2
20
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
3
Player 2
5
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