Back

SVG Drawing Match #1421

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Inflatable giraffe balancing a teacup on its nose"

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="#87CEEB" />
      <stop offset="100%" stop-color="#E0F7FF" />
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFD966" />
      <stop offset="100%" stop-color="#FFC107" />
    </linearGradient>
    <linearGradient id="spotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#B45309" />
      <stop offset="100%" stop-color="#92400E" />
    </linearGradient>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFFFFF" />
      <stop offset="100%" stop-color="#E6E6FA" />
    </linearGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="3" dy="5" stdDeviation="3" flood-opacity="0.3"/>
    </filter>
    <pattern id="spots" patternUnits="userSpaceOnUse" width="40" height="40">
      <path d="M10,10 Q15,5 20,10 Q25,15 20,20 Q15,25 10,20 Q5,15 10,10Z" fill="url(#spotGradient)"/>
    </pattern>
  </defs>

  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Clouds -->
  <ellipse cx="60" cy="40" rx="30" ry="15" fill="white" opacity="0.8"/>
  <ellipse cx="80" cy="35" rx="25" ry="12" fill="white" opacity="0.8"/>
  <ellipse cx="40" cy="35" rx="20" ry="10" fill="white" opacity="0.8"/>
  
  <ellipse cx="230" cy="60" rx="35" ry="17" fill="white" opacity="0.8"/>
  <ellipse cx="250" cy="55" rx="25" ry="15" fill="white" opacity="0.8"/>
  <ellipse cx="210" cy="55" rx="22" ry="12" fill="white" opacity="0.8"/>

  <!-- Inflatable seam lines -->
  <path d="M150,260 C150,260 190,235 190,190 C190,170 170,150 170,120 C170,90 175,40 175,40" fill="none" stroke="#FFAB00" stroke-width="1" stroke-dasharray="3,3"/>
  <path d="M150,260 C150,260 110,235 110,190 C110,170 130,150 130,120 C130,90 125,40 125,40" fill="none" stroke="#FFAB00" stroke-width="1" stroke-dasharray="3,3"/>
  
  <!-- Inflatable giraffe body -->
  <ellipse cx="150" cy="250" rx="50" ry="30" fill="url(#giraffeGradient)" filter="url(#shadow)"/>
  <ellipse cx="150" cy="250" rx="40" ry="22" fill="url(#pattern)" opacity="0.6"/>
  
  <!-- Giraffe legs -->
  <path d="M120,245 C115,270 110,280 105,290" stroke-width="12" stroke="url(#giraffeGradient)" stroke-linecap="round" fill="none"/>
  <path d="M180,245 C185,270 190,280 195,290" stroke-width="12" stroke="url(#giraffeGradient)" stroke-linecap="round" fill="none"/>
  <path d="M130,255 C125,280 120,290 115,300" stroke-width="12" stroke="url(#giraffeGradient)" stroke-linecap="round" fill="none"/>
  <path d="M170,255 C175,280 180,290 185,300" stroke-width="12" stroke="url(#giraffeGradient)" stroke-linecap="round" fill="none"/>
  
  <!-- Inflatable valve -->
  <circle cx="185" cy="240" r="5" fill="#FF5252"/>
  <circle cx="185" cy="240" r="2" fill="#FF8A80"/>
  
  <!-- Giraffe neck -->
  <path d="M150,230 C150,230 145,180 150,130 C155,80 150,40 150,40" stroke-width="25" stroke="url(#giraffeGradient)" stroke-linecap="round" fill="none"/>
  
  <!-- Giraffe spots -->
  <path d="M150,230 C150,230 145,180 150,130 C155,80 150,40 150,40" stroke-width="25" stroke="url(#pattern)" stroke-linecap="round" fill="none" opacity="0.4"/>
  
  <!-- Giraffe head -->
  <ellipse cx="150" cy="40" rx="15" ry="20" fill="url(#giraffeGradient)" filter="url(#shadow)"/>
  
  <!-- Giraffe ears -->
  <ellipse cx="138" cy="30" rx="5" ry="7" fill="url(#giraffeGradient)" transform="rotate(-10 138 30)"/>
  <ellipse cx="162" cy="30" rx="5" ry="7" fill="url(#giraffeGradient)" transform="rotate(10 162 30)"/>
  
  <!-- Giraffe eyes -->
  <circle cx="143" cy="35" r="2.5" fill="#333"/>
  <circle cx="157" cy="35" r="2.5" fill="#333"/>
  <circle cx="144" cy="34" r="1" fill="white"/>
  <circle cx="158" cy="34" r="1" fill="white"/>
  
  <!-- Giraffe ossicones (horns) -->
  <path d="M140,25 L138,15" stroke-width="5" stroke="url(#giraffeGradient)" stroke-linecap="round"/>
  <path d="M160,25 L162,15" stroke-width="5" stroke="url(#giraffeGradient)" stroke-linecap="round"/>
  <circle cx="138" cy="15" r="3" fill="url(#spotGradient)"/>
  <circle cx="162" cy="15" r="3" fill="url(#spotGradient)"/>
  
  <!-- Teacup -->
  <ellipse cx="150" cy="15" rx="15" ry="6" fill="url(#teacupGradient)" filter="url(#shadow)"/>
  <path d="M135,15 C135,20 165,20 165,15 C165,10 135,10 135,15" fill="url(#teacupGradient)" stroke="#B8B8FF" stroke-width="1"/>
  <path d="M138,15 L138,5 C138,0 162,0 162,5 L162,15" fill="none" stroke="url(#teacupGradient)" stroke-width="6" stroke-linecap="round"/>
  <path d="M138,15 L138,5 C138,0 162,0 162,5 L162,15" fill="none" stroke="#B8B8FF" stroke-width="1"/>
  <path d="M166,10 Q175,12 170,15 Q165,18 166,10" fill="url(#teacupGradient)" stroke="#B8B8FF" stroke-width="1"/>
  
  <!-- Steam from teacup -->
  <path d="M150,0 C155,-2 145,2 150,5" stroke="#FFFFFF" stroke-width="2" fill="none" opacity="0.6">
    <animate attributeName="d" 
      values="M150,0 C155,-2 145,2 150,5;
              M150,0 C145,-2 155,2 150,5;
              M150,0 C155,-2 145,2 150,5" 
      dur="3s" repeatCount="indefinite"/>
  </path>
  
  <!-- Teacup contents -->
  <ellipse cx="150" cy="15" rx="12" ry="3" fill="#8B4513" opacity="0.6"/>
  
  <!-- Reflection on inflatable surface -->
  <ellipse cx="130" cy="245" rx="15" ry="5" fill="white" opacity="0.2" transform="rotate(-10 130 245)"/>
  <ellipse cx="160" cy="245" rx="5" ry="2" fill="white" opacity="0.2"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#FDD77A" />
  
  <!-- Giraffe body -->
  <ellipse cx="150" cy="180" rx="70" ry="120" fill="#FFC03A" />
  
  <!-- Giraffe spots -->
  <circle cx="130" cy="130" r="10" fill="#D46F00" />
  <circle cx="160" cy="130" r="10" fill="#D46F00" />
  <circle cx="140" cy="170" r="10" fill="#D46F00" />
  <circle cx="165" cy="190" r="10" fill="#D46F00" />
  
  <!-- Giraffe head -->
  <ellipse cx="150" cy="100" rx="40" ry="45" fill="#FFC03A" />
  
  <!-- Giraffe ear -->
  <path d="M125,75 L125,50 Q140,30 155,50 L155,75 Z" fill="#FFC03A" />
  
  <!-- Giraffe neck -->
  <rect x="140" y="100" width="20" height="80" fill="#FFC03A" />
  
  <!-- Giraffe leg 1 -->
  <rect x="120" y="240" width="20" height="40" fill="#FFC03A" />
  
  <!-- Giraffe leg 2 -->
  <rect x="160" y="240" width="20" height="40" fill="#FFC03A" />
  
  <!-- Teacup -->
  <path d="M120,40 Q150,20 180,40 L180,60 Q150,80 120,60 Z" fill="#E8656A" />
  
  <!-- Teacup handle -->
  <path d="M190,50 Q195,30 200,50" fill="none" stroke="#C74248" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's submission captures the playfulness of an inflatable giraffe with a clear depiction of the giraffe balancing a teacup on its nose, complete with a whimsical background.

    The use of color and the addition of clouds enhances the visual appeal.

    Player 2's image is more abstract and lacks the clarity and adherence to the prompt seen in Player 1's work.

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
40
Player 2
13
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
8
Player 2
4
Ellipses

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

Player 1
15
Player 2
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
16
Player 2
3
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
5

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
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
48
Player 2
12
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
6
Player 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
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