Back

SVG Drawing Match #2089

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a top hat, juggling teacups in an underwater ballroom"

SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Background gradient -->
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1e3c72" />
      <stop offset="100%" style="stop-color:#2a5298" />
    </linearGradient>
    <!-- Octopus body gradient -->
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFA500" />
      <stop offset="100%" style="stop-color:#FF4500" />
    </radialGradient>
    <!-- Top hat gradient -->
    <linearGradient id="hatGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#434343" />
      <stop offset="100%" style="stop-color:#000000" />
    </linearGradient>
    <!-- Teacup gradient -->
    <linearGradient id="cupGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#fffacd" />
      <stop offset="100%" style="stop-color:#ffd700" />
    </linearGradient>
    <!-- Bubble pattern (for a gentle overlay) -->
    <pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="white" opacity="0.3" />
    </pattern>
  </defs>

  <!-- Underwater background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Subtle ballroom light beams -->
  <ellipse cx="150" cy="80" rx="120" ry="20" fill="white" opacity="0.05" />
  <ellipse cx="150" cy="250" rx="100" ry="15" fill="white" opacity="0.05" />
  
  <!-- Scattered bubbles -->
  <circle cx="40" cy="30" r="2" fill="white" opacity="0.5" />
  <circle cx="80" cy="50" r="3" fill="white" opacity="0.5" />
  <circle cx="120" cy="20" r="2" fill="white" opacity="0.3" />
  <circle cx="200" cy="40" r="3" fill="white" opacity="0.4" />
  <circle cx="260" cy="60" r="2" fill="white" opacity="0.5" />
  <circle cx="220" cy="80" r="2" fill="white" opacity="0.3" />
  <circle cx="180" cy="30" r="2" fill="white" opacity="0.4" />

  <!-- The Octopus and its accessories -->
  <g id="octopus">
    <!-- Eight tentacles -->
    <path d="M130,170 C110,160 90,150 80,140" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M140,155 C130,140 120,130 110,120" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M150,150 C150,130 150,110 150,90" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M160,155 C170,140 180,130 190,120" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M170,170 C190,160 210,150 220,140" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M170,185 C190,200 210,210 220,220" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M150,190 C150,210 150,230 150,250" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    <path d="M130,185 C110,200 90,210 80,220" stroke="#FF8C00" stroke-width="4" stroke-linecap="round" fill="none" />
    
    <!-- Head of the octopus -->
    <circle cx="150" cy="170" r="20" fill="url(#octoGrad)" />
    
    <!-- Eyes -->
    <circle cx="143" cy="165" r="2" fill="white" />
    <circle cx="157" cy="165" r="2" fill="white" />
    <circle cx="143" cy="165" r="1" fill="black" />
    <circle cx="157" cy="165" r="1" fill="black" />
    
    <!-- The dapper top hat -->
    <g id="hat" transform="translate(130,130)">
      <rect x="0" y="0" width="40" height="20" fill="url(#hatGrad)" />
      <ellipse cx="20" cy="20" rx="28" ry="5" fill="url(#hatGrad)" />
    </g>
  </g>

  <!-- Dashed lines to imply juggling motion -->
  <line x1="150" y1="90" x2="150" y2="60" stroke="white" stroke-width="1.5" stroke-dasharray="3,3" />
  <line x1="110" y1="120" x2="70" y2="130" stroke="white" stroke-width="1.5" stroke-dasharray="3,3" />
  <line x1="190" y1="120" x2="230" y2="130" stroke="white" stroke-width="1.5" stroke-dasharray="3,3" />

  <!-- Juggled Teacups -->
  <g id="teacup1" transform="translate(150,60) rotate(-15)">
    <ellipse cx="0" cy="0" rx="8" ry="3" fill="url(#cupGrad)" />
    <rect x="-8" y="0" width="16" height="12" rx="3" ry="3" fill="url(#cupGrad)" />
    <path d="M8,2 Q12,6 8,10 Q10,6 8,2 Z" fill="url(#cupGrad)" />
  </g>
  <g id="teacup2" transform="translate(70,130) rotate(15)">
    <ellipse cx="0" cy="0" rx="8" ry="3" fill="url(#cupGrad)" />
    <rect x="-8" y="0" width="16" height="12" rx="3" ry="3" fill="url(#cupGrad)" />
    <path d="M8,2 Q12,6 8,10 Q10,6 8,2 Z" fill="url(#cupGrad)" />
  </g>
  <g id="teacup3" transform="translate(230,130) rotate(-15)">
    <ellipse cx="0" cy="0" rx="8" ry="3" fill="url(#cupGrad)" />
    <rect x="-8" y="0" width="16" height="12" rx="3" ry="3" fill="url(#cupGrad)" />
    <path d="M8,2 Q12,6 8,10 Q10,6 8,2 Z" fill="url(#cupGrad)" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#4682B4;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#1E90FF;stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  
  <!-- Ballroom Floor -->
  <rect x="100" y="200" width="100" height="100" fill="#191970" rx="10"/>
  
  <!-- Chandelier -->
  <circle cx="150" cy="100" r="10" fill="#FFD700"/>
  <line x1="150" y1="100" x2="150" y2="150" stroke="#FFD700" stroke-width="2"/>
  <line x1="120" y1="120" x2="180" y2="120" stroke="#FFD700" stroke-width="2"/>
  
  <!-- Octopus Body -->
  <path d="M150,150q0,-20 10,-30t-10,-30q-20,0 -40,30t-20,30" fill="#6A5ACD" stroke="#4B2886" stroke-width="2"/>
  
  <!-- Top Hat -->
  <rect x="140" y="120" width="20" height="30" rx="5" fill="#000000"/>
  <rect x="145" y="135" width="10" height="15" fill="#FF69B4"/>
  
  <!-- Tentacle Legs -->
  <path d="M150,180c-30,0 -50,20 -50,50c0,30 30,50 60,50c30,0 50,-20 50,-50" fill="#6A5ACD"/>
  
  <!-- Juggling Teacups -->
  <g transform="rotate(45 150 150)">
    <circle cx="150" cy="150" r="30" fill="#FFFFFF"/>
    <circle cx="150" cy="120" r="30" fill="#FFFFFF"/>
    <circle cx="150" cy="180" r="30" fill="#FFFFFF"/>
  </g>
  <g transform="rotate(45 150 150)">
    <circle cx="150" cy="150" r="5" fill="#FF69B4"/>
    <circle cx="150" cy="120" r="5" fill="#FF69B4"/>
    <circle cx="150" cy="180" r="5" fill="#FF69B4"/>
  </g>
  
  <!-- Bubbles -->
  <circle cx="50" cy="50" r="10" fill="url(#bubbleGradient)"/>
  <circle cx="250" cy="80" r="15" fill="url(#bubbleGradient)"/>
  <circle cx="100" cy="250" r="10" fill="url(#bubbleGradient)"/>
  
  <!-- Light Rays -->
  <line x1="0" y1="0" x2="300" y2="300" stroke="#E0FFFF" stroke-width="2"/>
  <line x1="0" y1="300" x2="300" y2="0" stroke="#E0FFFF" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission closely adheres to the prompt by clearly depicting an octopus with a top hat juggling teacups, incorporating all elements specified.

    The use of color and simple shapes effectively conveys the underwater setting, enhancing visual appeal.

    Player 2's image, while creative, lacks clear representation of the octopus and the juggling aspect, 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
38
Player 2
20
Rectangles

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

Player 1
5
Player 2
4
Circles

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

Player 1
13
Player 2
10
Ellipses

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

Player 1
6
Player 2
Lines

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

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

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

Player 1
5
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
8

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
4
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
28
Player 2
9
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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