Back

SVG Drawing Match #87

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surfing octopus in a top hat on a wave of musical notes"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="waveGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0099ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#006699;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="octoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff1493;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#6495ed;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1e90ff;stop-opacity:1" />
    </linearGradient>
    <pattern id="notePattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="3" fill="#f0e68c" />
      <line x1="10" y1="0" x2="10" y2="20" stroke="#f0e68c" stroke-width="1.5" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#waveGradient)" />
  <g transform="translate(150,150)">
    <path d="M -50,0 Q -25,25 0,0 T 50,0" fill="none" stroke="url(#octoGradient)" stroke-width="5" />
    <path d="M -50,0 Q -25,-25 0,0 T 50,0" fill="none" stroke="url(#octoGradient)" stroke-width="5" />
    <circle cx="0" cy="0" r="15" fill="url(#octoGradient)" />
    <line x1="-25" y1="25" x2="-25" y2="40" stroke="url(#octoGradient)" stroke-width="5" />
    <line x1="25" y1="25" x2="25" y2="40" stroke="url(#octoGradient)" stroke-width="5" />
    <line x1="-30" y1="20" x2="-10" y2="40" stroke="url(#octoGradient)" stroke-width="5" />
    <line x1="10" y1="40" x2="30" y2="20" stroke="url(#octoGradient)" stroke-width="5" />
    <rect x="-20" y="30" width="40" height="15" fill="url(#hatGradient)" />
    <circle cx="-10" cy="37" r="2" fill="#000000" />
    <circle cx="10" cy="37" r="2" fill="#000000" />
  </g>
  <rect x="50" y="200" width="200" height="50" fill="url(#notePattern)" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waveGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#4a90e2;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#357abd;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="octopusGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ee5253;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Wave of musical notes -->
  <path d="M0,200 Q75,150 150,200 T300,200" fill="none" stroke="url(#waveGrad)" stroke-width="20"/>
  
  <!-- Musical notes -->
  <g transform="translate(0,-20)">
    <path d="M50,180 L50,140 L60,130 A5,5 0 1,1 50,140" fill="#2d3436"/>
    <path d="M150,200 L150,160 L160,150 A5,5 0 1,1 150,160" fill="#2d3436"/>
    <path d="M250,180 L250,140 L260,130 A5,5 0 1,1 250,140" fill="#2d3436"/>
  </g>

  <!-- Octopus body -->
  <circle cx="150" cy="160" r="30" fill="url(#octopusGrad)"/>
  
  <!-- Octopus eyes -->
  <circle cx="140" cy="155" r="8" fill="white"/>
  <circle cx="160" cy="155" r="8" fill="white"/>
  <circle cx="140" cy="155" r="4" fill="black"/>
  <circle cx="160" cy="155" r="4" fill="black"/>

  <!-- Top hat -->
  <path d="M120,130 L180,130 L180,100 L150,90 L120,100 Z" fill="#2d3436"/>
  <rect x="110" y="130" width="80" height="10" fill="#2d3436"/>
  
  <!-- Tentacles -->
  <g fill="none" stroke="url(#octopusGrad)" stroke-width="8">
    <path d="M130,180 Q120,200 100,210 T80,240" />
    <path d="M140,180 Q130,210 120,220 T100,250" />
    <path d="M150,180 Q150,210 150,220 T150,250" />
    <path d="M160,180 Q170,210 180,220 T200,250" />
    <path d="M170,180 Q180,200 200,210 T220,240" />
  </g>

  <!-- Surfboard -->
  <ellipse cx="150" cy="200" rx="60" ry="10" fill="#fab1a0" />

  <!-- Decorative bubbles -->
  <circle cx="80" cy="140" r="5" fill="#81ecec" opacity="0.6"/>
  <circle cx="90" cy="160" r="3" fill="#81ecec" opacity="0.6"/>
  <circle cx="210" cy="150" r="4" fill="#81ecec" opacity="0.6"/>
  <circle cx="220" cy="170" r="3" fill="#81ecec" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission effectively captures the whimsical concept of a surfing octopus in a top hat on a wave of musical notes.

    The image is more visually appealing and technically refined, with clear representation of the octopus and the dynamic wave.

    Player 1's image, while creative, lacks clarity in depicting the octopus and the musical wave, making it less visually cohesive.

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
14
Player 2
21
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
4
Player 2
9
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

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