Back

SVG Drawing Match #73

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Bioluminescent jellyfish floating over a cityscape at dusk"

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="skyGlow" cx="50%" cy="100%" r="100%">
      <stop offset="0%" stop-color="#1a0b2e"/>
      <stop offset="100%" stop-color="#0f0522"/>
    </radialGradient>
    <linearGradient id="jellyglow" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#7bf7ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#2e89ff" stop-opacity="0.2"/>
    </linearGradient>
    <filter id="blur">
      <feGaussianBlur stdDeviation="2"/>
    </filter>
  </defs>

  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGlow)"/>

  <!-- City buildings -->
  <g fill="#0f1222">
    <rect x="20" y="150" width="30" height="150"/>
    <rect x="60" y="180" width="40" height="120"/>
    <rect x="110" y="130" width="35" height="170"/>
    <rect x="155" y="160" width="45" height="140"/>
    <rect x="210" y="140" width="25" height="160"/>
    <rect x="245" y="170" width="35" height="130"/>
  </g>

  <!-- Building windows -->
  <g fill="#ffeb99" opacity="0.6">
    <rect x="25" y="160" width="20" height="130" rx="2"/>
    <rect x="65" y="190" width="30" height="100" rx="2"/>
    <rect x="115" y="140" width="25" height="150" rx="2"/>
    <rect x="160" y="170" width="35" height="120" rx="2"/>
    <rect x="215" y="150" width="15" height="140" rx="2"/>
    <rect x="250" y="180" width="25" height="110" rx="2"/>
  </g>

  <!-- Jellyfish body -->
  <g transform="translate(150, 120)">
    <path d="M0,0 Q-40,20 -40,60 Q-40,100 0,120 Q40,100 40,60 Q40,20 0,0" 
          fill="url(#jellyglow)" opacity="0.9"/>
    
    <!-- Tentacles -->
    <g stroke="#5ed8ff" stroke-width="2" fill="none" opacity="0.7">
      <path d="M-30,60 Q-20,90 -35,120 Q-30,100 -25,130" filter="url(#blur)"/>
      <path d="M-10,60 Q0,95 -15,125 Q-10,105 -5,135" filter="url(#blur)"/>
      <path d="M10,60 Q20,90 5,120 Q10,100 15,130" filter="url(#blur)"/>
      <path d="M30,60 Q40,95 25,125 Q30,105 35,135" filter="url(#blur)"/>
    </g>

    <!-- Bioluminescent spots -->
    <g fill="#7bf7ff">
      <circle cx="-20" cy="30" r="5" opacity="0.8"/>
      <circle cx="20" cy="30" r="5" opacity="0.8"/>
      <circle cx="0" cy="40" r="6" opacity="0.8"/>
      <circle cx="-15" cy="50" r="4" opacity="0.8"/>
      <circle cx="15" cy="50" r="4" opacity="0.8"/>
    </g>
  </g>

  <!-- Glowing effects -->
  <g fill="#7bf7ff" opacity="0.2" filter="url(#blur)">
    <circle cx="150" cy="120" r="60"/>
    <circle cx="150" cy="120" r="40"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color: #1e5799; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #000; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #00ffbf; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #000; stop-opacity:1" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect x="0" y="0" width="100" height="100" fill="#222" />
      <line x1="20" y1="0" x2="20" y2="100" stroke="#aaa" stroke-width="2" />
      <line x1="40" y1="0" x2="40" y2="100" stroke="#aaa" stroke-width="2" />
      <line x1="60" y1="0" x2="60" y2="100" stroke="#aaa" stroke-width="2" />
      <line x1="80" y1="0" x2="80" y2="100" stroke="#aaa" stroke-width="2" />
      <line x1="0" y1="20" x2="100" y2="20" stroke="#aaa" stroke-width="2" />
      <line x1="0" y1="40" x2="100" y2="40" stroke="#aaa" stroke-width="2" />
      <line x1="0" y1="60" x2="100" y2="60" stroke="#aaa" stroke-width="2" />
      <line x1="0" y1="80" x2="100" y2="80" stroke="#aaa" stroke-width="2" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad1)" />
  <g transform="translate(150, 150)">
    <circle cx="0" cy="-100" r="30" fill="url(#grad2)" />
    <path d="M-25,-100 Q-50,-120 -25,-140 T25,-100" fill="url(#grad2)" />
    <path d="M-25,-100 Q-50,-80 -25,-60 T25,-100" fill="url(#grad2)" />
  </g>
  <rect x="0" y="200" width="300" height="100" fill="url(#cityPattern)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's submission effectively captures the concept of bioluminescent jellyfish over a cityscape with its use of glowing elements and a recognizable urban skyline.

    The color contrast and overall composition are more dynamic, creating a visually appealing and imaginative scene.

    Player 2's image lacks clarity in depicting the prompt's theme and appears less cohesive in integrating the jellyfish and cityscape elements.

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

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

Player 1
13
Player 2
3
Circles

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

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

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

Player 1
6
Player 2
1

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
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
2

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

Complexity Metrics

Path Commands

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

Player 1
17
Player 2
6
Max Group Nesting

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

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