Back

SVG Drawing Match #22

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish wearing victorian-era hats, floating elegantly above a cityscape at twilight"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cityscape at twilight -->
  <rect x="0" y="150" width="300" height="150" fill="#180F2A" />
  <rect x="20" y="130" width="40" height="20" fill="#4D3262" />
  <rect x="80" y="120" width="60" height="30" fill="#4D3262" />
  <rect x="180" y="140" width="50" height="20" fill="#4D3262" />
  <circle cx="40" cy="200" r="5" fill="#FFB6C1" />
  <circle cx="90" cy="180" r="7" fill="#FFB6C1" />
  <circle cx="220" cy="190" r="6" fill="#FFB6C1" />
  <!-- Jellyfish -->
  <path d="M150,100 Q140,60 110,40 Q80,60 70,100 Q65,150 90,180 Q110,200 150,210 Q190,200 210,180 Q235,150 230,100 Q220,60 190,40 Q160,60 150,100"
        fill="#84D9E3" />
  <!-- Jellyfish hats -->
  <path d="M130,100 Q140,80 150,100 L150,90 L130,90 Z" fill="#FFC0CB" />
  <path d="M170,100 Q160,80 150,100 L150,90 L170,90 Z" fill="#FFC0CB" />
  <!-- Jellyfish eyes -->
  <circle cx="140" cy="105" r="3" fill="#231F20" />
  <circle cx="160" cy="105" r="3" fill="#231F20" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="twilightSky" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1a0f3c"/>
      <stop offset="50%" stop-color="#472665"/>
      <stop offset="100%" stop-color="#a45c82"/>
    </linearGradient>
    <radialGradient id="jellyglow" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="rgba(255,182,255,0.7)"/>
      <stop offset="100%" stop-color="rgba(255,182,255,0)"/>
    </radialGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#twilightSky)"/>

  <!-- City Buildings -->
  <path d="M0,300 L0,180 L30,200 L50,150 L70,190 L90,160 L120,180 L150,140 L180,170 L210,130 L240,160 L270,140 L300,170 L300,300 Z" fill="#0f0f2a"/>
  <path d="M0,300 L0,200 L20,210 L40,170 L60,200 L80,180 L110,190 L140,160 L170,180 L200,150 L230,170 L260,150 L300,180 L300,300 Z" fill="#1a1a3a"/>

  <!-- Jellyfish 1 -->
  <g transform="translate(80,120)">
    <circle cx="0" cy="0" r="25" fill="rgba(255,182,255,0.6)"/>
    <path d="M-20,0 Q0,40 20,0" fill="none" stroke="rgba(255,182,255,0.4)" stroke-width="2"/>
    <path d="M-15,0 Q0,50 15,0" fill="none" stroke="rgba(255,182,255,0.4)" stroke-width="2"/>
    <path d="M-10,0 Q0,45 10,0" fill="none" stroke="rgba(255,182,255,0.4)" stroke-width="2"/>
    <!-- Victorian Hat -->
    <path d="M-15,-5 L15,-5 L20,-15 L-20,-15 Z" fill="#4a2626"/>
    <path d="M-10,-15 L10,-15 L10,-30 L-10,-30 Z" fill="#4a2626"/>
    <circle cx="0" cy="-15" r="12" fill="#8b4513"/>
  </g>

  <!-- Jellyfish 2 -->
  <g transform="translate(200,90)">
    <circle cx="0" cy="0" r="20" fill="rgba(182,255,255,0.6)"/>
    <path d="M-16,0 Q0,35 16,0" fill="none" stroke="rgba(182,255,255,0.4)" stroke-width="2"/>
    <path d="M-12,0 Q0,40 12,0" fill="none" stroke="rgba(182,255,255,0.4)" stroke-width="2"/>
    <path d="M-8,0 Q0,38 8,0" fill="none" stroke="rgba(182,255,255,0.4)" stroke-width="2"/>
    <!-- Victorian Bonnet -->
    <path d="M-12,-5 C-15,-15 15,-15 12,-5" fill="#6b4423"/>
    <path d="M-8,-5 C-10,-12 10,-12 8,-5" fill="#8b5533"/>
    <path d="M-5,-8 L5,-8 L7,-12 L-7,-12 Z" fill="#d4b695"/>
  </g>

  <!-- Floating particles -->
  <circle cx="150" cy="150" r="60" fill="url(#jellyglow)" opacity="0.3"/>
  <circle cx="100" cy="200" r="2" fill="white" opacity="0.6"/>
  <circle cx="180" cy="160" r="1.5" fill="white" opacity="0.5"/>
  <circle cx="220" cy="180" r="2" fill="white" opacity="0.7"/>
  <circle cx="80" cy="170" r="1" fill="white" opacity="0.4"/>
</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 submission more effectively adheres to the prompt by depicting multiple jellyfish with distinct Victorian-era hats, set against a clear cityscape at twilight.

    The use of color and shading enhances the twilight atmosphere, adding visual appeal.

    Player 1's image, while creative, lacks clarity in representing the prompt's elements, particularly the cityscape and Victorian hats.

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

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

Player 1
4
Player 2
1
Circles

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

Player 1
5
Player 2
8
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
17

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
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
19
Player 2
61
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
2
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