Back

SVG Drawing Match #2423

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a top hat juggling teacups underwater."

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1a3c80"/>
      <stop offset="100%" stop-color="#0b1933"/>
    </radialGradient>
    <filter id="bubbles">
      <feTurbulence type="turbulence" baseFrequency="0.01" numOctaves="3"/>
      <feDisplacementMap in="SourceGraphic" scale="5"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#water)"/>
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="160" rx="45" ry="40" fill="#ff6b6b"/>
  
  <!-- Tentacles -->
  <path d="M120 180 Q 90 220 70 260" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  <path d="M130 180 Q 110 230 100 270" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  <path d="M140 180 Q 140 230 140 270" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  <path d="M160 180 Q 160 230 160 270" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  <path d="M170 180 Q 190 230 200 270" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  <path d="M180 180 Q 210 220 230 260" stroke="#ff6b6b" stroke-width="12" fill="none"/>
  
  <!-- Teacups -->
  <g transform="rotate(-30 120 130)">
    <ellipse cx="120" cy="130" rx="15" ry="10" fill="#fff"/>
    <path d="M105 130 Q 120 140 135 130" fill="none" stroke="#fff" stroke-width="2"/>
  </g>
  <g transform="rotate(30 180 130)">
    <ellipse cx="180" cy="130" rx="15" ry="10" fill="#fff"/>
    <path d="M165 130 Q 180 140 195 130" fill="none" stroke="#fff" stroke-width="2"/>
  </g>
  <g transform="rotate(0 150 90)">
    <ellipse cx="150" cy="90" rx="15" ry="10" fill="#fff"/>
    <path d="M135 90 Q 150 100 165 90" fill="none" stroke="#fff" stroke-width="2"/>
  </g>
  
  <!-- Top hat -->
  <rect x="120" y="80" width="60" height="10" fill="#333"/>
  <rect x="130" y="40" width="40" height="40" fill="#333"/>
  
  <!-- Eyes -->
  <circle cx="135" cy="150" r="8" fill="white"/>
  <circle cx="165" cy="150" r="8" fill="white"/>
  <circle cx="135" cy="150" r="4" fill="black"/>
  <circle cx="165" cy="150" r="4" fill="black"/>
  
  <!-- Bubbles -->
  <g filter="url(#bubbles)">
    <circle cx="50" cy="50" r="10" fill="rgba(255,255,255,0.3)"/>
    <circle cx="250" cy="70" r="15" fill="rgba(255,255,255,0.3)"/>
    <circle cx="80" cy="220" r="12" fill="rgba(255,255,255,0.3)"/>
    <circle cx="220" cy="240" r="8" fill="rgba(255,255,255,0.3)"/>
  </g>
</svg>
SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="30%" r="80%">
      <stop offset="0%" stop-color="#66ccff"/>
      <stop offset="100%" stop-color="#003d66"/>
    </radialGradient>
    <linearGradient id="octoGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#ff6347"/>
    </linearGradient>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#444"/>
      <stop offset="100%" stop-color="#000"/>
    </linearGradient>
    <radialGradient id="teacupGradient" cx="50%" cy="30%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#e0f7fa"/>
    </radialGradient>
    <pattern id="seaweedPattern" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
      <rect width="5" height="10" fill="#005500"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <g fill="rgba(255,255,255,0.3)">
    <circle cx="50" cy="40" r="8"/>
    <circle cx="230" cy="20" r="5"/>
    <circle cx="180" cy="80" r="6"/>
    <circle cx="100" cy="120" r="4"/>
    <circle cx="250" cy="100" r="7"/>
  </g>

  <rect y="260" width="300" height="40" fill="url(#seaweedPattern)" />

  <g id="octopus">
    <ellipse cx="150" cy="160" rx="60" ry="50" fill="url(#octoGradient)" />

    <path d="M150,200 C130,230 110,260 140,270" fill="url(#octoGradient)"/>
    <path d="M150,200 C160,230 180,260 155,275" fill="url(#octoGradient)"/>
    <path d="M150,190 C120,210 100,230 120,250" fill="url(#octoGradient)"/>
    <path d="M150,190 C180,210 200,230 175,250" fill="url(#octoGradient)"/>
    <path d="M150,180 C110,200 100,220 115,235" fill="url(#octoGradient)"/>
    <path d="M150,180 C190,200 210,220 185,235" fill="url(#octoGradient)"/>
    <path d="M150,170 C130,190 120,210 130,225" fill="url(#octoGradient)"/>
    <path d="M150,170 C170,190 180,210 170,225" fill="url(#octoGradient)"/>

    <g fill="#ffdbac" stroke="#e09060" stroke-width="1">
      <circle cx="135" cy="225" r="4"/>
      <circle cx="125" cy="215" r="3"/>
      <circle cx="115" cy="205" r="2"/>
      <circle cx="165" cy="225" r="4"/>
      <circle cx="175" cy="215" r="3"/>
      <circle cx="185" cy="205" r="2"/>
      <circle cx="145" cy="250" r="5"/>
      <circle cx="155" cy="265" r="4"/>
      <circle cx="130" cy="255" r="3"/>
      <circle cx="140" cy="270" r="2"/>
      <circle cx="160" cy="255" r="3"/>
      <circle cx="170" cy="270" r="2"/>
    </g>
  </g>

  <g id="tophat" transform="translate(135,100)">
    <rect x="0" y="0" width="30" height="40" fill="url(#hatGradient)" stroke="#111" stroke-width="1"/>
    <ellipse cx="15" cy="40" rx="25" ry="8" fill="url(#hatGradient)" stroke="#111" stroke-width="1"/>
    <rect x="-5" y="25" width="40" height="8" fill="#900"/>
  </g>

  <g id="teacups" fill="url(#teacupGradient)" stroke="#90a4ae" stroke-width="1">
    <g transform="translate(60,60) rotate(-15)">
      <ellipse cx="0" cy="0" rx="12" ry="6"/>
      <path d="M-12,0 a1,1 0 0,1 0,4" stroke="#90a4ae" fill="none"/>
    </g>
    <g transform="translate(240,80) rotate(20)">
      <ellipse cx="0" cy="0" rx="14" ry="7"/>
      <path d="M-14,0 a1,1 0 0,1 0,4" stroke="#90a4ae" fill="none"/>
    </g>
    <g transform="translate(180,40) rotate(-5)">
      <ellipse cx="0" cy="0" rx="10" ry="5"/>
      <path d="M-10,0 a1,1 0 0,1 0,3" stroke="#90a4ae" fill="none"/>
    </g>
  </g>

  <g fill="rgba(255,255,255,0.5)">
    <circle cx="230" cy="60" r="3"/>
    <circle cx="50" cy="70" r="5"/>
    <circle cx="180" cy="30" r="4"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's submission adheres more closely to the prompt, as the octopus is wearing a top hat and the composition includes bubbles to emphasize the underwater setting.

    While it lacks teacups, the design is simple yet effective and visually appealing.

    Player 2's submission, though creative with some underwater elements, does not clearly depict the octopus juggling teacups and has less clarity in conveying the specified idea.

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
24
Player 2
41
Rectangles

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

Player 1
3
Player 2
5
Circles

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

Player 1
8
Player 2
20
Ellipses

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

Player 1
4
Player 2
5
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
9
Player 2
11
Groups

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

Player 1
4
Player 2
9

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
16

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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