Back

SVG Drawing Match #2361

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish wearing a top hat floating over a cityscape at sunset."

SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunsetGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0d001a;" /> <!-- Darkest violet-blue top -->
      <stop offset="25%" style="stop-color:#4B0082;" /> <!-- Indigo -->
      <stop offset="50%" style="stop-color:#D90000;" /> <!-- Deep Red -->
      <stop offset="70%" style="stop-color:#FF8C00;" /> <!-- Dark Orange -->
      <stop offset="85%" style="stop-color:#FFA500;" /> <!-- Orange -->
      <stop offset="100%" style="stop-color:#FFD700;" /> <!-- Gold - horizon -->
    </linearGradient>

    <radialGradient id="jellyfishBellGrad" cx="50%" cy="40%" r="60%" fx="50%" fy="40%">
      <stop offset="0%" style="stop-color:#F0F8FF; stop-opacity:0.95" /> <!-- AliceBlue, almost solid center -->
      <stop offset="50%" style="stop-color:#E0FFFF; stop-opacity:0.8" /> <!-- LightCyan -->
      <stop offset="100%" style="stop-color:#FFD1DC; stop-opacity:0.65" /> <!-- PalePink, translucent edge -->
    </radialGradient>

    <pattern id="jellyTexture" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse" patternContentUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="0.3" fill="rgba(255,255,255,0.3)"/>
      <circle cx="5" cy="7" r="0.4" fill="rgba(255,255,255,0.25)"/>
      <path d="M 1 5 Q 3 6 2 8" stroke="rgba(255,255,255,0.15)" stroke-width="0.2" fill="none"/>
    </pattern>

    <linearGradient id="tentacleGrad1" x1="0%" y1="0%" x2="0%" y2="100%"> <!-- Vertical gradient along stroke thickness -->
      <stop offset="0%" style="stop-color:#FFB6C1; stop-opacity:0.9"/>
      <stop offset="50%" style="stop-color:#FFFFFF; stop-opacity:0.95"/>
      <stop offset="100%" style="stop-color:#ADD8E6; stop-opacity:0.9"/>
    </linearGradient>

    <linearGradient id="tentacleGrad2" x1="0%" y1="0%" x2="0%" y2="100%"> <!-- Vertical gradient along stroke thickness -->
      <stop offset="0%" style="stop-color:#E6E6FA; stop-opacity:0.85"/>
      <stop offset="50%" style="stop-color:#F0F8FF; stop-opacity:0.9"/>
      <stop offset="100%" style="stop-color:#AFEEEE; stop-opacity:0.85"/>
    </linearGradient>
  </defs>

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

  <!-- Stars -->
  <g id="stars">
    <circle cx="60" cy="35" r="0.8" fill="#FFF8DC" opacity="0.7"/>
    <circle cx="120" cy="55" r="1" fill="#FFF8DC" opacity="0.8"/>
    <circle cx="210" cy="45" r="0.7" fill="#FFF8DC" opacity="0.6"/>
    <circle cx="260" cy="65" r="0.9" fill="#FFF8DC" opacity="0.7"/>
    <circle cx="30" cy="70" r="0.6" fill="#FFF8DC" opacity="0.5"/>
    <circle cx="180" cy="25" r="1.1" fill="#FFF8DC" opacity="0.75"/>
    <circle cx="280" cy="30" r="0.5" fill="#FFF8DC" opacity="0.6"/>
  </g>

  <!-- Sun -->
  <circle cx="150" cy="285" r="60" fill="#FFFACD" opacity="0.2" />

  <!-- Cityscape -->
  <g id="cityscape">
    <rect x="0" y="220" width="35" height="80" fill="#0F0F0F" />
    <rect x="30" y="200" width="40" height="100" fill="#121212" />
    <path d="M65 230 L65 300 L95 300 L95 190 L80 180 L65 190 Z" fill="#0D0D0D" />
    <rect x="90" y="210" width="50" height="90" fill="#111111" />
    <rect x="135" y="225" width="30" height="75" fill="#0E0E0E" />
    <rect x="160" y="195" width="45" height="105" fill="#141414" />
    <path d="M200 240 L200 300 L230 300 L230 200 Q215 192 200 200 Z" fill="#101010" />
    <rect x="225" y="215" width="40" height="85" fill="#131313" />
    <rect x="260" y="230" width="40" height="70" fill="#0C0C0C" />
    
    <!-- Window lights -->
    <circle cx="42" cy="240" r="1" fill="#FFFFE0" opacity="0.7"/>
    <rect x="75" y="220" width="2" height="3" fill="#FFFFE0" opacity="0.6"/>
    <circle cx="105" cy="250" r="1.2" fill="#FFFFE0" opacity="0.7"/>
    <rect x="175" y="230" width="3" height="2" fill="#FFFFE0" opacity="0.5"/>
    <circle cx="240" cy="245" r="1" fill="#FFFFE0" opacity="0.6"/>
    <rect x="180" y="205" width="2" height="2" fill="#FFFFE0" opacity="0.6"/>
    <rect x="98" y="200" width="2" height="3" fill="#FFFFE0" opacity="0.5"/>
     <circle cx="140" cy="265" r="0.8" fill="#FFFFE0" opacity="0.5"/>
  </g>

  <!-- Jellyfish -->
  <g id="jellyfish" transform="translate(150, 110) scale(0.9)">
    <g id="tentacles" transform="translate(0, 12)"> <!-- Position tentacles to start from bell's underside -->
      <path d="M -30 0 C -40 25, -20 50, -30 75 S -35 100, -25 120" stroke="url(#tentacleGrad1)" stroke-width="3" fill="none" stroke-linecap="round" opacity="0.85"/>
      <path d="M -15 0 C -20 30, 0 55, -10 85 S -15 110, 0 130" stroke="url(#tentacleGrad2)" stroke-width="3.5" fill="none" stroke-linecap="round" opacity="0.9"/>
      <path d="M 0 0 C 5 35, -5 60, 5 90 S 15 115, 5 140" stroke="url(#tentacleGrad1)" stroke-width="2.5" fill="none" stroke-linecap="round" opacity="0.9"/>
      <path d="M 15 0 C 20 25, 35 50, 20 80 S 25 105, 15 125" stroke="url(#tentacleGrad2)" stroke-width="3" fill="none" stroke-linecap="round" opacity="0.85"/>
      <path d="M 30 0 C 40 30, 25 55, 35 80 S 40 100, 30 115" stroke="url(#tentacleGrad1)" stroke-width="2.5" fill="none" stroke-linecap="round" opacity="0.8"/>
      
      <path d="M -22 0 C -25 20, -10 35, -20 50 S -25 65, -15 75" stroke="#FFD1DC" stroke-width="1.5" fill="none" stroke-linecap="round" opacity="0.7"/>
      <path d="M 8 0 C 12 22, 0 40, 10 55 S 15 70, 5 85" stroke="#E0FFFF" stroke-width="1.8" fill="none" stroke-linecap="round" opacity="0.75"/>

      <!-- Tentacle sparkles -->
      <circle cx="-30" cy="75" r="1.5" fill="#FFFFFF" opacity="0.9"/>
      <circle cx="0" cy="130" r="1.8" fill="#FFFFFF" opacity="0.95"/>
      <circle cx="5" cy="90" r="1.2" fill="#F0F8FF" opacity="0.85"/>
      <circle cx="15" cy="125" r="1.5" fill="#FFFFFF" opacity="0.9"/>
      <circle cx="-10" cy="85" r="1" fill="#F0F8FF" opacity="0.8"/>
    </g>

    <g id="bellAndHat">
      <path id="jellyfishBell" d="M -50 0 Q -50 -35 0 -35 Q 50 -35 50 0 C 40 12 25 18 0 18 C -25 18 -40 12 -50 0 Z" 
            fill="url(#jellyfishBellGrad)" stroke="#D8BFD8" stroke-width="0.8" opacity="0.9" />
      <path id="jellyfishBellOverlay" d="M -50 0 Q -50 -35 0 -35 Q 50 -35 50 0 C 40 12 25 18 0 18 C -25 18 -40 12 -50 0 Z" 
            fill="url(#jellyTexture)" opacity="0.4"/>
      
      <g id="topHat" transform="translate(0, -36)"> <!-- Position hat on top of bell's curve -->
        <ellipse cx="0" cy="0" rx="20" ry="5" fill="#1A1A1A" stroke="#050505" stroke-width="0.5"/> <!-- Brim -->
        <path d="M -12 0 L -12 -22 Q -12 -28 0 -28 Q 12 -28 12 -22 L 12 0 Z" fill="#101010" stroke="#000000" stroke-width="0.5"/> <!-- Crown -->
        <rect x="-13" y="-8" width="26" height="6" fill="#6A0DAD" rx="1" ry="1"/> <!-- Ribbon -->
      </g>
    </g>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Defining gradients -->
  <defs>
    <linearGradient id="sunset" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff7e5f"/>
      <stop offset="50%" stop-color="#feb47b"/>
      <stop offset="100%" stop-color="#ffcc33"/>
    </linearGradient>
    <radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)"/>
      <stop offset="100%" stop-color="rgba(173,216,230,0.5)"/>
    </radialGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#34495e"/>
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#1a252f"/>
    </linearGradient>
  </defs>
  
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#sunset)"/>
  
  <!-- Cityscape -->
  <g id="cityscape" transform="translate(0,150)">
    <rect x="20" y="50" width="40" height="100" fill="url(#buildingGradient)" />
    <rect x="80" y="80" width="30" height="70" fill="url(#buildingGradient)" />
    <rect x="130" y="60" width="50" height="90" fill="url(#buildingGradient)" />
    <rect x="200" y="90" width="35" height="60" fill="url(#buildingGradient)" />
    <rect x="250" y="70" width="25" height="80" fill="url(#buildingGradient)" />
    <!-- Windows -->
    <g fill="#ecf0f1" opacity="0.7">
      <!-- Building 1 -->
      <rect x="25" y="70" width="5" height="10"/>
      <rect x="35" y="90" width="5" height="10"/>
      <rect x="25" y="110" width="5" height="10"/>
      <rect x="35" y="130" width="5" height="10"/>
      <!-- Building 2 -->
      <rect x="85" y="100" width="3" height="6"/>
      <rect x="95" y="120" width="3" height="6"/>
      <rect x="85" y="140" width="3" height="6"/>
      <!-- Building 3 -->
      <rect x="135" y="80" width="4" height="8"/>
      <rect x="145" y="100" width="4" height="8"/>
      <rect x="155" y="120" width="4" height="8"/>
      <rect x="165" y="140" width="4" height="8"/>
      <!-- Building 4 -->
      <rect x="205" y="110" width="3" height="6"/>
      <rect x="215" y="130" width="3" height="6"/>
      <!-- Building 5 -->
      <rect x="255" y="90" width="2" height="4"/>
      <rect x="260" y="110" width="2" height="4"/>
      <rect x="265" y="130" width="2" height="4"/>
    </g>
  </g>
  
  <!-- Jellyfish -->
  <g id="jellyfish" transform="translate(150,100)">
    <!-- Tentacles -->
    <g fill="none" stroke="rgba(173,216,230,0.7)" stroke-width="2">
      <path d="M0,40 C-10,60 -20,80 -10,100" stroke-linecap="round"/>
      <path d="M0,40 C10,60 20,80 10,100" stroke-linecap="round"/>
      <path d="M0,40 C-15,65 -25,85 -15,110" stroke-linecap="round"/>
      <path d="M0,40 C15,65 25,85 15,110" stroke-linecap="round"/>
      <path d="M0,40 C-20,70 -30,90 -20,120" stroke-linecap="round"/>
      <path d="M0,40 C20,70 30,90 20,120" stroke-linecap="round"/>
    </g>
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#jellyfishGradient)" stroke="#ffffff" stroke-width="1"/>
    <!-- Top Hat -->
    <g transform="translate(0,-20)">
      <rect x="-20" y="-10" width="40" height="10" fill="url(#hatGradient)"/>
      <rect x="-15" y="-15" width="30" height="5" fill="url(#hatGradient)"/>
      <rect x="-20" y="-10" width="40" height="2" fill="#000" opacity="0.8"/>
      <rect x="-15" y="-15" width="30" height="1" fill="#000" opacity="0.8"/>
    </g>
  </g>
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="rgba(255, 204, 51,0.6)"/>
  
  <!-- Adding some clouds -->
  <g fill="rgba(255,255,255,0.5)">
    <ellipse cx="70" cy="40" rx="20" ry="10"/>
    <ellipse cx="90" cy="45" rx="15" ry="8"/>
    <ellipse cx="50" cy="45" rx="15" ry="8"/>
    <ellipse cx="220" cy="60" rx="25" ry="12"/>
    <ellipse cx="245" cy="65" rx="20" ry="10"/>
    <ellipse cx="275" cy="60" rx="15" ry="8"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 1

Judge's Analysis

    Player 1's submission is more visually appealing and closely adheres to the prompt.

    The jellyfish is well-rendered with a visible top hat and detailed tentacles, and the vibrant sunset enhances the composition.

    Player 2's submission is less detailed, with a simplistic jellyfish lacking clear tentacles, and a less dynamic sunset backdrop.

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
46
Player 2
40
Rectangles

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

Player 1
13
Player 2
26
Circles

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

Player 1
19
Player 2
1
Ellipses

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

Player 1
1
Player 2
7
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
13
Player 2
6
Groups

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

Player 1
6
Player 2
6

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
4
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
30
Player 2
3
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
24
Player 2
14

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
54
Player 2
12
Max Group Nesting

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

Player 1
2
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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