Back

SVG Drawing Match #1923

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating cityscape in a jellyfish dome"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" stop-color="#f06" stop-opacity="0.5" />
            <stop offset="100%" stop-color="#00a1ff" stop-opacity="0.2" />
        </radialGradient>
        <linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" stop-color="#ffe600" />
            <stop offset="100%" stop-color="#ff7f50" />
        </linearGradient>
    </defs>
    <rect width="100%" height="100%" fill="#0c0c0c" />
    <ellipse cx="150" cy="150" rx="120" ry="80" fill="url(#jellyfishGradient)" />
    <path d="M50 200 L100 180 L120 210 L160 190 L200 220 L250 160 L270 190 L300 150 L250 240 L200 220 L160 250 L100 230 Z" 
        fill="url(#cityGradient)" />
    <g fill="#fff">
        <circle cx="90" cy="180" r="5" />
        <circle cx="130" cy="160" r="7" />
        <circle cx="170" cy="210" r="6" />
        <circle cx="210" cy="190" r="8" />
        <circle cx="150" cy="240" r="4" />
    </g>
    <g fill="none" stroke="#ffffff" stroke-width="1.5">
        <line x1="70" y1="190" x2="95" y2="195" />
        <line x1="145" y1="160" x2="175" y2="175" />
        <line x1="185" y1="205" x2="210" y2="215" />
        <line x1="127" y1="210" x2="155" y2="220" />
        <line x1="110" y1="235" x2="140" y2="245" />
    </g>
    <g fill="none" stroke="rgba(255, 255, 255, 0.7)" stroke-width="2">
        <path d="M150 70 C 130 90, 70 50, 50 80" />
        <path d="M150 70 C 180 80, 230 30, 250 70" />
    </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#83a4d4"/>
      <stop offset="100%" stop-color="#b6fbff"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Jellyfish dome -->
  <ellipse cx="150" cy="150" rx="120" ry="100" fill="#a6e3f2"/>
  <ellipse cx="150" cy="150" rx="100" ry="80" fill="none" stroke="#84ced1" stroke-width="2"/>
  
  <!-- Floating cityscape -->
  <rect x="50" y="140" width="50" height="60" fill="#fdc172"/>
  <rect x="75" y="120" width="20" height="20" fill="#fdc172"/>
  <rect x="110" y="160" width="60" height="40" fill="#fdc172"/>
  
  <polygon points="130,120 155,105 165,120" fill="#fdc172"/>
  <polygon points="130,120 155,105 155,120" fill="#fdc172"/>
  <polygon points="160,120 165,120 165,125" fill="#fdc172"/>
  <polygon points="185,155 190,150 195,155" fill="#fdc172"/>
  <polygon points="180,140 190,130 200,140" fill="#fdc172"/>
  <polygon points="220,130 230,130 225,120" fill="#fdc172"/>
  
  <!-- Tower -->
  <rect x="100" y="90" width="30" height="50" fill="#f7b1a9"/>
  <rect x="110" y="60" width="10" height="30" fill="#f7b1a9"/>
  <rect x="106" y="55" width="18" height="5" fill="#f7b1a9"/>
  <rect x="109" y="50" width="12" height="5" fill="#f7b1a9"/>
  <rect x="108" y="45" width="14" height="5" fill="#f7b1a9"/>
  
  <!-- Sun -->
  <circle cx="240" cy="60" r="20" fill="#fce803"/>
  <circle cx="240" cy="60" r="13" fill="none" stroke="#fce803" stroke-width="2"/>
  <polygon points="240,13 240,5 230,22" fill="#fce803"/>
  <polygon points="247,28 253,30 260,23" fill="#fce803"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 1

Judge's Analysis

    Player 1's submission captures the theme of 'Floating cityscape in a jellyfish dome' with a more abstract and imaginative representation.

    The gradient colors and dynamic shapes evoke a sense of depth and fluidity, resembling a jellyfish.

    In contrast, Player 2's image, while clear and structured, lacks the ethereal quality and creativity required to fully convey the concept.

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
15
Player 2
21
Rectangles

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

Player 1
1
Player 2
9
Circles

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

Player 1
5
Player 2
2
Ellipses

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

Player 1
1
Player 2
2
Lines

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

Player 1
5
Player 2
Polygons

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

Player 1
Player 2
8
Paths

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

Player 1
3
Player 2
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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

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