Back

SVG Drawing Match #934

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two jazz-loving octopuses playing saxophones underwater, in vibrant pop art style"

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="waterBg" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#0066cc;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#003366;stop-opacity:0.9"/>
    </linearGradient>
    <pattern id="bubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.3)"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterBg)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#bubbles)"/>

  <!-- First Octopus -->
  <g transform="translate(80,150)">
    <circle cx="0" cy="0" r="40" fill="#FF4081"/>
    <ellipse cx="0" cy="10" r="35" ry="30" fill="#FF80AB"/>
    <circle cx="-15" cy="-10" r="8" fill="white"/>
    <circle cx="-15" cy="-10" r="4" fill="black"/>
    <!-- Tentacles -->
    <path d="M-30 20 Q-40 40 -20 60 T-30 90" stroke="#FF4081" fill="none" stroke-width="8"/>
    <path d="M-10 30 Q-20 50 0 70 T-10 100" stroke="#FF4081" fill="none" stroke-width="8"/>
    <path d="M10 30 Q20 50 40 60 T30 90" stroke="#FF4081" fill="none" stroke-width="8"/>
    <!-- Saxophone -->
    <path d="M20 -10 Q40 0 50 20" stroke="gold" fill="none" stroke-width="12"/>
  </g>

  <!-- Second Octopus -->
  <g transform="translate(200,180) scale(-1,1)">
    <circle cx="0" cy="0" r="40" fill="#7C4DFF"/>
    <ellipse cx="0" cy="10" r="35" ry="30" fill="#B388FF"/>
    <circle cx="-15" cy="-10" r="8" fill="white"/>
    <circle cx="-15" cy="-10" r="4" fill="black"/>
    <!-- Tentacles -->
    <path d="M-30 20 Q-40 40 -20 60 T-30 90" stroke="#7C4DFF" fill="none" stroke-width="8"/>
    <path d="M-10 30 Q-20 50 0 70 T-10 100" stroke="#7C4DFF" fill="none" stroke-width="8"/>
    <path d="M10 30 Q20 50 40 60 T30 90" stroke="#7C4DFF" fill="none" stroke-width="8"/>
    <!-- Saxophone -->
    <path d="M20 -10 Q40 0 50 20" stroke="gold" fill="none" stroke-width="12"/>
  </g>

  <!-- Musical Notes -->
  <g fill="yellow" opacity="0.8">
    <path d="M120 60 l5 -10 l5 10 l-5 -10 v20 m-5 -10 h10" />
    <path d="M160 90 l5 -10 l5 10 l-5 -10 v20 m-5 -10 h10" />
    <path d="M200 70 l5 -10 l5 10 l-5 -10 v20 m-5 -10 h10" />
  </g>

  <!-- Pop Art Dots -->
  <g fill="white" opacity="0.3">
    <circle cx="50" cy="50" r="10"/>
    <circle cx="250" cy="50" r="15"/>
    <circle cx="150" cy="250" r="12"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0066cc" />
      <stop offset="100%" stop-color="#003366" />
    </linearGradient>
    <linearGradient id="octopus1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff3366" />
      <stop offset="100%" stop-color="#ff0099" />
    </linearGradient>
    <linearGradient id="octopus2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#33cc33" />
      <stop offset="100%" stop-color="#00ff99" />
    </linearGradient>
    <linearGradient id="sax1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="100%" stop-color="#ff9900" />
    </linearGradient>
    <linearGradient id="sax2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#cc66ff" />
      <stop offset="100%" stop-color="#9933ff" />
    </linearGradient>
    <filter id="bubbleFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur" />
      <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 18 -7" result="glow" />
      <feBlend in="SourceGraphic" in2="glow" mode="normal" />
    </filter>
    <pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#ffffff" fill-opacity="0.3" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#dots)" />
  
  <!-- Bubbles -->
  <g filter="url(#bubbleFilter)">
    <circle cx="50" cy="50" r="8" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="80" cy="70" r="5" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="220" cy="60" r="10" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="260" cy="90" r="7" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="30" cy="180" r="9" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="280" cy="200" r="6" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="140" cy="30" r="7" fill="#ffffff" fill-opacity="0.6" />
    <circle cx="190" cy="240" r="8" fill="#ffffff" fill-opacity="0.6" />
  </g>
  
  <!-- Octopus 1 (Pink) -->
  <g transform="translate(80, 150)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="35" fill="url(#octopus1)" stroke="#ff0066" stroke-width="2" />
    
    <!-- Eyes -->
    <circle cx="-12" cy="-10" r="8" fill="white" stroke="#000" stroke-width="1" />
    <circle cx="12" cy="-10" r="8" fill="white" stroke="#000" stroke-width="1" />
    <circle cx="-12" cy="-10" r="4" fill="black" />
    <circle cx="12" cy="-10" r="4" fill="black" />
    <circle cx="-14" cy="-12" r="2" fill="white" />
    <circle cx="10" cy="-12" r="2" fill="white" />
    
    <!-- Beret -->
    <path d="M -25,-22 C -20,-30 20,-30 25,-22 C 15,-18 -15,-18 -25,-22 Z" fill="#3366cc" stroke="#000" stroke-width="1" />
    
    <!-- Tentacles -->
    <path d="M -25,15 C -40,25 -50,45 -40,60 C -35,65 -30,60 -32,55 C -35,45 -30,30 -15,25" fill="url(#octopus1)" stroke="#ff0066" stroke-width="2" />
    <path d="M -15,30 C -30,40 -35,60 -20,70 C -15,75 -10,70 -12,65 C -20,55 -15,45 -5,40" fill="url(#octopus1)" stroke="#ff0066" stroke-width="2" />
    <path d="M 0,35 C -10,50 -5,70 10,75 C 15,77 20,72 18,67 C 10,60 5,50 10,40" fill="url(#octopus1)" stroke="#ff0066" stroke-width="2" />
    <path d="M 15,30 C 5,50 15,70 30,75 C 35,77 40,72 38,67 C 30,60 25,45 25,35" fill="url(#octopus1)" stroke="#ff0066" stroke-width="2" />
    
    <!-- Saxophone -->
    <path d="M 15,-5 C 20,-10 30,-5 35,0 C 40,10 45,15 50,20 C 55,25 55,30 50,35 C 45,37 40,35 38,30 C 35,25 30,15 25,10 C 20,5 15,0 15,-5 Z" fill="url(#sax1)" stroke="#cc6600" stroke-width="2" />
    <path d="M 50,35 L 55,40 C 57,43 55,46 52,45 L 47,40 Z" fill="url(#sax1)" stroke="#cc6600" stroke-width="2" />
    <path d="M 15,-5 L 10,-8 C 8,-10 10,-15 15,-12 L 20,-7 Z" fill="url(#sax1)" stroke="#cc6600" stroke-width="2" />
    <!-- Keys -->
    <circle cx="42" cy="25" r="2" fill="#ffffff" stroke="#000" />
    <circle cx="38" cy="22" r="2" fill="#ffffff" stroke="#000" />
    <circle cx="34" cy="19" r="2" fill="#ffffff" stroke="#000" />
    
    <!-- Music Notes -->
    <g fill="#ffffff" transform="translate(60, -10)">
      <path d="M0,0 C5,-5 10,-3 8,2 C6,7 0,7 0,2 L0,-15 M10,-5 C15,-10 20,-8 18,-3 C16,2 10,2 10,-3 L10,-20" />
      <ellipse cx="0" cy="2" rx="4" ry="3" />
      <ellipse cx="10" cy="-3" rx="4" ry="3" />
    </g>
  </g>
  
  <!-- Octopus 2 (Green) -->
  <g transform="translate(210, 170)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="35" fill="url(#octopus2)" stroke="#009933" stroke-width="2" />
    
    <!-- Eyes -->
    <circle cx="-12" cy="-10" r="8" fill="white" stroke="#000" stroke-width="1" />
    <circle cx="12" cy="-10" r="8" fill="white" stroke="#000" stroke-width="1" />
    <circle cx="-12" cy="-10" r="4" fill="black" />
    <circle cx="12" cy="-10" r="4" fill="black" />
    <circle cx="-14" cy="-12" r="2" fill="white" />
    <circle cx="10" cy="-12" r="2" fill="white" />
    
    <!-- Sunglasses -->
    <path d="M -20,-14 L 20,-14" stroke="#000" stroke-width="2" />
    <path d="M -20,-14 C -22,-8 -18,-4 -12,-5 C -5,-6 -4,-12 -5,-14 Z" fill="#000" />
    <path d="M 20,-14 C 22,-8 18,-4 12,-5 C 5,-6 4,-12 5,-14 Z" fill="#000" />
    
    <!-- Tentacles -->
    <path d="M -25,15 C -40,20 -45,40 -30,55 C -25,60 -20,55 -22,50 C -30,40 -25,25 -15,20" fill="url(#octopus2)" stroke="#009933" stroke-width="2" />
    <path d="M -15,30 C -25,35 -30,55 -15,65 C -10,70 -5,65 -7,60 C -15,50 -10,40 0,35" fill="url(#octopus2)" stroke="#009933" stroke-width="2" />
    <path d="M 15,30 C 5,40 10,60 25,65 C 30,67 35,62 33,57 C 25,50 20,40 25,30" fill="url(#octopus2)" stroke="#009933" stroke-width="2" />
    <path d="M 25,15 C 35,25 45,45 35,60 C 30,65 25,60 27,55 C 30,45 25,30 15,25" fill="url(#octopus2)" stroke="#009933" stroke-width="2" />
    
    <!-- Saxophone -->
    <path d="M -15,-5 C -20,-10 -30,-5 -35,0 C -40,10 -45,15 -50,20 C -55,25 -55,30 -50,35 C -45,37 -40,35 -38,30 C -35,25 -30,15 -25,10 C -20,5 -15,0 -15,-5 Z" fill="url(#sax2)" stroke="#660099" stroke-width="2" />
    <path d="M -50,35 L -55,40 C -57,43 -55,46 -52,45 L -47,40 Z" fill="url(#sax2)" stroke="#660099" stroke-width="2" />
    <path d="M -15,-5 L -10,-8 C -8,-10 -10,-15 -15,-12 L -20,-7 Z" fill="url(#sax2)" stroke="#660099" stroke-width="2" />
    <!-- Keys -->
    <circle cx="-42" cy="25" r="2" fill="#ffffff" stroke="#000" />
    <circle cx="-38" cy="22" r="2" fill="#ffffff" stroke="#000" />
    <circle cx="-34" cy="19" r="2" fill="#ffffff" stroke="#000" />
    
    <!-- Music Notes -->
    <g fill="#ffffff" transform="translate(-60, -15)">
      <path d="M0,0 C-5,-5 -10,-3 -8,2 C-6,7 0,7 0,2 L0,-15 M-10,-5 C-15,-10 -20,-8 -18,-3 C-16,2 -10,2 -10,-3 L-10,-20" />
      <ellipse cx="0" cy="2" rx="4" ry="3" />
      <ellipse cx="-10" cy="-3" rx="4" ry="3" />
    </g>
  </g>
  
  <!-- Pop Art Dots -->
  <g opacity="0.7">
    <circle cx="40" cy="40" r="15" fill="#ff9900" />
    <circle cx="260" cy="60" r="20" fill="#ff66cc" />
    <circle cx="50" cy="240" r="25" fill="#ffff00" />
    <circle cx="240" cy="250" r="18" fill="#66ccff" />
  </g>
  
  <!-- Title -->
  <text x="150" y="40" font-family="Impact, sans-serif" font-size="20" fill="#ffffff" text-anchor="middle" stroke="#000" stroke-width="0.5">JAZZ UNDER THE SEA</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt with clearer depictions of the octopuses playing saxophones and a more vibrant pop art style.

    The inclusion of the text 'JAZZ UNDER THE SEA' adds context and enhances the theme.

    Additionally, the technical execution and overall visual appeal are stronger, with more detailed expressions and a lively color palette.

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
25
Player 2
59
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
10
Player 2
31
Ellipses

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

Player 1
2
Player 2
6
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
11
Player 2
20
Groups

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

Player 1
4
Player 2
6

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
5
Patterns

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

Player 1
1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
29

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
21

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

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