Back

SVG Drawing Match #1728

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit jellyfish ballet in a glass globe"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#9090FF"/>
      <stop offset="100%" stop-color="#3030FF"/>
    </radialGradient>
    
    <filter id="glassEffect">
      <feGaussianBlur stdDeviation="2"/>
    </filter>
    
    <linearGradient id="jellyFishGrad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FF61D2"/>
      <stop offset="100%" stop-color="#FF6B6B"/>
    </linearGradient>
    
    <linearGradient id="jellyFishGrad2" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#4ECDC4"/>
      <stop offset="100%" stop-color="#45B7D1"/>
    </linearGradient>
    
    <linearGradient id="jellyFishGrad3" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#92A3FD"/>
      <stop offset="100%" stop-color="#7D64FD"/>
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="#1A1A30"/>
  
  <!-- Moon -->
  <circle cx="80" cy="80" r="30" fill="url(#moonGradient)" filter="url(#glassEffect)"/>
  
  <!-- Glass Globe -->
  <circle cx="150" cy="170" r="100" fill="url(#glassGrad)"/>
  
  <!-- Jellyfish -->
  <g transform="translate(150,170)">
    <!-- Jellyfish 1 -->
    <path d="M0,0Q30,20-20,30" fill="url(#jellyFishGrad1)" opacity="0.8"/>
    <line x1="-30" y1="-20" x2="30" y2="-20" stroke="#FF61D2" stroke-width="2"/>
    <line x1="-25" y1="-15" x2="25" y2="-15" stroke="#FF61D2" stroke-width="2"/>
    <line x1="-20" y1="-10" x2="20" y2="-10" stroke="#FF61D2" stroke-width="2"/>
    
    <!-- Jellyfish 2 -->
    <path d="M0,50Q30,70-20,60" fill="url(#jellyFishGrad2)" opacity="0.8"/>
    <line x1="-30" y1="40" x2="30" y2="40" stroke="#4ECDC4" stroke-width="2"/>
    <line x1="-25" y1="45" x2="25" y2="45" stroke="#4ECDC4" stroke-width="2"/>
    <line x1="-20" y1="50" x2="20" y2="50" stroke="#4ECDC4" stroke-width="2"/>
    
    <!-- Jellyfish 3 -->
    <path d="M0,-50Q30,-30-20,-40" fill="url(#jellyFishGrad3)" opacity="0.8"/>
    <line x1="-30" y1="-40" x2="30" y2="-40" stroke="#92A3FD" stroke-width="2"/>
    <line x1="-25" y1="-45" x2="25" y2="-45" stroke="#7D64FD" stroke-width="2"/>
    <line x1="-20" y1="-50" x2="20" y2="-50" stroke="#7D64FD" stroke-width="2"/>
  </g>
  
  <!-- Floating particles -->
  <circle cx="130" cy="140" r="2" fill="#FF61D2"/>
  <circle cx="170" cy="160" r="3" fill="#4ECDC4" opacity="0.8"/>
  <circle cx="190" cy="120" r="2" fill="#92A3FD"/>
  <circle cx="110" cy="180" r="3" fill="#7D64FD" opacity="0.8"/>
  <circle cx="140" cy="190" r="2" fill="#FF61D2"/>
  
  <!-- Glass effect -->
  <rect width="300" height="300" fill="url(#glassGrad)"/>
  
  <!-- Reflection -->
  <circle cx="150" cy="220" r="20" fill="white" opacity="0.1" filter="url(#glassEffect)"/>
</svg>
SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="glassGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="lightblue" stop-opacity="0.2"/>
    </radialGradient>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#000010"/>
    </radialGradient>
    <radialGradient id="jellyGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff66cc"/>
      <stop offset="100%" stop-color="#993399"/>
    </radialGradient>
    <radialGradient id="jellyGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ffcc"/>
      <stop offset="100%" stop-color="#3399ff"/>
    </radialGradient>
    <radialGradient id="jellyGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc66"/>
      <stop offset="100%" stop-color="#ff6666"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <clipPath id="globeClip">
      <circle cx="150" cy="150" r="130"/>
    </clipPath>
  </defs>
  <rect width="300" height="300" fill="black"/>
  <g clip-path="url(#globeClip)">
    <circle cx="150" cy="150" r="130" fill="url(#bgGradient)"/>
    <circle cx="100" cy="80" r="20" fill="lightyellow" fill-opacity="0.8" filter="url(#glow)"/>
    <circle cx="170" cy="200" r="3" fill="white" fill-opacity="0.7"/>
    <circle cx="200" cy="170" r="2" fill="white" fill-opacity="0.7"/>
    <circle cx="130" cy="230" r="2.5" fill="white" fill-opacity="0.7"/>
    <circle cx="160" cy="110" r="1.5" fill="white" fill-opacity="0.7"/>
    
    <g id="jellyfish1">
      <ellipse cx="130" cy="150" rx="15" ry="10" fill="url(#jellyGradient1)" filter="url(#glow)"/>
      <path d="M130,160 C125,175 120,190 130,205" stroke="#ff66cc" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M135,160 C140,175 135,190 140,210" stroke="#ff66cc" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M125,160 C120,170 125,185 120,195" stroke="#ff66cc" stroke-width="2" fill="none" filter="url(#glow)"/>
    </g>
    
    <g id="jellyfish2">
      <ellipse cx="180" cy="120" rx="12" ry="9" fill="url(#jellyGradient2)" filter="url(#glow)"/>
      <path d="M180,130 C185,140 190,150 185,165" stroke="#66ffcc" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M175,130 C170,140 175,155 170,170" stroke="#66ffcc" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M182,130 C187,140 192,150 187,165" stroke="#66ffcc" stroke-width="2" fill="none" filter="url(#glow)"/>
    </g>
    
    <g id="jellyfish3">
      <ellipse cx="110" cy="200" rx="14" ry="10" fill="url(#jellyGradient3)" filter="url(#glow)"/>
      <path d="M110,210 C105,220 100,230 110,245" stroke="#ffcc66" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M115,210 C120,220 115,230 120,245" stroke="#ffcc66" stroke-width="2" fill="none" filter="url(#glow)"/>
      <path d="M105,210 C100,220 95,230 100,245" stroke="#ffcc66" stroke-width="2" fill="none" filter="url(#glow)"/>
    </g>
  </g>
  <circle cx="150" cy="150" r="130" fill="none" stroke="url(#glassGradient)" stroke-width="5"/>
  <path d="M90,100 Q130,80 170,100" stroke="white" stroke-width="2" fill="none" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 2

Judge's Analysis

    Player 2's image more effectively captures the prompt with a clear depiction of jellyfish and a moonlit ambiance within a circular 'glass globe' frame.

    The use of vibrant colors and recognizable forms enhances the visual appeal and clarity, making it more engaging and aligned with the theme compared to Player 1's abstract interpretation.

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
22
Player 2
22
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
8
Player 2
8
Ellipses

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

Player 1
Player 2
3
Lines

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

Player 1
9
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
10
Groups

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

Player 1
1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
6
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
12

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
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
6
Player 2
20
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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