Back

SVG Drawing Match #11

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Glow-in-the-dark jellyfish playing chess in a cosmic ocean"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="oceanGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#003366;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a1a1a;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00ffff;stop-opacity:1" />
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="5" result="blur" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="blur" />
      </feMerge>
    </filter>
  </defs>
  <rect width="100%" height="100%" fill="url(#oceanGradient)" />
  <g filter="url(#glow)">
    <g>
      <path d="M150 220 C130 180, 170 160, 150 120 C130 80, 120 80, 100 120 C80 160, 100 180, 80 220" fill="url(#jellyGradient)" />
      <ellipse cx="120" cy="220" rx="15" ry="20" fill="url(#jellyGradient)" />
      <ellipse cx="180" cy="220" rx="15" ry="20" fill="url(#jellyGradient)" />
      <path d="M150 120 C145 110, 155 100, 150 90 Q145 80, 140 85" fill="url(#jellyGradient)" />
      <path d="M150 120 C155 110, 145 100, 150 90 Q155 80, 160 85" fill="url(#jellyGradient)" />
    </g>
  </g>
  <g>
    <rect x="115" y="160" width="70" height="10" fill="#ffffff" />
    <circle cx="125" cy="165" r="3" fill="black" />
    <circle cx="135" cy="165" r="3" fill="black" />
    <circle cx="145" cy="165" r="3" fill="black" />
    <circle cx="155" cy="165" r="3" fill="black" />
    <circle cx="165" cy="165" r="3" fill="black" />
    <circle cx="175" cy="165" r="3" fill="black" />
    <circle cx="185" cy="165" r="3" fill="black" />
  </g>
  <g fill="#fff" font-family="Arial" font-size="10" text-anchor="middle">
    <text x="150" y="295">Glow-in-the-Dark Jellyfish Playing Chess</text>
  </g>
  <g fill="white" opacity="0.6">
    <circle cx="250" cy="50" r="5" />
    <circle cx="240" cy="80" r="3" />
    <circle cx="260" cy="100" r="4" />
    <circle cx="290" cy="30" r="6" />
    <circle cx="200" cy="10" r="2" />
  </g>
</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="cosmos" cx="50%" cy="50%" r="60%">
      <stop offset="0%" style="stop-color:#0B012A"/>
      <stop offset="100%" style="stop-color:#000B3B"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    <linearGradient id="jellyglow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#84ffff;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#00bcd4;stop-opacity:0.4"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#cosmos)"/>
  
  <!-- Stars -->
  <g fill="#FFF" opacity="0.8">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="150" cy="30" r="0.8"/>
    <circle cx="250" cy="70" r="1.2"/>
    <circle cx="80" cy="200" r="1"/>
    <circle cx="220" cy="180" r="0.9"/>
    <circle cx="180" cy="250" r="1.1"/>
  </g>

  <!-- Chess Board -->
  <g transform="translate(100,100) rotate(-15)">
    <rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.15)"/>
    <g opacity="0.3">
      <rect x="0" y="0" width="25" height="25" fill="#fff"/>
      <rect x="50" y="0" width="25" height="25" fill="#fff"/>
      <rect x="25" y="25" width="25" height="25" fill="#fff"/>
      <rect x="75" y="25" width="25" height="25" fill="#fff"/>
      <rect x="0" y="50" width="25" height="25" fill="#fff"/>
      <rect x="50" y="50" width="25" height="25" fill="#fff"/>
      <rect x="25" y="75" width="25" height="25" fill="#fff"/>
      <rect x="75" y="75" width="25" height="25" fill="#fff"/>
    </g>
  </g>

  <!-- Jellyfish 1 -->
  <g transform="translate(80,140)" filter="url(#glow)">
    <path d="M0,0 Q30,-20 60,0 Q30,10 0,0" fill="url(#jellyglow)"/>
    <g class="tentacles" stroke="#84ffff" stroke-width="1.5" opacity="0.6">
      <path d="M10,0 Q15,20 10,40"/>
      <path d="M20,0 Q25,25 20,45"/>
      <path d="M40,0 Q45,20 40,40"/>
      <path d="M50,0 Q55,25 50,45"/>
    </g>
  </g>

  <!-- Jellyfish 2 -->
  <g transform="translate(180,120) scale(0.8)" filter="url(#glow)">
    <path d="M0,0 Q30,-20 60,0 Q30,10 0,0" fill="url(#jellyglow)"/>
    <g class="tentacles" stroke="#84ffff" stroke-width="1.5" opacity="0.6">
      <path d="M10,0 Q15,20 10,40"/>
      <path d="M20,0 Q25,25 20,45"/>
      <path d="M40,0 Q45,20 40,40"/>
      <path d="M50,0 Q55,25 50,45"/>
    </g>
  </g>

  <!-- Chess Pieces -->
  <g fill="#fff" opacity="0.8">
    <circle cx="130" cy="130" r="5"/>
    <path d="M170,140 l5,-10 l5,10 z"/>
  </g>

  <!-- Bubbles -->
  <g fill="rgba(255,255,255,0.2)">
    <circle cx="90" cy="180" r="3"/>
    <circle cx="200" cy="160" r="2"/>
    <circle cx="150" cy="190" r="4"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image effectively captures the theme of 'Glow-in-the-dark jellyfish playing chess in a cosmic ocean' with creative use of jellyfish-like figures and a chessboard motif.

    The cosmic background and glowing elements enhance the visual appeal and adherence to the prompt.

    In contrast, Player 1's submission lacks clarity in depicting jellyfish and chess, making it less engaging and relevant to the theme.

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
19
Player 2
31
Rectangles

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

Player 1
2
Player 2
10
Circles

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

Player 1
12
Player 2
10
Ellipses

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

Player 1
2
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
3
Player 2
11
Groups

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

Player 1
5
Player 2
9

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
4

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