Back

SVG Drawing Match #157

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating city of jellyfish balloons over an underwater metropolis"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <radialGradient id="gradJelly1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgba(255,182,193,0.8);"/>
      <stop offset="100%" style="stop-color:rgba(255,105,180,0.2);"/>
    </radialGradient>
    <radialGradient id="gradJelly2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgba(135,206,250,0.8);"/>
      <stop offset="100%" style="stop-color:rgba(30,144,255,0.2);"/>
    </radialGradient>
    <radialGradient id="gradJelly3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgba(144,238,144,0.8);"/>
      <stop offset="100%" style="stop-color:rgba(34,139,34,0.2);"/>
    </radialGradient>
    <linearGradient id="gradCity" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#2f4f4f; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000080; stop-opacity:1" />
    </linearGradient>
    <pattern id="patternBubbles" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="5" cy="5" r="3" fill="rgba(255,255,255,0.3)" />
      <circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.2)" />
    </pattern>
  </defs>

  <!-- Underwater metropolis -->
  <rect x="0" y="200" width="300" height="100" fill="url(#gradCity)" />
  <!-- Buildings -->
  <g>
    <rect x="40" y="150" width="20" height="50" fill="#2e8b57" />
    <rect x="80" y="130" width="30" height="70" fill="#3cb371" />
    <rect x="130" y="140" width="25" height="60" fill="#20b2aa" />
    <rect x="180" y="120" width="35" height="80" fill="#66cdaa" />
    <rect x="230" y="160" width="15" height="40" fill="#3cb371" />
  </g>
  
  <!-- Bubbles pattern as water texture -->
  <rect x="0" y="0" width="300" height="200" fill="url(#patternBubbles)" opacity="0.2" />

  <!-- Floating jellyfish balloons -->
  <g>
    <!-- Jellyfish Balloon 1 -->
    <ellipse cx="60" cy="80" rx="20" ry="30" fill="url(#gradJelly1)" />
    <circle cx="60" cy="55" r="10" fill="rgba(255,182,193,0.9)" />
    <path d="M60 55 Q58 70 60 80" stroke="pink" stroke-width="2" fill="none" />
    <!-- Strings -->
    <line x1="60" y1="80" x2="60" y2="200" stroke="lightgray" stroke-width="1" />
    
    <!-- Jellyfish Balloon 2 -->
    <ellipse cx="150" cy="50" rx="25" ry="35" fill="url(#gradJelly2)" />
    <circle cx="150" cy="20" r="12" fill="rgba(135,206,250,0.9)" />
    <path d="M150 20 Q148 40 150 50" stroke="skyblue" stroke-width="2" fill="none" />
    <!-- Strings -->
    <line x1="150" y1="50" x2="150" y2="200" stroke="lightgray" stroke-width="1" />
    
    <!-- Jellyfish Balloon 3 -->
    <ellipse cx="240" cy="90" rx="18" ry="28" fill="url(#gradJelly3)" />
    <circle cx="240" cy="60" r="9" fill="rgba(144,238,144,0.9)" />
    <path d="M240 60 Q238 75 240 90" stroke="lightgreen" stroke-width="2" fill="none" />
    <!-- Strings -->
    <line x1="240" y1="90" x2="240" y2="200" stroke="lightgray" stroke-width="1" />
    
    <!-- Additional Jellyfish Balloons for depth -->
    <ellipse cx="100" cy="110" rx="22" ry="32" fill="url(#gradJelly1)" opacity="0.8" />
    <circle cx="100" cy="85" r="11" fill="rgba(255,182,193,0.85)" />
    <path d="M100 85 Q98 100 100 110" stroke="pink" stroke-width="2" fill="none" />
    <line x1="100" y1="110" x2="100" y2="200" stroke="lightgray" stroke-width="1" />
  </g>
  
  <!-- Lighting effects -->
  <circle cx="150" cy="20" r="80" fill="rgba(255,255,255,0.05)" />
  <circle cx="50" cy="150" r="100" fill="rgba(173,216,230,0.05)" />
  
</svg>
SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0a3d62"/>
      <stop offset="100%" stop-color="#1e3799"/>
    </linearGradient>
    <radialGradient id="jellyGrad1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff66cc"/>
      <stop offset="100%" stop-color="#800080"/>
    </radialGradient>
    <radialGradient id="jellyGrad2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ffff"/>
      <stop offset="100%" stop-color="#3366ff"/>
    </radialGradient>
    <radialGradient id="jellyGrad3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc66"/>
      <stop offset="100%" stop-color="#ff3300"/>
    </radialGradient>
    <radialGradient id="jellyGrad4" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffff99"/>
      <stop offset="100%" stop-color="#66ff66"/>
    </radialGradient>
    <linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#6b7a8f"/>
      <stop offset="100%" stop-color="#2e4053"/>
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)"/>
  <!-- Underwater Metropolis -->
  <g id="underwaterCity">
    <!-- Seabed -->
    <path d="M0,250 Q50,230 100,250 T200,250 T300,250 L300,300 L0,300 Z" fill="#2d3c24"/>
    <!-- Buildings -->
    <rect x="20" y="180" width="40" height="70" rx="4" fill="url(#buildingGradient)"/>
    <rect x="70" y="160" width="35" height="90" rx="4" fill="#54717A"/>
    <rect x="120" y="190" width="50" height="60" rx="4" fill="#34515e"/>
    <rect x="180" y="140" width="40" height="110" rx="4" fill="#5a7d95"/>
    <rect x="230" y="170" width="30" height="80" rx="4" fill="#3d657c"/>
    <!-- Windows on Building 2 -->
    <g fill="#f1c40f">
      <rect x="75" y="175" width="5" height="7"/>
      <rect x="82" y="175" width="5" height="7"/>
      <rect x="75" y="185" width="5" height="7"/>
      <rect x="82" y="185" width="5" height="7"/>
    </g>
  </g>
  <!-- Floating Jellyfish Balloon City -->
  <g id="jellyfishCity">
    <g transform="translate(50,50)">
      <ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#jellyGrad1)"/>
      <path d="M -5,20 C -7,30 -7,40 -5,50" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 0,20 C 0,30 0,40 0,50" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 5,20 C 7,30 7,40 5,50" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
    </g>
    <g transform="translate(150,40)">
      <ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#jellyGrad2)"/>
      <path d="M -5,20 C -8,32 -8,42 -5,55" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 0,20 C 0,32 0,42 0,55" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 5,20 C 8,32 8,42 5,55" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
    </g>
    <g transform="translate(230,60)">
      <ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#jellyGrad3)"/>
      <path d="M -5,20 C -6,28 -6,38 -5,48" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 0,20 C 0,28 0,38 0,48" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 5,20 C 6,28 6,38 5,48" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
    </g>
    <g transform="translate(90,90)">
      <ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#jellyGrad4)"/>
      <path d="M -5,20 C -7,33 -7,43 -5,57" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 0,20 C 0,33 0,43 0,57" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 5,20 C 7,33 7,43 5,57" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
    </g>
    <g transform="translate(170,110)">
      <ellipse cx="0" cy="0" rx="15" ry="20" fill="url(#jellyGrad1)"/>
      <path d="M -5,20 C -7,31 -7,41 -5,52" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 0,20 C 0,31 0,41 0,52" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
      <path d="M 5,20 C 7,31 7,41 5,52" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.7"/>
    </g>
  </g>
  <!-- Additional Underwater Bubbles -->
  <g fill="#a3e4d7" opacity="0.6">
    <circle cx="30" cy="220" r="3"/>
    <circle cx="50" cy="240" r="2"/>
    <circle cx="80" cy="210" r="3.5"/>
    <circle cx="110" cy="230" r="2.5"/>
    <circle cx="260" cy="215" r="3"/>
    <circle cx="280" cy="235" r="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the idea of a 'floating city of jellyfish balloons over an underwater metropolis' with clearer representation of jellyfish and a recognizable cityscape.

    The color palette is coherent, and the composition balances the elements well, enhancing the visual appeal.

    Player 1's image, while creative, is less clear in depicting the prompt due to its abstract style and the busy background.

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
37
Rectangles

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

Player 1
7
Player 2
10
Circles

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

Player 1
8
Player 2
6
Ellipses

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

Player 1
4
Player 2
5
Lines

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

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

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

Player 1
2
Player 2
9

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
6
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
20

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
5

Complexity Metrics

Path Commands

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

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