Back

SVG Drawing Match #272

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a constellation-patterned scarf under a starry sky"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky Background -->
  <rect width="300" height="300" fill="black" />
  <g id="stars">
    <!-- Define Star Shape -->
    <path id="star" d="M15 0l3 9h9l-7 5 3 9-8-5-8 5 3-9-7-5h9z" fill="white" />
    <!-- Randomly Scatter Stars -->
    <use xlink:href="#star" x="30" y="40" />
    <use xlink:href="#star" x="170" y="90" />
    <use xlink:href="#star" x="100" y="120" />
    <use xlink:href="#star" x="210" y="180" />
    <use xlink:href="#star" x="60" y="200" />
  </g>
  
  <!-- Giraffe -->
  <g id="giraffe">
    <!-- Giraffe Body -->
    <ellipse cx="150" cy="250" rx="45" ry="85" fill="sandybrown" />
    <!-- Giraffe Spots -->
    <circle cx="130" cy="230" r="10" fill="black" />
    <circle cx="160" cy="210" r="12" fill="black" />
    <circle cx="180" cy="240" r="15" fill="black" />
    
    <!-- Giraffe Neck -->
    <rect x="140" y="120" width="20" height="110" fill="sandybrown" />
    <!-- Giraffe Head -->
    <ellipse cx="150" cy="110" rx="30" ry="40" fill="sandybrown" />
    <!-- Giraffe Eyes -->
    <circle cx="135" cy="100" r="5" fill="black" />
    <circle cx="165" cy="100" r="5" fill="black" />
  </g>
  
  <!-- Constellation Patterned Scarf -->
  <path d="M100 100 Q125 130 150 100 Q175 130 200 100" fill="none" stroke="url(#gradient)" stroke-width="8" />
  <!-- Define Gradient for Scarf Pattern -->
  <linearGradient id="gradient" x1="0" y1="0" x2="1" y2="1">
    <stop offset="0%" stop-color="purple" />
    <stop offset="50%" stop-color="indigo" />
    <stop offset="100%" stop-color="purple" />
  </linearGradient>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Night Sky Gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="20%" r="80%">
      <stop offset="0%" stop-color="#0B0B45" />
      <stop offset="100%" stop-color="#020220" />
    </radialGradient>
    
    <!-- Constellation Pattern -->
    <pattern id="constellationPattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse">
      <rect width="80" height="80" fill="#25178E" />
      <circle cx="10" cy="10" r="1" fill="white" />
      <circle cx="20" cy="35" r="1.5" fill="white" />
      <circle cx="30" cy="15" r="1" fill="white" />
      <circle cx="40" cy="40" r="1.2" fill="white" />
      <circle cx="70" cy="25" r="1.8" fill="white" />
      <circle cx="50" cy="60" r="1" fill="white" />
      <circle cx="65" cy="70" r="1.3" fill="white" />
      <line x1="10" y1="10" x2="30" y2="15" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
      <line x1="30" y1="15" x2="70" y2="25" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
      <line x1="20" y1="35" x2="40" y2="40" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
      <line x1="40" y1="40" x2="50" y2="60" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
      <line x1="50" y1="60" x2="65" y2="70" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
    </pattern>
    
    <!-- Shimmering Star Filter -->
    <filter id="twinkle" x="-50%" y="-50%" width="200%" height="200%">
      <feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="noise" />
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="3" xChannelSelector="R" yChannelSelector="G" />
    </filter>
  </defs>

  <!-- Night Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g class="stars">
    <circle cx="30" cy="40" r="1.5" fill="white" />
    <circle cx="50" cy="20" r="2" fill="white" />
    <circle cx="80" cy="50" r="1" fill="white" />
    <circle cx="140" cy="30" r="1.8" fill="white" />
    <circle cx="180" cy="60" r="1.2" fill="white" />
    <circle cx="230" cy="25" r="2.2" fill="white" />
    <circle cx="260" cy="70" r="1.5" fill="white" />
    <circle cx="200" cy="35" r="1" fill="white" />
    <circle cx="120" cy="55" r="1.7" fill="white" />
    <circle cx="270" cy="40" r="1.3" fill="white" />
    <circle cx="100" cy="25" r="1.2" fill="white" />
    <circle cx="160" cy="15" r="1.5" fill="white" />
    <circle cx="220" cy="50" r="1" fill="white" />
    <circle cx="60" cy="30" r="1.4" fill="white" />
    
    <!-- Twinkling Stars with Filter -->
    <g filter="url(#twinkle)">
      <circle cx="25" cy="45" r="2" fill="white" opacity="0.9" />
      <circle cx="75" cy="25" r="2.5" fill="white" opacity="0.9" />
      <circle cx="125" cy="20" r="2.2" fill="white" opacity="0.9" />
      <circle cx="175" cy="30" r="2.8" fill="white" opacity="0.9" />
      <circle cx="225" cy="15" r="2.3" fill="white" opacity="0.9" />
      <circle cx="275" cy="35" r="2.5" fill="white" opacity="0.9" />
      <circle cx="150" cy="50" r="3" fill="white" opacity="0.9" />
    </g>
    
    <!-- Moon -->
    <circle cx="240" cy="60" r="18" fill="#FDF6C3" />
    <circle cx="232" cy="53" r="5" fill="#E6E0B3" />
    <circle cx="248" cy="65" r="4" fill="#E6E0B3" />
    <circle cx="240" cy="70" r="3" fill="#E6E0B3" />
  </g>
  
  <!-- Ground Silhouette -->
  <path d="M0,300 C50,280 80,285 120,275 C160,265 200,280 250,270 C280,265 300,270 300,280 L300,300 L0,300 Z" fill="#0A0A2A" />
  
  <!-- Giraffe Body -->
  <g transform="translate(120, 120)">
    <!-- Main Body and Neck -->
    <path d="M40,150 C50,130 55,110 55,90 C55,70 50,50 45,30 C40,10 35,-10 30,-30 C27,-40 20,-70 20,-90 C20,-95 25,-105 30,-110" 
          stroke="#DB9B45" stroke-width="22" fill="none" stroke-linecap="round" />
    
    <!-- Head -->
    <ellipse cx="34" cy="-114" rx="12" ry="18" fill="#DB9B45" />
    
    <!-- Legs -->
    <rect x="35" y="125" width="15" height="70" rx="5" fill="#DB9B45" />
    <rect x="45" y="125" width="15" height="70" rx="5" fill="#884E11" />
    <rect x="30" y="135" width="15" height="60" rx="5" fill="#DB9B45" />
    <rect x="20" y="135" width="15" height="60" rx="5" fill="#884E11" />
    
    <!-- Tail -->
    <path d="M43,145 C50,150 55,155 60,170" stroke="#DB9B45" stroke-width="4" fill="none" stroke-linecap="round" />
    <ellipse cx="60" cy="175" rx="3" ry="6" fill="#884E11" />
    
    <!-- Spots -->
    <circle cx="30" cy="-80" r="4" fill="#884E11" />
    <circle cx="40" cy="-65" r="5" fill="#884E11" />
    <circle cx="35" cy="-40" r="6" fill="#884E11" />
    <circle cx="45" cy="-20" r="4" fill="#884E11" />
    <circle cx="30" cy="0" r="5" fill="#884E11" />
    <circle cx="42" cy="20" r="6" fill="#884E11" />
    <circle cx="35" cy="40" r="5" fill="#884E11" />
    <circle cx="48" cy="60" r="4" fill="#884E11" />
    <circle cx="38" cy="80" r="5" fill="#884E11" />
    <circle cx="50" cy="100" r="4" fill="#884E11" />
    <circle cx="40" cy="120" r="3" fill="#884E11" />
    
    <!-- Face Details -->
    <circle cx="28" cy="-122" r="2" fill="#000000" /> <!-- Eye -->
    <circle cx="28" cy="-122" r="0.5" fill="white" /> <!-- Eye shine -->
    <ellipse cx="40" cy="-122" rx="2" ry="3" fill="#884E11" /> <!-- Ear -->
    <path d="M27,-112 C30,-110 34,-110 37,-112" stroke="#5D330A" stroke-width="1" fill="none" /> <!-- Smile -->
    
    <!-- Ossicones (horns) -->
    <path d="M30,-128 L28,-138" stroke="#DB9B45" stroke-width="3" fill="none" stroke-linecap="round" />
    <path d="M38,-128 L40,-138" stroke="#DB9B45" stroke-width="3" fill="none" stroke-linecap="round" />
    <circle cx="28" cy="-139" r="2" fill="#884E11" />
    <circle cx="40" cy="-139" r="2" fill="#884E11" />
    
    <!-- Constellation Scarf -->
    <path d="M25,-108 C15,-100 10,-90 15,-80 C20,-70 35,-65 45,-70 C55,-75 60,-85 55,-95 C50,-105 35,-108 25,-108 Z" 
          fill="url(#constellationPattern)" />
    <path d="M25,-108 C15,-100 10,-90 15,-80 C20,-70 35,-65 45,-70 C55,-75 60,-85 55,-95 C50,-105 35,-108 25,-108 Z" 
          stroke="#4B2D83" stroke-width="1" fill="none" />
    
    <!-- Tassels -->
    <path d="M15,-80 L5,-70" stroke="#4B2D83" stroke-width="2" stroke-linecap="round" />
    <path d="M45,-70 L55,-60" stroke="#4B2D83" stroke-width="2" stroke-linecap="round" />

    <!-- Extra Shimmering Stars on Scarf -->
    <circle cx="20" cy="-90" r="1" fill="white" opacity="0.9" />
    <circle cx="30" cy="-85" r="1.2" fill="white" opacity="0.9" />
    <circle cx="25" cy="-95" r="0.8" fill="white" opacity="0.9" />
    <circle cx="40" cy="-80" r="1" fill="white" opacity="0.9" />
    <circle cx="35" cy="-90" r="1.3" fill="white" opacity="0.9" />
  </g>
  
  <!-- Shooting Star -->
  <g>
    <path d="M200,20 L240,80" stroke="white" stroke-width="1.5" />
    <path d="M200,20 L240,80" stroke="white" stroke-width="3" opacity="0.4" filter="blur(2px)" />
    <circle cx="200" cy="20" r="2" fill="white" />
  </g>
  
  <!-- Small falling stars -->
  <path d="M100,100 L110,115" stroke="white" stroke-width="0.8" />
  <path d="M250,150 L260,165" stroke="white" stroke-width="0.8" />
</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 effectively captures the prompt with a whimsical and creative depiction of a giraffe's neck reaching into a starry sky.

    The constellation-patterned scarf is prominently featured, adding a playful element to the composition.

    The technical quality and visual appeal are strong, with a cohesive design and engaging use of color and shape.

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

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

Player 1
2
Player 2
6
Circles

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

Player 1
5
Player 2
53
Ellipses

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

Player 1
2
Player 2
3
Lines

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

Player 1
Player 2
5
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
2
Player 2
14
Groups

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

Player 1
2
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
13

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

Complexity Metrics

Path Commands

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

Player 1
9
Player 2
45
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
Player 2
3
Use Elements

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

Player 1
5
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