Back

SVG Drawing Match #1716

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit Jellyfish Ballet in the Sky"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#001f3f" />
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="40" fill="#f3c623" />
  
  <!-- Stars -->
  <circle cx="30" cy="30" r="2" fill="#ffffff" />
  <circle cx="80" cy="80" r="2" fill="#ffffff" />
  <circle cx="200" cy="20" r="2" fill="#ffffff" />
  <circle cx="120" cy="150" r="2" fill="#ffffff" />
  <circle cx="280" cy="200" r="2" fill="#ffffff" />
  
  <!-- Jellyfish Body -->
  <ellipse cx="150" cy="150" rx="30" ry="50" fill="#ffe8a5" />
  
  <!-- Jellyfish Tentacles -->
  <path d="M120,200 Q130,220 150,170 Q170,220 180,200 Q160,250 150,170" fill="#77b5fe" />
  <path d="M130,210 Q140,230 150,180 Q160,230 170,210 Q150,260 150,180" fill="#77b5fe" />
  <path d="M140,220 Q150,240 150,190 Q160,240 160,220 Q140,270 150,190" fill="#77b5fe" />
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#f9e5b6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f3e2b6;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="jellyfishGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff7f50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff4500;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="jellyfishGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9400d3;stop-opacity:1" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur" />
      <feMerge>
        <feMergeNode in="blur" />
        <feMergeNode />
      </feMerge>
    </filter>
  </defs>
  
  <rect width="300" height="300" fill="black" />
  
  <circle cx="150" cy="70" r="40" fill="url(#moonGradient)" filter="url(#glow)" />
  
  <path d="M120 150 Q100 130 110 110 Q120 130 120 150 Z" fill="url(#jellyfishGradient1)" class="jellyfish" transform="rotate(-30 120 150)" />
  <path d="M180 120 Q200 140 190 160 Q180 140 180 120 Z" fill="url(#jellyfishGradient2)" class="jellyfish" transform="rotate(30 180 120)" />
  
  <path d="M125 230 C130 210 150 210 155 230 S180 250 175 230" stroke="#ffffff" stroke-width="2" fill="none" />
  <path d="M155 230 C160 210 180 210 185 230 S210 250 205 230" stroke="#ffffff" stroke-width="2" fill="none" />
  
  <circle cx="120" cy="170" r="10" fill="#ffffff" opacity="0.8" />
  <circle cx="180" cy="190" r="15" fill="#ffffff" opacity="0.8" />
  
  <text x="150" y="280" font-family="Arial" font-size="20" fill="#ffffff" text-anchor="middle">Moonlit Jellyfish Ballet</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's image effectively captures the prompt with a clear depiction of a jellyfish-like form under a distinct moon, creating a sense of motion and elegance.

    The simplicity and color contrast enhance its visual appeal, aligning well with the theme.

    Player 2's image, while creative, lacks the direct representation of a jellyfish and feels more abstract, making it 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
11
Player 2
8
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
6
Player 2
3
Ellipses

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
2

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

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