Back

SVG Drawing Match #595

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow-colored snail playing a saxophone"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Rainbow gradients -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16.6%" stop-color="#ff9900"/>
      <stop offset="33.3%" stop-color="#ffff00"/>
      <stop offset="50%" stop-color="#00ff00"/>
      <stop offset="66.6%" stop-color="#0099ff"/>
      <stop offset="83.3%" stop-color="#6633ff"/>
      <stop offset="100%" stop-color="#ff00ff"/>
    </linearGradient>
    
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16.6%" stop-color="#ff9900"/>
      <stop offset="33.3%" stop-color="#ffff00"/>
      <stop offset="50%" stop-color="#00ff00"/>
      <stop offset="66.6%" stop-color="#0099ff"/>
      <stop offset="83.3%" stop-color="#6633ff"/>
      <stop offset="100%" stop-color="#ff00ff"/>
    </radialGradient>
    
    <!-- Snail body -->
    <radialGradient id="slimeGradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#a8ffa8"/>
      <stop offset="80%" stop-color="#44aa44"/>
      <stop offset="100%" stop-color="#338833"/>
    </radialGradient>
    
    <!-- Saxophone -->
    <linearGradient id="saxGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="50%" stop-color="#FFA500"/>
      <stop offset="100%" stop-color="#B8860B"/>
    </linearGradient>
    
    <linearGradient id="saxHighlight" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)"/>
      <stop offset="100%" stop-color="rgba(255,255,255,0)"/>
    </linearGradient>
    
    <!-- Background -->
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0F7FF"/>
    </linearGradient>
    
    <radialGradient id="groundGradient" cx="50%" cy="100%" r="70%" fx="50%" fy="100%">
      <stop offset="0%" stop-color="#7db369"/>
      <stop offset="100%" stop-color="#3a5a30"/>
    </radialGradient>
    
    <!-- Effects -->
    <filter id="noteGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1.5" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1" fill="white" opacity="0.3"/>
    </pattern>
    
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
      <feOffset dx="2" dy="4" result="offsetblur"/>
      <feComponentTransfer>
        <feFuncA type="linear" slope="0.3"/>
      </feComponentTransfer>
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Clouds -->
  <g opacity="0.7">
    <ellipse cx="50" cy="40" rx="30" ry="15" fill="white"/>
    <ellipse cx="70" cy="35" rx="25" ry="18" fill="white"/>
    <ellipse cx="90" cy="45" rx="20" ry="12" fill="white"/>
    
    <ellipse cx="230" cy="50" rx="35" ry="20" fill="white"/>
    <ellipse cx="250" cy="45" rx="25" ry="15" fill="white"/>
    <ellipse cx="210" cy="55" rx="20" ry="10" fill="white"/>
  </g>
  
  <!-- Ground -->
  <path d="M 0,300 L 300,300 L 300,240 
           C 280,250 260,230 240,240 
           C 220,250 200,230 180,240 
           C 160,250 140,230 120,240 
           C 100,250 80,230 60,240 
           C 40,250 20,230 0,240 Z" 
        fill="url(#groundGradient)"/>
  
  <!-- Background musical elements -->
  <g opacity="0.2">
    <path d="M 250,50 C 240,40 260,30 270,40 C 280,50 260,60 250,50 Z M 250,50 L 250,80 M 250,80 C 245,85 240,85 240,80 C 240,75 245,75 250,80" fill="#ff3366"/>
    <path d="M 50,70 C 40,60 60,50 70,60 C 80,70 60,80 50,70 Z M 50,70 L 50,100 M 50,100 C 45,105 40,105 40,100 C 40,95 45,95 50,100" fill="#33cc33"/>
    <path d="M 280,130 C 270,120 290,110 300,120 C 310,130 290,140 280,130 Z M 280,130 L 280,160 M 280,160 C 275,165 270,165 270,160 C 270,155 275,155 280,160" fill="#3366ff"/>
  </g>
  
  <!-- Rainbow shell -->
  <g transform="translate(180,150)" filter="url(#shadow)">
    <!-- Main spiral -->
    <path d="M 0,0
             A 5,5 0 0,1 5,-5
             A 10,10 0 0,1 20,0
             A 15,15 0 0,1 0,30
             A 20,20 0 0,1 -40,0
             A 25,25 0 0,1 0,-60
             A 30,30 0 0,1 60,0
             A 35,35 0 0,1 0,80" 
          fill="url(#shellGradient)" stroke="none"/>
    
    <!-- Rainbow outline -->
    <path d="M 0,0
             A 5,5 0 0,1 5,-5
             A 10,10 0 0,1 20,0
             A 15,15 0 0,1 0,30
             A 20,20 0 0,1 -40,0
             A 25,25 0 0,1 0,-60
             A 30,30 0 0,1 60,0
             A 35,35 0 0,1 0,80" 
          fill="none" stroke="url(#rainbowGradient)" stroke-width="3" stroke-linecap="round"/>
    
    <!-- Shell pattern -->
    <path d="M 0,0
             A 5,5 0 0,1 5,-5
             A 10,10 0 0,1 20,0
             A 15,15 0 0,1 0,30
             A 20,20 0 0,1 -40,0
             A 25,25 0 0,1 0,-60
             A 30,30 0 0,1 60,0
             A 35,35 0 0,1 0,80" 
          fill="url(#shellPattern)" fill-opacity="0.6" stroke="none"/>
    
    <!-- Shell highlights -->
    <path d="M 0,0
             A 5,5 0 0,1 5,-5
             A 10,10 0 0,1 20,0
             A 15,15 0 0,1 0,30
             A 20,20 0 0,1 -40,0
             A 25,25 0 0,1 0,-60
             A 30,30 0 0,1 60,0" 
          fill="none" stroke="white" stroke-width="1" stroke-linecap="round" stroke-dasharray="2,8" opacity="0.6"/>
          
    <ellipse cx="-25" cy="-5" rx="12" ry="8" transform="rotate(-30)" fill="white" opacity="0.2"/>
    <ellipse cx="15" cy="15" rx="8" ry="5" transform="rotate(20)" fill="white" opacity="0.15"/>
  </g>
  
  <!-- Snail body -->
  <g filter="url(#shadow)">
    <path d="M 110,150 
             Q 90,160 75,170 
             Q 60,180 50,195 
             Q 40,210 35,230 
             Q 35,240 40,250 
             L 75,250 
             Q 80,230 90,210 
             Q 100,190 110,180 
             Q 115,175 120,170 
             Q 120,160 110,150 Z" 
          fill="url(#slimeGradient)"/>
    
    <!-- Body highlights -->
    <path d="M 55,250 Q 60,235 70,225 Q 80,215 90,205" stroke="white" stroke-width="2" stroke-linecap="round" opacity="0.3" fill="none"/>
    <path d="M 65,240 Q 70,230 80,220" stroke="white" stroke-width="1.5" stroke-linecap="round" opacity="0.3" fill="none"/>
    <path d="M 75,230 Q 85,215 95,205" stroke="white" stroke-width="1.5" stroke-linecap="round" opacity="0.3" fill="none"/>
    
    <!-- Body spots -->
    <g fill="white" opacity="0.3">
      <circle cx="95" cy="160" r="2"/>
      <circle cx="85" cy="175" r="1.5"/>
      <circle cx="72" cy="190" r="2"/>
      <circle cx="60" cy="210" r="1.8"/>
      <circle cx="50" cy="230" r="1.5"/>
      <circle cx="70" cy="230" r="1"/>
    </g>
  </g>
  
  <!-- Snail head/neck -->
  <g filter="url(#shadow)">
    <path d="M 40,250 
             Q 20,245 25,225 
             Q 30,210 40,205" 
          fill="url(#slimeGradient)" stroke="#338833" stroke-width="0.5"/>
    
    <!-- Head highlights -->
    <path d="M 30,235 Q 35,225 40,220" stroke="white" stroke-width="1" stroke-linecap="round" opacity="0.3" fill="none"/>
    
    <!-- Antennae -->
    <g>
      <path d="M 25,220 Q 15,210 18,195" fill="none" stroke="#338833" stroke-width="2"/>
      <path d="M 18,195 L 16,188" fill="none" stroke="#338833" stroke-width="2"/>
      <circle cx="16" cy="188" r="3" fill="#000">
        <circle cx="15" cy="187" r="1" fill="white"/>
      </circle>
      
      <path d="M 35,215 Q 30,200 33,185" fill="none" stroke="#338833" stroke-width="2"/>
      <path d="M 33,185 L 31,178" fill="none" stroke="#338833" stroke-width="2"/>
      <circle cx="31" cy="178" r="3" fill="#000">
        <circle cx="30" cy="177" r="1" fill="white"/>
      </circle>
    </g>
    
    <!-- Eyes -->
    <circle cx="28" cy="220" r="4" fill="white"/>
    <circle cx="28" cy="219" r="2" fill="black"/>
    <circle cx="27" cy="218" r="0.8" fill="white"/>
    
    <!-- Mouth -->
    <path d="M 25,230 C 30,234 35,234 40,230" stroke="#338833" stroke-width="1.5" fill="none"/>
    
    <!-- Cheeks -->
    <ellipse cx="20" cy="225" rx="4" ry="2" fill="#ff9999" opacity="0.4"/>
  </g>
  
  <!-- Saxophone -->
  <g transform="translate(30,230) rotate(-20)" filter="url(#shadow)">
    <!-- Main body -->
    <path d="M 0,0 
             C -5,-5 -7,-10 -5,-15 
             L 10,-30 
             C 15,-35 25,-30 23,-25 
             L 15,-10 
             C 13,-5 10,-3 5,-3" 
          fill="url(#saxGradient)" stroke="#996600" stroke-width="1"/>
    
    <!-- Neck -->
    <path d="M 10,-30 L 20,-40 C 25,-45 35,-40 33,-35 L 23,-25" 
          fill="url(#saxGradient)" stroke="#996600" stroke-width="1"/>
    
    <!-- Bell -->
    <path d="M 20,-40 L 25,-45 C 30,-50 40,-45 38,-40 L 33,-35" 
          fill="url(#saxGradient)" stroke="#996600" stroke-width="1"/>
    
    <!-- Mouthpiece -->
    <path d="M -5,-15 L -10,-12" fill="none" stroke="#996600" stroke-width="3" stroke-linecap="round"/>
    
    <!-- Reed -->
    <path d="M -10,-12 L -11,-10" fill="none" stroke="#663300" stroke-width="1.5" stroke-linecap="round"/>
    
    <!-- Keys -->
    <circle cx="0" cy="-10" r="2" fill="white" stroke="#996600" stroke-width="0.5"/>
    <circle cx="8" cy="-20" r="2" fill="white" stroke="#996600" stroke-width="0.5"/>
    <circle cx="15" cy="-30" r="2" fill="white" stroke="#996600" stroke-width="0.5"/>
    <circle cx="25" cy="-40" r="2" fill="white" stroke="#996600" stroke-width="0.5"/>
    
    <!-- Key arms -->
    <path d="M 2,-12 L 10,-12" stroke="#996600" stroke-width="0.5" fill="none"/>
    <path d="M 10,-22 L 18,-22" stroke="#996600" stroke-width="0.5" fill="none"/>
    <path d="M 17,-32 L 25,-32" stroke="#996600" stroke-width="0.5" fill="none"/>
    
    <!-- Key mechanism -->
    <rect x="-2" y="-14" width="3" height="6" rx="1" ry="1" fill="#996600"/>
    <rect x="6" y="-24" width="3" height="6" rx="1" ry="1" fill="#996600"/>
    <rect x="13" y="-34" width="3" height="6" rx="1" ry="1" fill="#996600"/>
    
    <!-- Highlights -->
    <path d="M 0,0 L 15,-25" stroke="url(#saxHighlight)" stroke-width="3" stroke-linecap="round" opacity="0.5"/>
    <path d="M 15,-30 L 25,-45" stroke="url(#saxHighlight)" stroke-width="2" stroke-linecap="round" opacity="0.3"/>
    
    <!-- Detail lines -->
    <path d="M -5,-5 C 0,-3 5,-3 10,-5" stroke="#663300" stroke-width="0.5" fill="none"/>
    <path d="M 0,-15 C 5,-13 10,-13 15,-15" stroke="#663300" stroke-width="0.5" fill="none"/>
    <path d="M 10,-35 C 15,-33 20,-33 25,-35" stroke="#663300" stroke-width="0.5" fill="none"/>
  </g>
  
  <!-- Musical notes -->
  <g filter="url(#noteGlow)">
    <!-- Quarter note -->
    <g transform="translate(10,170) rotate(-20)">
      <ellipse cx="0" cy="-15" rx="5" ry="3" transform="rotate(30)" fill="black"/>
      <path d="M 0,-15 L 0,0" stroke="black" stroke-width="1.5"/>
    </g>
    
    <!-- Eighth note -->
    <g transform="translate(5,140) rotate(-10)">
      <ellipse cx="0" cy="-15" rx="5" ry="3" transform="rotate(30)" fill="black"/>
      <path d="M 0,-15 L 0,0" stroke="black" stroke-width="1.5"/>
      <path d="M 0,-15 C 5,-15 10,-10 10,-5" stroke="black" stroke-width="1.5" fill="none"/>
    </g>
    
    <!-- Sixteenth note -->
    <g transform="translate(20,120) rotate(-30)">
      <ellipse cx="0" cy="-15" rx="5" ry="3" transform="rotate(30)" fill="black"/>
      <path d="M 0,-15 L 0,0" stroke="black" stroke-width="1.5"/>
      <path d="M 0,-15 C 5,-15 10,-10 10,-5" stroke="black" stroke-width="1.5" fill="none"/>
      <path d="M -2,-10 C 3,-10 8,-5 8,0" stroke="black" stroke-width="1.5" fill="none"/>
    </g>
  </g>
  
  <!-- Music vibrations -->
  <g opacity="0.6">
    <path d="M 0,190 C -10,180 -10,170 0,160 C 10,150 10,140 0,130" stroke="#ff3366" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M -5,185 C -15,175 -15,165 -5,155 C 5,145 5,135 -5,125" stroke="#ffcc00" stroke-width="2" fill="none" stroke-linecap="round"/>
    <path d="M -10,180 C -20,170 -20,160 -10,150 C 0,140 0,130 -10,120" stroke="#33cc33" stroke-width="2" fill="none" stroke-linecap="round"/>
  </g>
  
  <!-- Rainbow bubbles -->
  <g opacity="0.3">
    <circle cx="230" cy="70" r="15" fill="#ff0000"/>
    <circle cx="250" cy="100" r="10" fill="#ff9900"/>
    <circle cx="220" cy="110" r="12" fill="#ffff00"/>
    <circle cx="250" cy="130" r="8" fill="#00ff00"/>
    <circle cx="240" cy="160" r="14" fill="#0099ff"/>
    <circle cx="260" cy="180" r="9" fill="#6633ff"/>
    <circle cx="235" cy="200" r="11" fill="#ff00ff"/>
  </g>
  
  <!-- Music sparkles -->
  <g fill="white">
    <circle cx="5" cy="160" r="1.5" opacity="0.9"/>
    <circle cx="15" cy="145" r="1" opacity="0.7"/>
    <circle cx="-5" cy="165" r="1.2" opacity="0.8"/>
    <circle cx="20" cy="130" r="0.8" opacity="0.6"/>
    <circle cx="0" cy="140" r="1.3" opacity="0.7"/>
    <circle cx="-15" cy="150" r="1" opacity="0.8"/>
    <circle cx="10" cy="120" r="0.9" opacity="0.7"/>
    <circle cx="-10" cy="135" r="1.1" opacity="0.9"/>
  </g>
  
  <!-- Music symbols -->
  <g fill="black" opacity="0.2">
    <path d="M 225,90 L 225,80 M 225,80 C 230,80 235,85 230,90 C 225,95 220,90 225,80" transform="rotate(10, 225, 85)"/>
    <path d="M 260,130 L 260,120 M 260,120 C 265,120 270,125 265,130 C 260,135 255,130 260,120" transform="rotate(-15, 260, 125)"/>
    <path d="M 220,160 L 220,150 M 220,150 C 225,150 230,155 225,160 C 220,165 215,160 220,150" transform="rotate(5, 220, 155)"/>
    <text x="240" y="135" font-family="Arial" font-size="14" transform="rotate(-5, 240, 135)">♪</text>
    <text x="255" y="160" font-family="Arial" font-size="14" transform="rotate(10, 255, 160)">♫</text>
    <text x="225" y="180" font-family="Arial" font-size="14" transform="rotate(-8, 225, 180)">♩</text>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
      <stop offset="25%" style="stop-color:#FF7F00;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#FFFF00;stop-opacity:1" />
      <stop offset="75%" style="stop-color:#00FF00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0000FF;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="saxGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#A0522D;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#87CEEB"/>
  <ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#shellGradient)" stroke="#000" stroke-width="3"/>
  <path d="M150,100 C150,120 130,130 120,150 C130,170 150,180 150,200" fill="none" stroke="#000" stroke-width="3"/>
  <circle cx="120" cy="150" r="10" fill="#FFD700"/>
  <circle cx="180" cy="150" r="10" fill="#FFD700"/>
  <path d="M200,150 C220,140 240,130 250,120 L260,130 C250,140 230,150 210,160 Z" fill="url(#saxGradient)" stroke="#000" stroke-width="2"/>
  <path d="M250,120 C260,110 270,100 280,90 L290,100 C280,110 270,120 260,130 Z" fill="url(#saxGradient)" stroke="#000" stroke-width="2"/>
  <path d="M150,200 C160,190 170,180 180,170 L190,180 C180,190 170,200 160,210 Z" fill="#8B4513" stroke="#000" stroke-width="2"/>
  <path d="M150,200 C140,190 130,180 120,170 L110,180 C130,190 140,200 150,210 Z" fill="#8B4513" stroke="#000" stroke-width="2"/>
  <path d="M150,210 C160,200 170,190 180,180 L190,190 C180,200 170,210 160,220 Z" fill="#8B4513" stroke="#000" stroke-width="2"/>
  <path d="M150,210 C140,200 130,190 120,180 L110,190 C130,200 140,210 150,220 Z" fill="#8B4513" stroke="#000" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 1

Judge's Analysis

    Player 1's image captures the whimsical theme of a rainbow-colored snail playing a saxophone with vibrant colors and imaginative elements.

    The snail is clearly depicted with musical notes, adding to the playful concept.

    In contrast, Player 2's image lacks clarity and detail, making it difficult to interpret the intended subject matter.

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
93
Player 2
11
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
33
Player 2
2
Ellipses

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

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

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

Player 1
16
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
40
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
30
Player 2
4

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
16
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
170
Player 2
33
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
10
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
3
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