Back

SVG Drawing Match #299

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Catfish in a tuxedo, sipping tea under a jellyfish chandelier"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#oceanGradient)"/>

  <!-- Ocean Gradient -->
  <defs>
    <linearGradient id="oceanGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#9ec9ed"/>
      <stop offset="100%" stop-color="#41729f"/>
    </linearGradient>

    <!-- Jellyfish Gradient -->
    <radialGradient id="jellyfishGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff99cc" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#cc66ff" stop-opacity="0.4"/>
    </radialGradient>
  </defs>

  <!-- Catfish -->
  <g transform="translate(150, 200) scale(0.7)">
    <path d="M-25,-50 Q-40,-40 -50,-10 Q-60,30 -20,50 Q20,70 50,35 Q70,10 60,-20 Q50,-50 25,-50 Z" 
          fill="#ffd966" stroke="#666" stroke-width="1"/>
    <path d="M-25,-50 Q0,-20 25,-50" fill="none" stroke="#666" stroke-width="1"/>

    <!-- Tuxedo -->
    <path d="M-25,-10 Q0,-5 25,-10 Q20,50 -20,35 Z" fill="#333"/>
    <path d="M0,0 L0,30" stroke="#fff" stroke-width="1"/>
    <circle cx="0" cy="10" r="1.5" fill="#fff"/>
    <circle cx="0" cy="20" r="1.5" fill="#fff"/>

    <!-- Catfish Face -->
    <ellipse cx="-5" cy="-40" rx="5" ry="7" fill="#fff"/>
    <circle cx="-5" cy="-40" r="2" fill="#333"/>
    
    <ellipse cx="5" cy="-40" rx="5" ry="7" fill="#fff"/>
    <circle cx="5" cy="-40" r="2" fill="#333"/>
    
    <circle cx="0" cy="-30" r="1.5" fill="#666"/>

    <!-- Tea Cup -->
    <path d="M15,-15 Q18,-12 22,-15" fill="none" stroke="#fff" stroke-width="2"/>
    <path d="M22,-15 A5,5 0 0,0 30,-18 A5,5 0 0,0 22,-21 Z" 
          fill="#fff" stroke="#333" stroke-width="1"/>
  </g>

  <!-- Jellyfish Chandelier -->
  <g transform="translate(150, 50)">
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#jellyfishGradient)" stroke="#cc66ff" stroke-width="2"/>
    <line x1="0" y1="15" x2="0" y2="40" stroke="#cc66ff" stroke-width="2"/>

    <path d="M-20,15 C-15,30 -5,30 0,15" fill="none" stroke="#ff99cc" stroke-width="1"/>
    <path d="M-10,15 C-5,30 5,30 10,15" fill="none" stroke="#ff99cc" stroke-width="1"/>
    <path d="M0,15 C5,30 15,30 20,15" fill="none" stroke="#ff99cc" stroke-width="1"/>
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions -->
  <defs>
    <!-- Gradient for the tuxedo -->
    <linearGradient id="tuxedoGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#2c3e50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#34495e;stop-opacity:1" />
    </linearGradient>
    <!-- Gradient for the water background -->
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" style="stop-color:#a2d9ff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#2980b9;stop-opacity:1"/>
    </radialGradient>
    <!-- Pattern for tea cup texture -->
    <pattern id="teaPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1" fill="#d35400"/>
    </pattern>
    <!-- Gradient for the jellyfish -->
    <radialGradient id="jellyGradient" cx="50%" cy="30%" r="50%">
      <stop offset="0%" style="stop-color:#f1c40f;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#e67e22;stop-opacity:0.8"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  
  <!-- Jellyfish Chandelier -->
  <g id="jellyChandelier">
    <!-- Umbrella part of jellyfish -->
    <ellipse cx="150" cy="70" rx="60" ry="30" fill="url(#jellyGradient)" />
    <!-- Tentacles of jellyfish -->
    <path d="M90,70 C80,100 85,130 100,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M105,70 C100,100 105,130 120,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M120,70 C115,100 120,130 135,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M135,70 C130,100 135,130 150,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M150,70 C145,100 150,130 165,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M165,70 C160,100 165,130 180,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M180,70 C175,100 180,130 195,150" stroke="#f39c12" stroke-width="2" fill="none"/>
    <path d="M195,70 C190,100 195,130 210,150" stroke="#f39c12" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Catfish in a Tuxedo -->
  <g id="catfish" transform="translate(150,210)">
    <!-- Catfish body -->
    <path d="M-50,0 Q0,-40 50,0 Q30,20 -30,20 Z" fill="#bdc3c7" stroke="#7f8c8d" stroke-width="2"/>
    <!-- Tuxedo detail overlay -->
    <path d="M-35,0 Q0,-30 35,0 L35,10 Q0,-15 -35,10 Z" fill="url(#tuxedoGradient)"/>
    <!-- Catfish stripes -->
    <path d="M-20,5 Q0,-10 20,5" stroke="#ecf0f1" stroke-width="2" fill="none"/>
    <!-- Tail -->
    <path d="M50,0 L70,5 L70,15 L50,10 Z" fill="#bdc3c7" stroke="#7f8c8d" stroke-width="2"/>
    <!-- Catfish eyes with a touch of style -->
    <circle cx="-20" cy="-10" r="3" fill="#2c3e50"/>
    <circle cx="15" cy="-10" r="3" fill="#2c3e50"/>
    <!-- Mustache-like whiskers -->
    <path d="M-25,-5 Q-40,-10 -30,-15" stroke="#2c3e50" stroke-width="1" fill="none"/>
    <path d="M20,-5 Q35,-10 25,-15" stroke="#2c3e50" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Tea cup -->
  <g id="teaCup" transform="translate(190,230)">
    <!-- Cup body with pattern fill -->
    <path d="M0,0 Q15,-20 30,0 L30,12 Q15,22 0,12 Z" fill="url(#teaPattern)" stroke="#7f8c8d" stroke-width="1"/>
    <!-- Tea liquid -->
    <ellipse cx="15" cy="5" rx="12" ry="4" fill="#f39c12" opacity="0.8"/>
    <!-- Cup handle -->
    <path d="M30,3 Q40,10 30,17" fill="none" stroke="#7f8c8d" stroke-width="2"/>
  </g>
  
  <!-- Additional decorative bubbles -->
  <g id="bubbles">
    <circle cx="50" cy="250" r="4" fill="#ecf0f1" opacity="0.7"/>
    <circle cx="80" cy="240" r="3" fill="#ecf0f1" opacity="0.7"/>
    <circle cx="60" cy="270" r="5" fill="#ecf0f1" opacity="0.7"/>
    <circle cx="250" cy="260" r="4" fill="#ecf0f1" opacity="0.7"/>
    <circle cx="230" cy="280" r="3" fill="#ecf0f1" opacity="0.7"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the whimsical concept of a catfish in a tuxedo sipping tea under a jellyfish chandelier.

    The image presents a clearer depiction of a catfish in formal attire with a tea cup, and the jellyfish chandelier is more visually distinct.

    Additionally, the composition is more harmonious and technically polished, enhancing its overall appeal and adherence to 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
19
Player 2
27
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
5
Player 2
8
Ellipses

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

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

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

Player 1
9
Player 2
16
Groups

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

Player 1
2
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
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
2
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
27
Player 2
43
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
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

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