Back

SVG Drawing Match #2149

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing octopus wearing a top hat and monocle under a disco ball"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1a1a1a"/>
      <stop offset="100%" stop-color="#333"/>
    </radialGradient>
    <radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffdd57"/>
      <stop offset="100%" stop-color="#ff5e62"/>
    </radialGradient>
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#6a0dad"/>
      <stop offset="100%" stop-color="#8a2be2"/>
    </radialGradient>
    <pattern id="discoPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#fff"/>
    </pattern>
    <mask id="discoMask">
      <circle cx="150" cy="50" r="40" fill="white"/>
    </mask>
  </defs>

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

  <!-- Disco Ball -->
  <g mask="url(#discoMask)">
    <circle cx="150" cy="50" r="40" fill="url(#discoGradient)" stroke="#fff" stroke-width="2"/>
    <line x1="150" y1="10" x2="150" y2="90" stroke="#fff" stroke-width="1"/>
    <line x1="110" y1="20" x2="190" y2="80" stroke="#fff" stroke-width="1"/>
    <line x1="190" y1="20" x2="110" y2="80" stroke="#fff" stroke-width="1"/>
    <circle cx="150" cy="50" r="3" fill="#fff"/>
    <rect width="300" height="300" fill="url(#discoPattern)" opacity="0.2"/>
  </g>

  <!-- Octopus Body -->
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#octopusGradient)" stroke="#4B0082" stroke-width="2"/>
    
    <!-- Tentacles -->
    <path d="M-20,20 Q-30,50 -10,60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M-10,20 Q-20,50 -5,60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M0,20 Q-10,50 5,60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M10,20 Q20,50 15,60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M20,20 Q30,50 25,60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M-20,-20 Q-30,-50 -10,-60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M-10,-20 Q-20,-50 -5,-60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M0,-20 Q-10,-50 5,-60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M10,-20 Q20,-50 15,-60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    <path d="M20,-20 Q30,-50 25,-60" fill="none" stroke="#6a0dad" stroke-width="4"/>
    
    <!-- Top Hat -->
    <g transform="translate(0,-40)">
      <rect x="-20" y="-10" width="40" height="10" fill="#000"/>
      <rect x="-15" y="-30" width="30" height="20" fill="#000"/>
      <ellipse cx="0" cy="-30" rx="15" ry="5" fill="#000"/>
      <circle cx="10" cy="-25" r="3" fill="#ffd700" stroke="#000" stroke-width="1"/>
    </g>
    
    <!-- Monocle -->
    <g transform="translate(15,-10)">
      <circle cx="0" cy="0" r="8" fill="none" stroke="#fff" stroke-width="2"/>
      <line x1="5" y1="5" x2="15" y2="15" stroke="#fff" stroke-width="1"/>
    </g>
    
    <!-- Eyes -->
    <circle cx="-10" cy="-10" r="4" fill="#fff"/>
    <circle cx="-10" cy="-10" r="2" fill="#000"/>
    <circle cx="10" cy="-10" r="4" fill="#fff"/>
    <circle cx="10" cy="-10" r="2" fill="#000"/>
  </g>

  <!-- Light Rays -->
  <g>
    <line x1="150" y1="90" x2="150" y2="300" stroke="#ff69b4" stroke-width="2" opacity="0.5"/>
    <line x1="100" y1="50" x2="50" y2="300" stroke="#7fffd4" stroke-width="2" opacity="0.5"/>
    <line x1="200" y1="50" x2="250" y2="300" stroke="#ffa07a" stroke-width="2" opacity="0.5"/>
    <line x1="120" y1="50" x2="80" y2="300" stroke="#8a2be2" stroke-width="2" opacity="0.5"/>
    <line x1="180" y1="50" x2="220" y2="300" stroke="#00fa9a" stroke-width="2" opacity="0.5"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="100%" height="100%" fill="#220f38" />
  
  <!-- Disco Ball -->
  <circle cx="150" cy="50" r="40" fill="#7acbea" />
  <circle cx="130" cy="70" r="8" fill="#efca08" />
  <circle cx="150" cy="70" r="8" fill="#efca08" />
  <circle cx="170" cy="70" r="8" fill="#efca08" />
  <circle cx="140" cy="90" r="8" fill="#efca08" />
  <circle cx="160" cy="90" r="8" fill="#efca08" />
  
  <!-- Octopus Head -->
  <circle cx="150" cy="150" r="60" fill="#f7bc05" />
  
  <!-- Octopus Eyes -->
  <circle cx="130" cy="140" r="6" fill="#fff" />
  <circle cx="170" cy="140" r="6" fill="#fff" />
  
  <!-- Octopus Pupils -->
  <circle cx="130" cy="140" r="2" fill="#220f38" />
  <circle cx="170" cy="140" r="2" fill="#220f38" />
  
  <!-- Octopus Top Hat -->
  <path d="M120,120 h60 v20 h-40 z" fill="#220f38" />
  <rect x="130" y="90" width="40" height="30" fill="#7acbea" />
  
  <!-- Octopus Monocle -->
  <circle cx="150" cy="150" r="16" fill="none" stroke="#fff" stroke-width="5" />
  <circle cx="150" cy="150" r="12" fill="none" stroke="#fff" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image captures the whimsical and lively spirit of the prompt with a vibrant purple octopus clearly adorned with a top hat and monocle, and dancing under a colorful disco ball.

    The use of dynamic lines and bright colors enhances the sense of movement and celebration.

    Player 2's submission, while creative, lacks the clear depiction of an octopus and does not convey the same energy or 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
35
Player 2
16
Rectangles

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

Player 1
4
Player 2
2
Circles

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

Player 1
10
Player 2
13
Ellipses

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
23
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
5

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

Complexity Metrics

Path Commands

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

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