Back

SVG Drawing Match #2144

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Mushroom castle under water with a crown-wearing jellyfish king"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <rect x="0" y="0" width="300" height="300" fill="#134074" /> <!-- Background: Deep blue -->
  
  <!-- Water waves with gradient -->
  <defs>
    <linearGradient id="waveGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#80C3EA" />
      <stop offset="100%" stop-color="#134074" />
    </linearGradient>
  </defs>
  <rect x="0" y="120" width="300" height="180" fill="url(#waveGradient)" />
  
  <!-- Mushroom castle with gradient -->
  <g>
    <rect x="60" y="60" width="180" height="180" fill="#FFC857" /> <!-- Mushroom stem -->
    <ellipse cx="150" cy="120" rx="90" ry="60" fill="#EF476F" /> <!-- Mushroom cap -->
    <polygon points="90,120 150,60 210,120" fill="#D8A07F" /> <!-- Mushroom dots -->
  </g>
  
  <!-- Underwater elements -->
  <!-- Crown-wearing jellyfish king -->
  <g>
    <ellipse cx="200" cy="240" rx="40" ry="60" fill="#F896D8" /> <!-- Jellyfish head -->
    <polygon points="200,280 190,300 200,295 210,300" fill="#F3722C" /> <!-- Jellyfish crown -->
    <line x1="200" y1="240" x2="200" y2="300" stroke="#AB6E68" stroke-width="2" /> <!-- Jellyfish tentacle -->
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #97E1FF; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #0044CC; stop-opacity: 1" />
    </radialGradient>
    <radialGradient id="mushroomCapGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #FF7070; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FF0000; stop-opacity: 1" />
    </radialGradient>
    <linearGradient id="jellyBodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: #A95EFF; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #5F00FF; stop-opacity: 1" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)" />
  <!-- Mushroom Castle -->
  <path d="M100,220 C120,190 180,190 200,220 L190,260 L110,260 Z" fill="#D4BFA5" />
  <ellipse cx="150" cy="200" rx="60" ry="30" fill="url(#mushroomCapGradient)" />
  <circle cx="130" cy="195" r="5" fill="#FFFFFF" />
  <circle cx="170" cy="190" r="8" fill="#FFFFFF" />
  <circle cx="150" cy="185" r="6" fill="#FFFFFF" />

  <!-- Jellyfish King -->
  <ellipse cx="150" cy="100" rx="40" ry="20" fill="url(#jellyBodyGradient)" />
  <path d="M110,100 C120,130 180,130 190,100" stroke="url(#jellyBodyGradient)" stroke-width="3" fill="none" />
  <circle cx="140" cy="105" r="3" fill="#FFFFFF" />
  <circle cx="160" cy="105" r="3" fill="#FFFFFF" />
  <path d="M150,80 L145,100 L155,100 Z" fill="gold" stroke="black" stroke-width="1" />

  <!-- Jellyfish Tentacles -->
  <path d="M135,120 C140,140 130,160 125,180" stroke="url(#jellyBodyGradient)" stroke-width="2" fill="none" />
  <path d="M145,120 C150,145 160,165 155,180" stroke="url(#jellyBodyGradient)" stroke-width="2" fill="none" />
  <path d="M155,120 C160,140 150,160 165,180" stroke="url(#jellyBodyGradient)" stroke-width="2" fill="none" />

  <!-- Bubbles -->
  <circle cx="70" cy="60" r="8" fill="#FFFFFF" opacity="0.8" />
  <circle cx="200" cy="50" r="5" fill="#FFFFFF" opacity="0.8" />
  <circle cx="250" cy="120" r="10" fill="#FFFFFF" opacity="0.8" />
  <circle cx="230" cy="200" r="7" fill="#FFFFFF" opacity="0.8" />
</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 clearly depicts a mushroom castle under water with a crown-wearing jellyfish king, adhering closely to the prompt.

    The composition is vibrant and visually appealing, with a clear underwater theme and creative use of colors and shapes.

    In contrast, Player 1's submission lacks clarity and detail, making it difficult to interpret the elements described in 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
8
Player 2
18
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
Player 2
9
Ellipses

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

Player 1
2
Player 2
2
Lines

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

Player 1
1
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
Player 2
6
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
4

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