Back

SVG Drawing Match #2593

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a top hat, playing a violin under the moonlight."

SVG by o4-mini low (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#0a0e27"/>
      <stop offset="100%" stop-color="#040617"/>
    </radialGradient>
    <radialGradient id="moonGrad" cx="30%" cy="30%" r="20%">
      <stop offset="0%" stop-color="#fffacd" stop-opacity="1"/>
      <stop offset="100%" stop-color="#fffacd" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="60%">
      <stop offset="0%" stop-color="#dd3ffe"/>
      <stop offset="100%" stop-color="#5d00d3"/>
    </radialGradient>
    <linearGradient id="violinBody" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#d27b3f"/>
      <stop offset="100%" stop-color="#8b4513"/>
    </linearGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.5"/>
    </filter>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Moon -->
  <circle cx="220" cy="60" r="40" fill="#fffacd"/>
  <circle cx="220" cy="60" r="60" fill="url(#moonGrad)"/>
  <!-- Stars -->
  <g fill="#ffffff" opacity="0.7">
    <circle cx="50" cy="40" r="1.5"/>
    <circle cx="80" cy="20" r="1"/>
    <circle cx="150" cy="30" r="1.2"/>
    <circle cx="260" cy="20" r="1"/>
    <circle cx="200" cy="100" r="1.3"/>
  </g>
  <!-- Octopus -->
  <g transform="translate(150,180)" filter="url(#shadow)">
    <!-- head -->
    <ellipse cx="0" cy="-40" rx="50" ry="40" fill="url(#octoGrad)"/>
    <!-- eyes -->
    <circle cx="-20" cy="-50" r="6" fill="#fff"/>
    <circle cx="20" cy="-50" r="6" fill="#fff"/>
    <circle cx="-20" cy="-50" r="3" fill="#000"/>
    <circle cx="20" cy="-50" r="3" fill="#000"/>
    <!-- top hat -->
    <g transform="translate(0,-85)">
      <rect x="-30" y="0" width="60" height="30" fill="#111"/>
      <rect x="-40" y="28" width="80" height="8" rx="4" ry="4" fill="#111"/>
      <ellipse cx="0" cy="38" rx="40" ry="8" fill="#000"/>
    </g>
    <!-- tentacles -->
    <path d="M-40,-10 q-30,60 20,80" stroke="url(#octoGrad)" stroke-width="10" fill="none" stroke-linecap="round"/>
    <path d="M-20,0 q-50,80 10,90" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
    <path d="M0,-5 q-10,90 50,70" stroke="url(#octoGrad)" stroke-width="9" fill="none" stroke-linecap="round"/>
    <path d="M20,0 q30,60 -10,80" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
    <path d="M40,-10 q50,70 0,90" stroke="url(#octoGrad)" stroke-width="10" fill="none" stroke-linecap="round"/>
    <!-- violin -->
    <g transform="translate(30,20) rotate(-20)">
      <path d="M0,0 c20,-10 40,10 20,30 c-10,10 -30,10 -40,0 c-20,-20 -10,-30 20,-30" fill="url(#violinBody)" stroke="#5a2d0c" stroke-width="2"/>
      <!-- violin neck -->
      <rect x="18" y="-5" width="4" height="50" fill="#3e1f0f"/>
      <!-- strings -->
      <g stroke="#ddd" stroke-width="0.5">
        <line x1="20" y1="0" x2="20" y2="50"/>
        <line x1="22" y1="0" x2="22" y2="50"/>
        <line x1="24" y1="0" x2="24" y2="50"/>
        <line x1="26" y1="0" x2="26" y2="50"/>
      </g>
      <!-- bow -->
      <g transform="translate(-10,20) rotate(10)">
        <line x1="0" y1="0" x2="60" y2="0" stroke="#deb887" stroke-width="3"/>
        <rect x="58" y="-1" width="6" height="2" fill="#555"/>
      </g>
    </g>
  </g>
</svg>
SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet">
  <!-- Background Sky with Moon -->
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#DDD"/>
    </radialGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Octopus Gradient -->
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="100%" stop-color="#C4463A"/>
    </radialGradient>
    <!-- Light Gradient for Moon -->
    <radialGradient id="moonLight" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#AAAAAA"/>
    </radialGradient>
  </defs>
  <!-- Sky Background -->
  <rect width="100%" height="100%" fill="url(#skyGradient)" />

  <!-- Moon -->
  <circle cx="250" cy="50" r="40" fill="url(#moonLight)" opacity="0.8"/>
  <!-- Moon Crater (subtle) -->
  <circle cx="235" cy="45" r="5" fill="#bbb"/>
  <circle cx="255" cy="37" r="3" fill="#999"/>
  <circle cx="245" cy="55" r="2" fill="#888"/>

  <!-- Octopus Body -->
  <ellipse cx="150" cy="170" rx="45" ry="50" fill="url(#octopusGradient)" stroke="#444" stroke-width="2"/>
  
  <!-- Octopus Head a little exaggerated -->
  <circle cx="150" cy="150" r="35" fill="url(#octopusGradient)" stroke="#444" stroke-width="2"/>

  <!-- Tentacles (8 total, stylized with squid-like shapes) -->
  <g stroke="#444" stroke-width="4" fill="none">
    <!-- Tentacle 1 -->
    <path d="M 125 180 Q 120 210 135 220 Q 150 230 160 215 Q 155 210 150 210 Q 145 205 135 200 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 2 -->
    <path d="M 180 185 Q 185 215 170 225 Q 155 235 145 220 Q 150 215 155 215 Q 160 210 170 205 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 3 -->
    <path d="M 135 170 Q 130 195 125 185 Q 120 180 125 175 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 4 -->
    <path d="M 165 170 Q 170 195 175 185 Q 180 180 175 175 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 5 -->
    <path d="M 145 210 Q 140 240 125 230 Q 110 220 115 205 Q 120 210 125 200 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 6 -->
    <path d="M 155 210 Q 160 240 175 230 Q 190 220 185 205 Q 180 210 175 200 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 7 -->
    <path d="M 140 185 Q 135 215 125 210 Q 115 205 120 195 Z" fill="url(#octopusGradient)"/>
    <!-- Tentacle 8 -->
    <path d="M 170 185 Q 175 215 185 210 Q 195 205 190 195 Z" fill="url(#octopusGradient)"/>
  </g>

  <!-- Top Hat -->
  <g>
    <rect x="130" y="125" width="40" height="15" fill="#222" stroke="#000" stroke-width="1"/>
    <ellipse cx="150" cy="125" rx="22" ry="4" fill="#222" stroke="#000" stroke-width="1"/>
  </g>

  <!-- Eyes -->
  <circle cx="135" cy="140" r="3" fill="#fff"/>
  <circle cx="165" cy="140" r="3" fill="#fff"/>
  <circle cx="135" cy="140" r="1.5" fill="#000"/>
  <circle cx="165" cy="140" r="1.5" fill="#000"/>

  <!-- Violin -->
  <g fill="#8B4513" stroke="#222" stroke-width="1">
    <!-- Body of violin -->
    <ellipse cx="180" cy="200" rx="8" ry="20"/>
    <!-- Neck of violin -->
    <rect x="180" y="180" width="2" height="20"/>
    <!-- Strings -->
    <line x1="181" y1="180" x2="181" y2="200" stroke="#222" stroke-width="0.5"/>
    <line x1="183" y1="180" x2="183" y2="200" stroke="#222" stroke-width="0.5"/>
  </g>
  <!-- Bow -->
  <line x1="170" y1="200" x2="210" y2="200" stroke="#663300" stroke-width="2" stroke-linecap="round"/>

  <!-- Octopus Tentacle Holding the Violin Bow -->
  <path d="M 170 200 Q 165 210 170 215" fill="none" stroke="#444" stroke-width="3"/>

  <!-- Artistic Light under Moon (implying moonlight reflection) -->
  <ellipse cx="150" cy="290" rx="100" ry="10" fill="#FFFFFF" opacity="0.1"/>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission is more aligned with the prompt, depicting a recognizable octopus with a top hat and a violin under the moonlight.

    The use of purple for the octopus and the clear top hat enhance the creativity and adherence to the theme.

    Player 2's image, while visually appealing, represents a red creature that does not clearly resemble an octopus, which deviates from 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
29
Player 2
28
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
11
Player 2
9
Ellipses

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

Player 1
2
Player 2
4
Lines

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

Player 1
5
Player 2
3
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
6
Player 2
9
Groups

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

Player 1
6
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
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
4
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
14
Player 2
40
Max Group Nesting

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

Player 1
2
Player 2
Defs Elements

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

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