Back

SVG Drawing Match #197

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a suit riding a unicycle on a tightrope over a canyon"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1E90FF" />
      <stop offset="100%" stop-color="#87CEEB" />
    </linearGradient>
    
    <!-- Canyon gradient -->
    <linearGradient id="canyonGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#E1A95F" />
      <stop offset="30%" stop-color="#CD853F" />
      <stop offset="70%" stop-color="#8B4513" />
      <stop offset="100%" stop-color="#654321" />
    </linearGradient>
    
    <!-- Sunset gradient -->
    <radialGradient id="sunsetGradient" cx="70%" cy="10%" r="80%">
      <stop offset="0%" stop-color="#FF7F50" />
      <stop offset="40%" stop-color="#FF6347" stop-opacity="0.6" />
      <stop offset="100%" stop-color="#1E90FF" stop-opacity="0" />
    </radialGradient>
    
    <!-- Giraffe pattern -->
    <pattern id="giraffePattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect width="40" height="40" fill="#F5DEB3" />
      <path d="M5,5 Q12,0 20,5 Q25,15 20,25 Q10,30 5,20 Q0,10 5,5 Z" fill="#D2691E" />
      <path d="M25,15 Q32,10 35,15 Q40,25 35,35 Q28,40 25,30 Q20,20 25,15 Z" fill="#D2691E" />
    </pattern>
    
    <!-- Suit gradient -->
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#000080" />
      <stop offset="50%" stop-color="#191970" />
      <stop offset="100%" stop-color="#000080" />
    </linearGradient>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Sunset effect -->
  <rect x="0" y="0" width="300" height="300" fill="url(#sunsetGradient)" />
  
  <!-- Clouds -->
  <path d="M40,40 Q50,30 60,40 Q75,30 90,40 Q100,30 110,40 Q120,50 110,60 Q120,70 110,80 Q95,90 80,80 Q65,90 50,80 Q40,70 50,60 Q40,50 40,40 Z" fill="white" opacity="0.8" />
  <path d="M200,60 Q210,50 220,60 Q235,50 250,60 Q260,50 270,60 Q280,70 270,80 Q280,90 270,100 Q255,110 240,100 Q225,110 210,100 Q200,90 210,80 Q200,70 200,60 Z" fill="white" opacity="0.7" />
  
  <!-- Birds -->
  <path d="M120,40 Q125,35 130,40 Q135,35 140,40" fill="none" stroke="black" stroke-width="1" />
  <path d="M180,50 Q185,45 190,50 Q195,45 200,50" fill="none" stroke="black" stroke-width="1" />
  <path d="M100,70 Q105,65 110,70 Q115,65 120,70" fill="none" stroke="black" stroke-width="1" />
  
  <!-- Canyon -->
  <path d="M0,180 Q40,160 70,190 Q100,160 130,200 Q160,170 190,210 Q220,180 250,220 Q280,200 300,230 L300,300 L0,300 Z" fill="url(#canyonGradient)" />
  
  <!-- Rock details in canyon -->
  <path d="M30,200 Q50,190 70,210 L65,230 Q45,220 30,240 Z" fill="#8B4513" opacity="0.7" />
  <path d="M200,220 Q220,210 240,230 L235,250 Q215,240 200,260 Z" fill="#8B4513" opacity="0.7" />
  
  <!-- Tightrope supports -->
  <rect x="20" y="180" width="10" height="120" fill="#8B4513" />
  <rect x="270" y="180" width="10" height="120" fill="#8B4513" />
  
  <!-- Tightrope -->
  <path d="M25,180 Q150,170 275,180" stroke="#696969" stroke-width="2" fill="none" />
  
  <!-- Shadow under tightrope -->
  <ellipse cx="150" cy="250" rx="100" ry="5" fill="black" opacity="0.3" />
  
  <!-- Unicycle -->
  <g transform="translate(150, 172)">
    <!-- Wheel -->
    <circle cx="0" cy="0" r="12" fill="none" stroke="#000000" stroke-width="2" />
    <!-- Spokes -->
    <line x1="-12" y1="0" x2="12" y2="0" stroke="#000000" stroke-width="1" />
    <line x1="0" y1="-12" x2="0" y2="12" stroke="#000000" stroke-width="1" />
    <line x1="-8.5" y1="-8.5" x2="8.5" y2="8.5" stroke="#000000" stroke-width="1" />
    <line x1="8.5" y1="-8.5" x2="-8.5" y2="8.5" stroke="#000000" stroke-width="1" />
    <!-- Seat post -->
    <line x1="0" y1="-12" x2="0" y2="-30" stroke="#000000" stroke-width="2" />
    <!-- Seat -->
    <ellipse cx="0" cy="-30" rx="6" ry="2" fill="#000000" />
    <!-- Pedals -->
    <line x1="-12" y1="0" x2="-18" y2="0" stroke="#808080" stroke-width="2" />
    <line x1="12" y1="0" x2="18" y2="0" stroke="#808080" stroke-width="2" />
    <circle cx="-18" cy="0" r="3" fill="#808080" />
    <circle cx="18" cy="0" r="3" fill="#808080" />
  </g>
  
  <!-- Giraffe -->
  <g transform="translate(150, 110)">
    <!-- Hind legs (behind the unicycle) -->
    <path d="M-8,0 C-10,20 -12,40 -10,62" stroke="#F5DEB3" stroke-width="5" stroke-linecap="round" fill="none" />
    
    <!-- Body in suit -->
    <path d="M-15,-18 C-15,-10 -15,-5 -10,0 C-5,5 5,5 10,0 C15,-5 15,-10 15,-18 C15,-25 10,-30 0,-30 C-10,-30 -15,-25 -15,-18 Z" fill="url(#suitGradient)" />
    
    <!-- Tail -->
    <path d="M-10,-15 C-15,-10 -20,-5 -25,10" stroke="#F5DEB3" stroke-width="3" stroke-linecap="round" fill="none" />
    <circle cx="-25" cy="10" r="3" fill="#8B4513" />
    
    <!-- Suit details -->
    <path d="M0,-30 L-5,-15 L0,-20 L5,-15 L0,-30 Z" fill="#000080" /> <!-- Lapels -->
    <path d="M-5,-27 L-5,-15 L0,-20 L5,-15 L5,-27 Z" fill="white" /> <!-- Shirt -->
    <path d="M-5,-24 Q-3,-22 0,-24 Q3,-22 5,-24" fill="#FF0000" /> <!-- Bow tie -->
    <circle cx="-8" cy="-22" r="1" fill="gold" /> <!-- Button -->
    <circle cx="-8" cy="-15" r="1" fill="gold" /> <!-- Button -->
    <rect x="8" y="-25" width="4" height="5" fill="#191970" rx="1" /> <!-- Pocket -->
    
    <!-- Neck -->
    <path d="M0,-30 C-3,-45 -5,-60 -2,-75 C0,-85 0,-95 0,-100" stroke="url(#giraffePattern)" stroke-width="8" fill="none" />
    
    <!-- Head -->
    <ellipse cx="0" cy="-105" rx="10" ry="12" fill="url(#giraffePattern)" />
    
    <!-- Ears -->
    <ellipse cx="-8" cy="-110" rx="3" ry="4" fill="#F5DEB3" />
    <ellipse cx="8" cy="-110" rx="3" ry="4" fill="#F5DEB3" />
    
    <!-- Eyes -->
    <ellipse cx="-4" cy="-105" rx="2" ry="2.5" fill="white" />
    <ellipse cx="4" cy="-105" rx="2" ry="2.5" fill="white" />
    <ellipse cx="-4" cy="-105" rx="1" ry="1.5" fill="black" />
    <ellipse cx="4" cy="-105" rx="1" ry="1.5" fill="black" />
    
    <!-- Eyebrows - worried expression -->
    <path d="M-6,-109 L-2,-107" stroke="black" stroke-width="1" />
    <path d="M6,-109 L2,-107" stroke="black" stroke-width="1" />
    
    <!-- Horns (ossicones) -->
    <path d="M-6,-115 L-5,-120" stroke="#F5DEB3" stroke-width="3" stroke-linecap="round" />
    <path d="M6,-115 L5,-120" stroke="#F5DEB3" stroke-width="3" stroke-linecap="round" />
    
    <!-- Mouth -->
    <path d="M-3,-100 C-1,-98 1,-98 3,-100" fill="none" stroke="black" stroke-width="1" />
    
    <!-- Front legs on pedals -->
    <path d="M-8,-10 C-10,10 -15,30 -18,62" stroke="#F5DEB3" stroke-width="5" stroke-linecap="round" fill="none" />
    <path d="M8,-10 C10,10 15,30 18,62" stroke="#F5DEB3" stroke-width="5" stroke-linecap="round" fill="none" />
    
    <!-- Balance pole -->
    <line x1="-60" y1="-40" x2="60" y2="-40" stroke="#8B4513" stroke-width="3" stroke-linecap="round" />
    
    <!-- Sweat drop -->
    <path d="M10,-105 C12,-102 13,-99 10,-95" fill="none" stroke="#1E90FF" stroke-width="1" />
    <circle cx="10" cy="-95" r="1.5" fill="#1E90FF" />
  </g>
  
  <!-- Motion lines to show balancing -->
  <path d="M125,120 L120,120 M115,120 L110,120" stroke="#000" stroke-width="1" />
  <path d="M175,120 L180,120 M185,120 L190,120" stroke="#000" stroke-width="1" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Canyon Background -->
  <rect x="0" y="0" width="300" height="300" fill="#b8e3f4" />
  <rect x="0" y="100" width="300" height="100" fill="#7f7f7f" />
  
  <!-- Tightrope -->
  <rect x="30" y="100" width="240" height="2" fill="#5c5c5c" />
  
  <!-- Unicycle -->
  <circle cx="150" cy="100" r="20" fill="#ffa500" />
  <line x1="150" y1="100" x2="150" y2="160" stroke="#5c5c5c" stroke-width="4" />
  
  <!-- Giraffe -->
  <!-- Body -->
  <rect x="130" y="60" width="40" height="50" fill="#d9a871" />
  <circle cx="150" cy="60" r="20" fill="#d9a871" />
  <!-- Neck -->
  <path d="M150,60 Q160,40 170,60 Q160,80 150,60" fill="#d9a871" />
  <!-- Head -->
  <circle cx="170" cy="60" r="10" fill="#d9a871" />
  <!-- Eyes -->
  <circle cx="168" cy="57" r="2" fill="black" />
  <!-- Mouth -->
  <path d="M172,62 Q175,65 178,62" fill="none" stroke="black" stroke-width="1" />
  
  <!-- Suit -->
  <rect x="140" y="80" width="20" height="15" fill="#343434" />
  <rect x="136" y="94" width="28" height="10" fill="#343434" />
  
</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 effectively captures the whimsy and complexity of the prompt with a giraffe in a suit balancing on a unicycle over a canyon.

    The inclusion of a colorful background and clouds adds depth and creativity, enhancing the visual appeal.

    In contrast, Player 2's image is more abstract and lacks the detail necessary to fully convey the scenario described in 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
58
Player 2
13
Rectangles

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

Player 1
6
Player 2
6
Circles

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

Player 1
7
Player 2
4
Ellipses

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

Player 1
9
Player 2
Lines

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
26
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
7

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
117
Player 2
5
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
5
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