Back

SVG Drawing Match #1765

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon-lit jellyfish vending machine in a bustling underwater city"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gentle gradient to give depth -->
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#0074D9"/>
    </radialGradient>
    <linearGradient id="jellyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff9ff3" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#f368e0" stop-opacity="0.9"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)" />

  <!-- Vending Machine Outline -->
  <rect x="100" y="50" width="100" height="200" rx="10" ry="10" fill="#333333" stroke="#ffcccc" stroke-width="3"/>

  <!-- Jellyfish vending slots -->
  <g>
    <rect x="110" y="70" width="80" height="40" rx="5" ry="5" fill="#222222" />
    <ellipse cx="150" cy="90" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
  </g>
  <g>
    <rect x="110" y="120" width="80" height="40" rx="5" ry="5" fill="#222222" />
    <ellipse cx="150" cy="140" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
  </g>
  <g>
    <rect x="110" y="170" width="80" height="40" rx="5" ry="5" fill="#222222" />
    <ellipse cx="150" cy="190" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
  </g>

  <!-- Neon Lights -->
  <path d="M100,50 Q120,10 200,50" stroke="#39FF14" stroke-width="4" fill="transparent" />
  <text x="135" y="45" font-family="Arial" font-size="12" fill="#39FF14" text-anchor="middle">Jelly Vend</text>

  <!-- Details and Coins -->
  <circle cx="85" cy="260" r="10" fill="#FFD700"/>
  <circle cx="215" cy="260" r="10" fill="#FFD700"/>
  <line x1="85" y1="260" x2="85" y2="230" stroke="#FFD700" stroke-width="2"/>
  <line x1="215" y1="260" x2="215" y2="230" stroke="#FFD700" stroke-width="2"/>

  <!-- Cityscape in the background -->
  <g opacity="0.5">
    <rect x="30" y="230" width="30" height="50" fill="#666666"/>
    <rect x="70" y="210" width="20" height="70" fill="#777777"/>
    <rect x="210" y="220" width="20" height="60" fill="#888888"/>
    <rect x="260" y="240" width="15" height="40" fill="#555555"/>
    <rect x="270" y="230" width="10" height="50" fill="#444444"/>
  </g>

  <!-- Bubbles for underwater effect -->
  <g fill="#BBF0F3">
    <circle cx="30" cy="30" r="5" opacity="0.8"/>
    <circle cx="50" cy="70" r="3" opacity="0.6"/>
    <circle cx="200" cy="30" r="6" opacity="0.8"/>
    <circle cx="240" cy="100" r="4" opacity="0.7"/>
    <circle cx="70" cy="130" r="3" opacity="0.5"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Underwater background -->
  <rect x="0" y="0" width="300" height="300" fill="#08194C" />
  
  <!-- City buildings in the background -->
  <rect x="30" y="30" width="80" height="150" fill="#0E3666" />
  <rect x="120" y="50" width="50" height="130" fill="#0E3666" />
  <rect x="200" y="20" width="60" height="160" fill="#0E3666" />
  
  <!-- Jellyfish vending machine -->
  <rect x="100" y="100" width="100" height="150" fill="#FF55AA" />
  <rect x="110" y="110" width="80" height="40" fill="#D14D8B" />
  <rect x="110" y="160" width="80" height="40" fill="#D14D8B" />
  <circle cx="130" cy="170" r="5" fill="#FF55AA" />
  <circle cx="170" cy="170" r="5" fill="#FF55AA" />
  
  <!-- Neon lights on the vending machine -->
  <circle cx="120" cy="130" r="10" fill="#FF1493" />
  <circle cx="180" cy="130" r="10" fill="#FF1493" />
  <circle cx="120" cy="190" r="10" fill="#FF1493" />
  <circle cx="180" cy="190" r="10" fill="#FF1493" />
  
  <!-- Glow around the vending machine -->
  <circle cx="150" cy="175" r="45" fill="none" stroke="#FF55AA" stroke-width="3" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission better captures the concept of a 'neon-lit jellyfish vending machine' in an underwater city.

    The use of neon colors and the depiction of a vending machine with pink buttons suggests a creative interpretation aligned with the prompt.

    The background elements hint at an underwater cityscape, contributing to the overall theme.

    Player 2's image lacks clarity and distinct elements that connect directly to the theme.

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

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

Player 1
10
Player 2
7
Circles

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

Player 1
7
Player 2
7
Ellipses

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

Player 1
3
Player 2
Lines

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
5

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