Back

SVG Drawing Match #2

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating umbrella jellyfish with cityscape reflection on each dome"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cityscape reflection -->
  <rect x="0" y="150" width="300" height="150" fill="#33415c" />
  <!-- Floating umbrella jellyfish body -->
  <ellipse cx="150" cy="150" rx="60" ry="90" fill="#61c0bf" />
  <!-- Umbrella top part -->
  <path d="M45,90 Q150,30 255,90 L200,150 Q150,110 100,150 Z" fill="#f4d35e" />
  <!-- Jellyfish tentacles -->
  <path d="M140,240 Q150,270 160,240 Q155,250 150,260 Q145,250 140,240 M170,240 Q180,270 190,240 Q185,250 180,260 Q175,250 170,240 M120,240 Q130,270 140,240 Q135,250 130,260 Q125,250 120,240" fill="none" stroke="#f18973" stroke-width="2" />
  <!-- Cityscape reflection detail -->
  <rect x="0" y="150" width="300" height="75" fill="url(#grad1)" />
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgba(51, 65, 92, 0.9);" />
      <stop offset="100%" style="stop-color:rgba(51, 65, 92, 0.1);" />
    </linearGradient>
  </defs>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="umbrellagradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#8A2BE2"/>
    </radialGradient>
    <linearGradient id="cityreflection" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#FFD700" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#FF6347" stop-opacity="0.3"/>
    </linearGradient>
    <pattern id="cityscape" patternUnits="userSpaceOnUse" width="30" height="15">
      <rect x="0" y="0" width="30" height="15" fill="url(#cityreflection)"/>
      <rect x="0" y="10" width="5" height="5" fill="#333"/>
      <rect x="10" y="10" width="6" height="5" fill="#333"/>
      <rect x="20" y="5" width="4" height="10" fill="#333"/>
    </pattern>
  </defs>
  <g>
    <!-- Main Jellyfish Dome -->
    <ellipse cx="150" cy="100" rx="50" ry="30" fill="url(#umbrellagradient)" stroke="#4B0082" stroke-width="2"/>
    <!-- City Scape Reflection -->
    <ellipse cx="150" cy="100" rx="45" ry="25" fill="url(#cityscape)" fill-opacity="0.6"/>
    <!-- Tentacles -->
    <path d="M150,130 C140,170 130,220 140,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
    <path d="M155,130 C150,170 145,220 160,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
    <path d="M160,130 C160,170 175,220 155,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
    <path d="M145,130 C135,170 120,220 135,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
  </g>
  <!-- Additional Umbrella Jellyfish with smaller domes and city reflection -->
  <g transform="translate(180, -10) scale(0.5)">
    <ellipse cx="150" cy="100" rx="50" ry="30" fill="url(#umbrellagradient)" stroke="#4B0082" stroke-width="2"/>
    <ellipse cx="150" cy="100" rx="45" ry="25" fill="url(#cityscape)" fill-opacity="0.6"/>
    <path d="M150,130 C140,170 130,220 140,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
    <path d="M155,130 C150,170 145,220 160,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
  </g>
  <g transform="translate(50, 30) scale(0.3)">
    <ellipse cx="150" cy="100" rx="50" ry="30" fill="url(#umbrellagradient)" stroke="#4B0082" stroke-width="2"/>
    <ellipse cx="150" cy="100" rx="45" ry="25" fill="url(#cityscape)" fill-opacity="0.6"/>
    <path d="M150,130 C140,170 130,220 140,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
    <path d="M155,130 C150,170 145,220 160,260" stroke="#8A2BE2" stroke-width="2" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image effectively combines the concept of jellyfish with a cityscape reflection, using the jellyfish domes to display a clear pattern resembling buildings.

    The technical execution is more refined, and the design captures the floating element in a more visually appealing manner.

    Player 1's submission lacks a clear reflection of a cityscape and is less aligned with the prompt.

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
5
Player 2
18
Rectangles

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

Player 1
2
Player 2
4
Circles

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

Player 1
Player 2
Ellipses

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

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

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
6

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