Back

SVG Drawing Match #939

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat in a spacesuit playing electric guitar, neon pop art style"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradientSpacesuit" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff9a9e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fad0c4;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="gradientGuitar" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#a18cd1;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fbc2eb;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="gradientBackground" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#f3e6e8;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#5d4157;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1" fill="gold"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#gradientBackground)" />
  <g transform="translate(50, 50) scale(1.5)">
    <!-- Spacesuit -->
    <ellipse cx="50" cy="100" rx="40" ry="60" fill="url(#gradientSpacesuit)" stroke="#ff4b7d" stroke-width="2"/>
    <!-- Cat's Head -->
    <circle cx="50" cy="50" r="30" fill="#fff" stroke="#24181f" stroke-width="3"/>
    <ellipse cx="40" cy="45" rx="4" ry="8" fill="#24181f"/>
    <ellipse cx="60" cy="45" rx="4" ry="8" fill="#24181f"/>
    <path d="M45,60 Q50,65 55,60" fill="none" stroke="#24181f" stroke-width="2"/>
    <!-- Cat's Ears -->
    <polygon points="30,20 40,40 20,40" fill="#fff" stroke="#24181f" stroke-width="2"/>
    <polygon points="70,20 60,40 80,40" fill="#fff" stroke="#24181f" stroke-width="2"/>
    <!-- Electric Guitar -->
    <rect x="80" y="100" width="10" height="60" fill="url(#gradientGuitar)" stroke="#24181f" stroke-width="2"/>
    <path d="M70,110 Q85,90 120,100 Q110,135 90,140 Z" fill="url(#gradientGuitar)" stroke="#24181f" stroke-width="2"/>
    <!-- Guitar Strings -->
    <line x1="90" y1="110" x2="120" y2="92" stroke="#24181f" stroke-width="1"/>
    <line x1="90" y1="113" x2="120" y2="95" stroke="#24181f" stroke-width="1"/>
    <line x1="90" y1="116" x2="120" y2="98" stroke="#24181f" stroke-width="1"/>
    <line x1="90" y1="119" x2="120" y2="101" stroke="#24181f" stroke-width="1"/>
    <!-- Space Stars -->
    <rect width="200" height="200" fill="url(#starPattern)" transform="translate(-50, -50)" />
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="60%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#6a00ff" />
      <stop offset="70%" stop-color="#300066" />
      <stop offset="100%" stop-color="#000033" />
    </radialGradient>
    
    <linearGradient id="neonGreen" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00ff9d" />
      <stop offset="100%" stop-color="#00bb74" />
    </linearGradient>
    
    <linearGradient id="neonPink" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff00cc" />
      <stop offset="100%" stop-color="#ff3399" />
    </linearGradient>
    
    <linearGradient id="neonBlue" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00ccff" />
      <stop offset="100%" stop-color="#0099ff" />
    </linearGradient>
    
    <linearGradient id="guitarGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff3300" />
      <stop offset="100%" stop-color="#ff9900" />
    </linearGradient>
    
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" />
      <circle cx="25" cy="20" r="0.5" fill="white" />
      <circle cx="40" cy="40" r="0.6" fill="white" />
      <circle cx="20" cy="35" r="0.7" fill="white" />
      <circle cx="35" cy="5" r="0.4" fill="white" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <rect width="300" height="300" fill="url(#stars)" />
  
  <!-- Circular grid lines - 80s retro feel -->
  <circle cx="150" cy="150" r="130" fill="none" stroke="#ff00ff" stroke-width="0.5" opacity="0.3" />
  <circle cx="150" cy="150" r="100" fill="none" stroke="#00ffff" stroke-width="0.5" opacity="0.3" />
  <circle cx="150" cy="150" r="70" fill="none" stroke="#ffff00" stroke-width="0.5" opacity="0.3" />
  
  <!-- Spacesuit body -->
  <ellipse cx="150" cy="160" rx="60" ry="65" fill="#dddddd" stroke="#999999" stroke-width="1.5" />
  
  <!-- Helmet -->
  <circle cx="150" cy="95" r="40" fill="#dddddd" stroke="#999999" stroke-width="1.5" />
  <ellipse cx="150" cy="95" rx="32" ry="35" fill="#333344" opacity="0.8" />
  
  <!-- Cat face inside helmet -->
  <circle cx="140" cy="90" r="6" fill="white" /> <!-- Left eye -->
  <circle cx="160" cy="90" r="6" fill="white" /> <!-- Right eye -->
  <circle cx="142" cy="92" r="3" fill="black" /> <!-- Left pupil -->
  <circle cx="162" cy="92" r="3" fill="black" /> <!-- Right pupil -->
  <path d="M150 100 Q145 105 150 110 Q155 105 150 100" fill="#ff9999" /> <!-- Nose -->
  <path d="M145 105 Q150 113 155 105" fill="none" stroke="black" stroke-width="1" /> <!-- Mouth -->
  <path d="M125 80 L135 90" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M125 95 L135 95" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M125 110 L135 100" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M175 80 L165 90" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M175 95 L165 95" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M175 110 L165 100" stroke="black" stroke-width="1.5" /> <!-- Whisker -->
  <path d="M130 75 L142 72 L138 62" fill="#dddddd" stroke="#999999" /> <!-- Cat ear -->
  <path d="M170 75 L158 72 L162 62" fill="#dddddd" stroke="#999999" /> <!-- Cat ear -->
  
  <!-- Helmet visor reflection -->
  <path d="M170 75 Q180 90 170 105" stroke="white" stroke-width="2" opacity="0.6" fill="none" />
  
  <!-- Spacesuit details -->
  <rect x="145" y="135" width="10" height="20" fill="#999999" rx="2" ry="2" />
  <circle cx="150" cy="140" r="3" fill="red" />
  <circle cx="150" cy="150" r="3" fill="url(#neonGreen)" />
  <circle cx="120" cy="160" r="10" fill="#aaaaaa" stroke="#999999" />
  <circle cx="180" cy="160" r="10" fill="#aaaaaa" stroke="#999999" />
  
  <!-- Electric Guitar -->
  <path d="M190 170 L240 220 L230 235 L180 185 Z" fill="url(#guitarGradient)" stroke="#000000" stroke-width="1" />
  <rect x="170" y="150" width="15" height="40" fill="url(#guitarGradient)" stroke="#000000" stroke-width="1" />
  <rect x="160" y="140" width="25" height="15" fill="#222222" stroke="#000000" stroke-width="1" />
  <line x1="170" y1="190" x2="185" y2="190" stroke="#333333" stroke-width="2" />
  <line x1="172" y1="185" x2="172" y2="195" stroke="#dddddd" stroke-width="1" />
  <line x1="177" y1="185" x2="177" y2="195" stroke="#dddddd" stroke-width="1" />
  <line x1="182" y1="185" x2="182" y2="195" stroke="#dddddd" stroke-width="1" />
  
  <!-- Guitar strings with neon glow -->
  <line x1="165" y1="145" x2="235" y2="225" stroke="url(#neonPink)" stroke-width="1" filter="url(#glow)" />
  <line x1="170" y1="145" x2="240" y2="225" stroke="url(#neonBlue)" stroke-width="1" filter="url(#glow)" />
  <line x1="175" y1="145" x2="245" y2="225" stroke="url(#neonGreen)" stroke-width="1" filter="url(#glow)" />
  
  <!-- Musical notes -->
  <g filter="url(#glow)">
    <path d="M210 130 L210 120 L218 117 L218 127 Z" fill="url(#neonPink)" />
    <circle cx="210" cy="130" r="4" fill="url(#neonPink)" />
    
    <path d="M235 105 L235 95 L243 92 L243 102 Z" fill="url(#neonBlue)" />
    <circle cx="235" cy="105" r="4" fill="url(#neonBlue)" />
    
    <path d="M250 140 L250 130 L258 127 L258 137 Z" fill="url(#neonGreen)" />
    <circle cx="250" cy="140" r="4" fill="url(#neonGreen)" />
  </g>
  
  <!-- Arm -->
  <path d="M125 180 Q130 165 160 155" fill="none" stroke="#dddddd" stroke-width="15" stroke-linecap="round" />
  
  <!-- Space boots -->
  <path d="M120 225 Q120 240 135 240 L165 240 Q180 240 180 225 L180 210 Q180 200 170 200 L130 200 Q120 200 120 210 Z" fill="#dddddd" stroke="#999999" stroke-width="1.5" />
</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 captures the idea of a 'Cat in a spacesuit playing electric guitar, neon pop art style.' The depiction of the cat in a spacesuit is clear, with colorful musical notes adding to the neon pop art style.

    In contrast, Player 1's image lacks clarity and detail in representing the concept, making it less effective in conveying 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
16
Player 2
51
Rectangles

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

Player 1
3
Player 2
5
Circles

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

Player 1
2
Player 2
20
Ellipses

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

Player 1
3
Player 2
2
Lines

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

Player 1
4
Player 2
7
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
2
Player 2
17
Groups

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
29

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
24

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

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
56
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
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

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