Back

SVG Drawing Match #281

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat surfing on a giant banana peel wave"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FFEA00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFAA00;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="seaGradient" x1="100%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#4FC3F7;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0288D1;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#seaGradient)" />
  <path d="M20 280 Q150 220 280 280 Q150 260 20 280 Z" fill="url(#waveGradient)" />
  <path d="M110 180 Q140 130 170 180 Q140 160 110 180 Z" fill="yellow" transform="rotate(20 150 150)" />
  <ellipse cx="145" cy="165" rx="18" ry="12" fill="url(#waveGradient)" />
  <g transform="translate(140 140) rotate(15)">
    <circle cx="0" cy="0" r="15" fill="#FFD700" />
    <ellipse cx="-3" cy="-8" rx="4" ry="10" fill="#FFD700" transform="rotate(-20)" />
    <ellipse cx="3" cy="-8" rx="4" ry="10" fill="#FFD700" transform="rotate(20)" />
    <ellipse cx="0" cy="5" rx="2" ry="3" fill="black" />
    <path d="M-4 3 Q0 1 4 3" fill="none" stroke="black" stroke-width="0.5" />
    <path d="M-3 -10 Q0 -14 3 -10" fill="none" stroke="black" stroke-width="0.5" />
  </g>
  <path d="M130 160 Q135 150 140 160 Q135 155 130 160 Z" fill="#FFDD00" transform="rotate(20 135 155)" />
  <path d="M150 160 Q155 150 160 160 Q155 155 150 160 Z" fill="#FFDD00" transform="rotate(-20 155 155)" />
  <path d="M120 150 Q135 130 150 150 Q135 140 120 150 Z" fill="orange" />
  <path d="M90 180 Q105 160 120 180 Q105 170 90 180 Z" fill="orange" transform="rotate(10 105 170)" />
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#64c2ff" />
      <stop offset="100%" stop-color="#b3e0ff" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#005c99" />
      <stop offset="100%" stop-color="#0099ff" />
    </linearGradient>
    <radialGradient id="sunGradient" cx="85%" cy="15%" r="20%">
      <stop offset="0%" stop-color="#ffff99" />
      <stop offset="100%" stop-color="#ff9900" />
    </radialGradient>
    <linearGradient id="bananaGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ffee58" />
      <stop offset="100%" stop-color="#fdd835" />
    </linearGradient>
    <linearGradient id="bananaShadowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#caae00" />
      <stop offset="100%" stop-color="#fbc02d" />
    </linearGradient>
    <linearGradient id="catFurGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#616161" />
      <stop offset="100%" stop-color="#424242" />
    </linearGradient>
    <pattern id="foamPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="white" opacity="0.7" />
    </pattern>
  </defs>
  
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)" />
  
  <!-- Sun -->
  <circle cx="260" cy="40" r="30" fill="url(#sunGradient)" />
  <g transform="translate(260, 40)">
    <path d="M0,-45 L0,-35 M45,0 L35,0 M0,45 L0,35 M-45,0 L-35,0 M32,-32 L25,-25 M32,32 L25,25 M-32,32 L-25,25 M-32,-32 L-25,-25" stroke="#ff9900" stroke-width="3" stroke-linecap="round" />
  </g>
  
  <!-- Ocean -->
  <path d="M0,180 C40,160 80,190 120,180 C160,170 200,200 240,180 C280,170 320,190 350,180 L350,300 L0,300 Z" fill="url(#waterGradient)" />
  
  <!-- Banana Peel Wave -->
  <g transform="translate(150, 210) rotate(-15)">
    <!-- Main banana peel wave -->
    <path d="M-100,0 C-80,-40 -40,-50 0,-30 C40,-10 80,-40 100,-20 C120,0 130,30 70,30 C10,30 -40,30 -80,20 C-90,15 -100,10 -100,0 Z" fill="url(#bananaGradient)" />
    
    <!-- Banana peel details -->
    <path d="M-90,0 C-70,-35 -40,-45 0,-25 C40,-5 75,-35 95,-15" fill="none" stroke="url(#bananaShadowGradient)" stroke-width="4" />
    <path d="M-80,10 C-60,-20 -30,-30 10,-10 C50,10 85,-20 95,0" fill="none" stroke="url(#bananaShadowGradient)" stroke-width="2" />
    
    <!-- Wave foam -->
    <path d="M-100,0 C-80,-40 -40,-50 0,-30 C40,-10 80,-40 100,-20" fill="none" stroke="url(#foamPattern)" stroke-width="15" stroke-linecap="round" />
    <path d="M100,-20 C110,-10 115,10 90,20 C60,30 30,30 0,25 C-30,20 -60,20 -80,20 C-90,15 -100,10 -100,0" fill="none" stroke="url(#foamPattern)" stroke-width="10" stroke-linecap="round" />
  </g>
  
  <!-- Surfing Cat -->
  <g transform="translate(155, 175) rotate(-20) scale(0.9)">
    <!-- Surfboard -->
    <ellipse cx="0" cy="0" rx="35" ry="10" fill="#ff5252" />
    <ellipse cx="0" cy="0" rx="30" ry="7" fill="#ff8a80" />
    
    <!-- Cat Body -->
    <ellipse cx="-5" cy="-15" rx="20" ry="15" fill="url(#catFurGradient)" />
    
    <!-- Cat Head -->
    <circle cx="15" cy="-25" r="12" fill="url(#catFurGradient)" />
    
    <!-- Cat Face -->
    <circle cx="12" cy="-28" r="1.5" fill="white" />
    <circle cx="18" cy="-28" r="1.5" fill="white" />
    <circle cx="12" cy="-28" r="0.7" fill="black" />
    <circle cx="18" cy="-28" r="0.7" fill="black" />
    <path d="M13,-23 C14,-22 16,-22 17,-23" fill="none" stroke="white" stroke-width="0.7" />
    <path d="M10,-32 L14,-29 M20,-32 L16,-29" fill="none" stroke="url(#catFurGradient)" stroke-width="1.5" stroke-linecap="round" />
    
    <!-- Cat Ears -->
    <path d="M7,-35 L12,-30 L16,-35 Z" fill="url(#catFurGradient)" />
    <path d="M14,-35 L18,-30 L22,-35 Z" fill="url(#catFurGradient)" />
    <path d="M9,-34 L12,-31 L14,-34 Z" fill="#ffccbc" />
    <path d="M16,-34 L18,-31 L20,-34 Z" fill="#ffccbc" />
    
    <!-- Cat Tail -->
    <path d="M-25,-15 C-35,-10 -40,0 -35,10" fill="none" stroke="url(#catFurGradient)" stroke-width="5" stroke-linecap="round" />
    
    <!-- Cat Paws -->
    <path d="M-15,-5 L-10,5 M0,-5 L5,5" fill="none" stroke="url(#catFurGradient)" stroke-width="4" stroke-linecap="round" />
    
    <!-- Cat "Hang Ten" gesture -->
    <path d="M10,0 L20,10" fill="none" stroke="url(#catFurGradient)" stroke-width="3" stroke-linecap="round" />
    
    <!-- Sunglasses -->
    <path d="M8,-29 C8,-27 10,-26 12,-26 C14,-26 16,-27 16,-29 M16,-29 C16,-27 18,-26 20,-26 C22,-26 24,-27 24,-29" fill="none" stroke="#333" stroke-width="1" />
  </g>
  
  <!-- Small waves and splashes -->
  <path d="M50,225 C60,220 70,230 80,225 M100,240 C110,235 120,245 130,240 M210,230 C220,225 230,235 240,230" fill="none" stroke="white" stroke-width="2" opacity="0.7" />
  
  <!-- Bubbles -->
  <circle cx="70" cy="250" r="3" fill="white" opacity="0.6" />
  <circle cx="100" cy="260" r="5" fill="white" opacity="0.6" />
  <circle cx="130" cy="250" r="2" fill="white" opacity="0.6" />
  <circle cx="180" cy="240" r="4" fill="white" opacity="0.6" />
  <circle cx="210" cy="260" r="3" fill="white" opacity="0.6" />
</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 submission clearly depicts the concept of a cat surfing on a giant banana peel wave, with detailed elements such as the sun, waves, and the cat on a surfboard.

    It shows higher creativity and adherence to the prompt, as well as technical quality and visual appeal.

    Player 1's image is more abstract and less detailed, making it harder to interpret the intended scene.

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
34
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
1
Player 2
12
Ellipses

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

Player 1
4
Player 2
3
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
8
Player 2
18
Groups

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

Player 1
1
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
6
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
18

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

Complexity Metrics

Path Commands

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

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

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