Back

SVG Drawing Match #1588

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow octopus playing a golden saxophone on a moonlit beach"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGlow" cx="70%" cy="30%" r="60%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#c2d8e8"/>
    </radialGradient>
    <linearGradient id="sand" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#f2d16c"/>
      <stop offset="50%" stop-color="#e6c15f"/>
      <stop offset="100%" stop-color="#d4af37"/>
    </linearGradient>
    <linearGradient id="water" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1e3b70" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#0a1428" stop-opacity="0.8"/>
    </linearGradient>
    <radialGradient id="saxGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#b8860b"/>
    </radialGradient>
  </defs>

  <!-- Sky -->
  <rect x="0" y="0" width="300" height="220" fill="#0a1428"/>
  
  <!-- Moon -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGlow)"/>
  
  <!-- Water -->
  <path d="M0 180 Q150 160 300 180 L300 300 L0 300 Z" fill="url(#water)"/>
  
  <!-- Beach -->
  <path d="M0 200 Q150 180 300 200 L300 300 L0 300 Z" fill="url(#sand)"/>

  <!-- Octopus body -->
  <g transform="translate(150,150)">
    <!-- Tentacles with rainbow colors -->
    <path d="M0 0 Q-30 20 -40 50 Q-45 70 -30 80" stroke="#ff0000" fill="none" stroke-width="8"/>
    <path d="M0 0 Q-10 30 -15 60 Q-18 80 0 90" stroke="#ff7f00" fill="none" stroke-width="8"/>
    <path d="M0 0 Q10 30 15 60 Q18 80 30 85" stroke="#ffff00" fill="none" stroke-width="8"/>
    <path d="M0 0 Q30 20 40 50 Q45 70 60 75" stroke="#00ff00" fill="none" stroke-width="8"/>
    <path d="M0 0 Q-20 25 -25 55 Q-28 75 -15 85" stroke="#0000ff" fill="none" stroke-width="8"/>
    <path d="M0 0 Q0 35 5 65 Q8 85 20 90" stroke="#4b0082" fill="none" stroke-width="8"/>
    <path d="M0 0 Q20 25 25 55 Q28 75 45 80" stroke="#9400d3" fill="none" stroke-width="8"/>
    
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="25" ry="30" fill="#ff69b4"/>
    
    <!-- Eyes -->
    <circle cx="-10" cy="-5" r="5" fill="white"/>
    <circle cx="10" cy="-5" r="5" fill="white"/>
    <circle cx="-10" cy="-5" r="2" fill="black"/>
    <circle cx="10" cy="-5" r="2" fill="black"/>
  </g>

  <!-- Saxophone -->
  <path d="M120 140 Q140 130 160 120 L180 110 Q190 108 195 115 L185 125 Q175 135 165 140" fill="url(#saxGlow)" stroke="#daa520" stroke-width="2"/>
  <path d="M195 115 L205 105 Q208 103 210 105 L200 115" fill="url(#saxGlow)" stroke="#daa520" stroke-width="2"/>
  
  <!-- Music notes -->
  <g fill="white">
    <path d="M200 90 Q205 85 208 90 L205 100 L202 95 Z"/>
    <path d="M220 70 Q225 65 228 70 L225 80 L222 75 Z"/>
    <path d="M190 110 Q195 105 198 110 L195 120 L192 115 Z"/>
  </g>

  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="40" r="1"/>
    <circle cx="80" cy="60" r="1"/>
    <circle cx="120" cy="30" r="1"/>
    <circle cx="180" cy="50" r="1"/>
    <circle cx="220" cy="90" r="1"/>
    <circle cx="260" cy="40" r="1"/>
  </g>
</svg>
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="skyGradient" cx="0.5" cy="0.3" r="0.7" fx="0.5" fy="0.3">
      <stop offset="0%" stop-color="#001848"/>
      <stop offset="100%" stop-color="#003366"/>
    </radialGradient>
    <linearGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5" gradientUnits="userSpaceOnUse" x1="220" y1="80" x2="280" y2="140">
      <stop offset="0%" stop-color="#ffffe0"/>
      <stop offset="100%" stop-color="#ffd700"/>
    </linearGradient>
    <linearGradient id="sandGradient" x1="0" y1="250" x2="0" y2="300">
      <stop offset="0%" stop-color="#f5deb3"/>
      <stop offset="100%" stop-color="#deb887"/>
    </linearGradient>
    <radialGradient id="octoGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff69b4"/>
      <stop offset="20%" stop-color="#ff1493"/>
      <stop offset="40%" stop-color="#8a2be2"/>
      <stop offset="60%" stop-color="#4b0082"/>
      <stop offset="80%" stop-color="#00ffff"/>
      <stop offset="100%" stop-color="#7fff00"/>
    </radialGradient>
    <linearGradient id="saxGradient" x1="130" y1="150" x2="170" y2="180">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#ffbf00"/>
    </linearGradient>
    <filter id="glow">
      <feDropShadow dx="0" dy="0" stdDeviation="4" flood-color="#fff"/>
    </filter>
  </defs>

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

  <!-- Moon -->
  <circle cx="220" cy="80" r="40" fill="url(#moonGradient)" filter="url(#glow)"/>
  <!-- Moon craters -->
  <circle cx="205" cy="70" r="5" fill="#ffd700"/>
  <circle cx="235" cy="90" r="3" fill="#ffffff"/>
  <circle cx="220" cy="100" r="4" fill="#fffacd"/>

  <!-- Stars -->
  <g fill="#ffffff" opacity="0.8">
    <circle cx="60" cy="50" r="1.5"/>
    <circle cx="90" cy="80" r="1"/>
    <circle cx="150" cy="40" r="2"/>
    <circle cx="200" cy="20" r="1.5"/>
    <circle cx="250" cy="60" r="1"/>
    <circle cx="280" cy="30" r="1.5"/>
    <circle cx="100" cy="120" r="1"/>
    <circle cx="140" cy="100" r="1.5"/>
  </g>

  <!-- Ocean -->
  <rect y="150" width="300" height="150" fill="#1e3f66"/>
  <path d="M0,150 Q150,130 300,150 L300,300 L0,300 Z" fill="#003366"/>

  <!-- Sand -->
  <rect y="250" width="300" height="50" fill="url(#sandGradient)"/>

  <!-- Octopus Body -->
  <g transform="translate(150, 200)">
    <circle cx="0" cy="0" r="20" fill="url(#octoGradient)" stroke="#333" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="-7" cy="-5" r="3" fill="#ffffff"/>
    <circle cx="-7" cy="-5" r="1.5" fill="#000000"/>
    <circle cx="7" cy="-5" r="3" fill="#ffffff"/>
    <circle cx="7" cy="-5" r="1.5" fill="#000000"/>
    <!-- Arms -->
    <path d="M-15,5 C-25,15 -25,25 -15,35" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <path d="M-12,7 C-22,17 -22,27 -12,37" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <path d="M15,5 C25,15 25,25 15,35" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <path d="M12,7 C22,17 22,27 12,37" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <path d="M-5,15 C-10,25 -15,35 -5,45" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <path d="M5,15 C10,25 15,35 5,45" fill="none" stroke="url(#octoGradient)" stroke-width="3"/>
    <!-- Saxophone -->
    <path d="M-20,-2 L-60,-10 Q-62,-8 -60,-6 L-40,-4 Q-38,-2 -40,0 L-60,2 Q-62,4 -60,6 L-20,10"
          fill="url(#saxGradient)" stroke="#b8860b" stroke-width="2"/>
    <circle cx="-60,-10" r="2" fill="#b8860b"/>
    <circle cx="-60,6" r="2" fill="#b8860b"/>
  </g>

  <!-- Waves -->
  <path d="M0,160 Q30,155 60,160 T120,160 T180,160 T240,160 T300,160 L300,150 L0,150 Z" fill="#1e90ff" opacity="0.3"/>
  <path d="M0,180 Q30,175 60,180 T120,180 T180,180 T240,180 T300,180 L300,150 L0,150 Z" fill="#00bfff" opacity="0.3"/>

  <!-- Palm Trees -->
  <g>
    <!-- Left Palm -->
    <path d="M50,220 Q45,200 55,180 Q50,190 60,180" stroke="#8b4513" stroke-width="3" fill="none"/>
    <path d="M55,180 Q65,170 75,180" stroke="#8b4513" stroke-width="3" fill="none"/>
    <path d="M55,180 Q45,170 35,180" stroke="#8b4513" stroke-width="3" fill="none"/>
    <path d="M55,180 Q65,190 75,200" stroke="#8b4513" stroke-width="3" fill="none"/>
    <path d="M55,180 Q45,190 35,200" stroke="#8b4513" stroke-width="3" fill="none"/>
    <!-- Left Palm Leaves -->
    <path d="M60,180 Q50,175 55,170" stroke="#228B22" stroke-width="2" fill="none"/>
    <path d="M60,180 Q70,175 65,170" stroke="#228B22" stroke-width="2" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image captures the essence of the prompt more effectively, with a clear depiction of a rainbow octopus playing a golden saxophone under a moonlit sky.

    The use of colors is vibrant and the composition is straightforward, ensuring the concept is easily recognizable.

    Player 2's image, while creative, is less clear in its depiction of the octopus and saxophone, leading to a less immediate understanding of 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
27
Player 2
39
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
11
Player 2
19
Ellipses

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

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

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
23

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
56
Player 2
58
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
6
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