Back

SVG Drawing Match #2247

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish wearing a crown, floating through space among asteroids."

SVG by o3 high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Background Gradient -->
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#1d0036"/>
      <stop offset="50%" stop-color="#0d0142"/>
      <stop offset="100%" stop-color="#000010"/>
    </radialGradient>

    <!-- Jellyfish Body Gradient -->
    <radialGradient id="jellyGrad" cx="50%" cy="40%" r="70%">
      <stop offset="0%" stop-color="#ffb2ed"/>
      <stop offset="40%" stop-color="#7cf0ff"/>
      <stop offset="100%" stop-color="#4d1fff"/>
    </radialGradient>

    <!-- Tentacle Gradient -->
    <linearGradient id="tentacleGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffaaff"/>
      <stop offset="100%" stop-color="#6cf7ff"/>
    </linearGradient>

    <!-- Crown Gradient -->
    <linearGradient id="crownGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffee66"/>
      <stop offset="100%" stop-color="#ff9a00"/>
    </linearGradient>

    <!-- Asteroid Gradient -->
    <radialGradient id="asteroidGrad" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#a5a5a5"/>
      <stop offset="100%" stop-color="#4c4c4c"/>
    </radialGradient>

    <!-- Glows & Shadows -->
    <filter id="jellyGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>

    <filter id="starGlow">
      <feGaussianBlur stdDeviation="0.8"/>
    </filter>

    <filter id="asteroidShadow" x="-20%" y="-20%" width="150%" height="150%">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000000" flood-opacity="0.6"/>
    </filter>
  </defs>

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

  <!-- Stars -->
  <g fill="#ffffff" filter="url(#starGlow)">
    <circle cx="20" cy="40" r="1.2"/>
    <circle cx="50" cy="90" r="0.8"/>
    <circle cx="80" cy="30" r="1"/>
    <circle cx="110" cy="70" r="1.1"/>
    <circle cx="140" cy="20" r="1.3"/>
    <circle cx="180" cy="60" r="0.9"/>
    <circle cx="210" cy="35" r="1"/>
    <circle cx="250" cy="50" r="1.2"/>
    <circle cx="280" cy="18" r="0.7"/>
    <circle cx="150" cy="150" r="1.4"/>
    <circle cx="190" cy="130" r="0.8"/>
    <circle cx="120" cy="180" r="0.9"/>
    <circle cx="60" cy="160" r="0.9"/>
    <circle cx="30" cy="200" r="1"/>
    <circle cx="240" cy="200" r="1.1"/>
    <circle cx="270" cy="230" r="0.8"/>
  </g>

  <!-- Asteroids -->
  <g fill="url(#asteroidGrad)" filter="url(#asteroidShadow)">
    <path d="M40 50 L55 45 L65 55 L60 70 L45 75 L35 65 Z"/>
    <path d="M220 40 L235 35 L250 45 L245 60 L230 65 L215 55 Z" transform="rotate(12 232 50)"/>
    <path d="M70 230 L88 225 L98 235 L93 255 L75 260 L63 245 Z" transform="rotate(-8 85 245)"/>
    <path d="M200 225 L215 215 L230 225 L225 245 L205 250 L190 235 Z" transform="rotate(5 210 235)"/>
  </g>

  <!-- Jellyfish -->
  <g filter="url(#jellyGlow)">
    <!-- Body -->
    <path d="M100 120 Q150 60 200 120 C200 155 175 180 150 180 C125 180 100 155 100 120 Z" fill="url(#jellyGrad)"/>

    <!-- Tentacles -->
    <g stroke="url(#tentacleGrad)" stroke-width="4" fill="none" stroke-linecap="round">
      <path d="M130 180 Q120 210 130 240 Q140 270 130 300"/>
      <path d="M145 180 Q150 210 140 245 Q130 270 135 300"/>
      <path d="M160 180 Q172 210 162 245 Q152 270 160 300"/>
      <path d="M175 180 Q190 210 180 245 Q170 270 185 300"/>
    </g>
  </g>

  <!-- Crown -->
  <path d="M135 95 L145 75 L155 95 L165 75 L175 95 L175 105 L135 105 Z" fill="url(#crownGrad)" stroke="#ffd700" stroke-width="1"/>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#2A0845"/>
      <stop offset="100%" stop-color="#110426"/>
    </radialGradient>
    <radialGradient id="jellyGlow" cx="50%" cy="50%" r="60%">
      <stop offset="0%" stop-color="#ff69b466"/>
      <stop offset="100%" stop-color="#ff69b400"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
  </defs>

  <rect width="100%" height="100%" fill="url(#spaceGrad)"/>
  
  <g id="stars">
    <circle cx="50" cy="60" r="1" fill="white" opacity="0.8"/>
    <circle cx="150" cy="30" r="1.5" fill="white" opacity="0.6"/>
    <circle cx="250" cy="80" r="1" fill="white" opacity="0.7"/>
    <circle cx="80" cy="200" r="1.2" fill="white" opacity="0.5"/>
    <circle cx="220" cy="250" r="1" fill="white" opacity="0.8"/>
  </g>

  <g id="asteroids">
    <path d="M40,100 L50,90 L65,95 L60,110 Z" fill="#8B8B8B"/>
    <path d="M260,180 L280,170 L285,190 L270,195 Z" fill="#A0A0A0"/>
    <ellipse cx="200" cy="70" rx="15" ry="10" fill="#9A9A9A" transform="rotate(30)"/>
  </g>

  <g id="jellyfish" transform="translate(150,150)">
    <circle cx="0" cy="0" r="40" fill="url(#jellyGlow)" filter="url(#glow)"/>
    <path d="M-30,-10 Q0,-40 30,-10 Q40,0 30,20 Q0,40 -30,20 Q-40,0 -30,-10" 
          fill="#ff69b4" opacity="0.9"/>
    
    <g id="tentacles">
      <path d="M-20,20 Q-25,60 -15,80" stroke="#ff69b4" fill="none" opacity="0.7"/>
      <path d="M-10,20 Q-5,70 -10,90" stroke="#ff69b4" fill="none" opacity="0.7"/>
      <path d="M0,20 Q5,65 0,85" stroke="#ff69b4" fill="none" opacity="0.7"/>
      <path d="M10,20 Q15,75 10,95" stroke="#ff69b4" fill="none" opacity="0.7"/>
      <path d="M20,20 Q25,60 15,80" stroke="#ff69b4" fill="none" opacity="0.7"/>
    </g>

    <g id="crown" transform="translate(0,-30)">
      <path d="M-15,-10 L-10,0 L-5,-10 L0,0 L5,-10 L10,0 L15,-10 L10,-5 L5,-15 L0,-5 L-5,-15 L-10,-5 Z" 
            fill="gold" stroke="#FFD700"/>
      <circle cx="-10" cy="-12" r="2" fill="#FF0000"/>
      <circle cx="0" cy="-15" r="2" fill="#00FF00"/>
      <circle cx="10" cy="-12" r="2" fill="#0000FF"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission stands out due to its vibrant color gradient, glowing effect, and the dynamic design of the jellyfish tentacles, which enhance the visual appeal and creativity.

    The crown is simple yet prominent, and the composition integrates the asteroids effectively.

    Player 2's design, while clean and minimalist, lacks the same level of detail and visual impact as Player 1's submission.

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
27
Player 2
20
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
16
Player 2
9
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
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
10
Player 2
9
Groups

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
12

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

Complexity Metrics

Path Commands

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

Player 1
53
Player 2
38
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
8
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