Back

SVG Drawing Match #2511

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe on roller skates delivering pizza under a sparkling night sky."

SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0a0130"/>
      <stop offset="100%" stop-color="#2b0054"/>
    </linearGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#fff" stop-opacity="0"/>
    </radialGradient>
    <pattern id="giraffeSpots" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="5" cy="5" r="4" fill="#a65e2e"/>
      <circle cx="15" cy="15" r="3" fill="#a65e2e"/>
    </pattern>
    <linearGradient id="boxGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#e84a47"/>
    </linearGradient>
    <filter id="sparkle" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Night sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Stars -->
  <g filter="url(#sparkle)">
    <circle cx="20" cy="30" r="1.8" fill="url(#starGlow)"/>
    <circle cx="80" cy="50" r="2.2" fill="url(#starGlow)"/>
    <circle cx="150" cy="20" r="1.5" fill="url(#starGlow)"/>
    <circle cx="230" cy="60" r="2" fill="url(#starGlow)"/>
    <circle cx="270" cy="120" r="1.2" fill="url(#starGlow)"/>
    <circle cx="50" cy="150" r="1.7" fill="url(#starGlow)"/>
    <circle cx="120" cy="100" r="2.5" fill="url(#starGlow)"/>
    <circle cx="200" cy="30" r="1.3" fill="url(#starGlow)"/>
  </g>

  <!-- Giraffe with roller skates -->
  <g transform="translate(60,180) scale(0.9)">
    <!-- Legs -->
    <g stroke="#333" stroke-width="1">
      <rect x="20" y="40" width="6" height="40" fill="#fdd77e"/>
      <rect x="40" y="40" width="6" height="40" fill="#fdd77e"/>
      <rect x="20" y="80" width="14" height="6" fill="#333"/>
      <circle cx="26" cy="86" r="4" fill="#555"/>
      <circle cx="48" cy="86" r="4" fill="#555"/>
    </g>
    <!-- Body -->
    <ellipse cx="40" cy="30" rx="30" ry="20" fill="#fdd77e" stroke="#333" stroke-width="1"/>
    <ellipse cx="40" cy="30" rx="30" ry="20" fill="url(#giraffeSpots)" opacity="0.6"/>
    <!-- Neck -->
    <rect x="35" y="-30" width="10" height="60" fill="#fdd77e" stroke="#333" stroke-width="1"/>
    <rect x="35" y="-30" width="10" height="60" fill="url(#giraffeSpots)" opacity="0.6"/>
    <!-- Head -->
    <g transform="translate(40,-40)">
      <circle cx="0" cy="0" r="12" fill="#fdd77e" stroke="#333" stroke-width="1"/>
      <circle cx="-4" cy="-2" r="2" fill="#333"/>
      <circle cx="4" cy="-2" r="2" fill="#333"/>
      <line x1="-3" y1="4" x2="3" y2="4" stroke="#333" stroke-linecap="round" stroke-width="1"/>
      <!-- Horns -->
      <line x1="-4" y1="-12" x2="-6" y2="-20" stroke="#333" stroke-width="2" stroke-linecap="round"/>
      <line x1="4" y1="-12" x2="6" y2="-20" stroke="#333" stroke-width="2" stroke-linecap="round"/>
      <!-- Ears -->
      <path d="M -8,-4 Q -12,-8 -10,-12" fill="#fdd77e" stroke="#333" stroke-width="1"/>
      <path d="M 8,-4 Q 12,-8 10,-12" fill="#fdd77e" stroke="#333" stroke-width="1"/>
    </g>
    <!-- Pizza box -->
    <g transform="translate(42,-10) rotate(20)">
      <rect width="24" height="14" fill="url(#boxGrad)" stroke="#a02a2a" stroke-width="1"/>
      <text x="12" y="9" font-family="Arial" font-size="6" fill="#fff" text-anchor="middle">PIZZA</text>
      <circle cx="6" cy="7" r="2.5" fill="#ffdb4d"/>
      <circle cx="18" cy="4" r="2" fill="#ffdb4d"/>
      <circle cx="16" cy="10" r="1.5" fill="#ffdb4d"/>
    </g>
  </g>

  <!-- Ground line -->
  <line x1="0" y1="220" x2="300" y2="220" stroke="#2a004d" stroke-width="4"/>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0B1B48"/>
      <stop offset="100%" style="stop-color:#1B3B8B"/>
    </linearGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:white;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:white;stop-opacity:0"/>
    </radialGradient>
    <pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse">
      <circle cx="15" cy="15" r="1" fill="white"/>
      <circle cx="5" cy="5" r="0.5" fill="white"/>
      <circle cx="25" cy="25" r="0.7" fill="white"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#stars)"/>
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="20" fill="#FFF5D6"/>
  <circle cx="240" cy="45" r="5" fill="#E5D5B5"/>
  
  <!-- Road -->
  <path d="M0 260 L300 260" stroke="#333" stroke-width="40"/>
  <path d="M20 260 L60 260 M100 260 L140 260 M180 260 L220 260 M260 260 L300 260" 
        stroke="white" stroke-width="4" stroke-dasharray="20,20"/>
  
  <!-- Giraffe Body -->
  <path d="M120 100 Q140 90 150 150 L160 220" fill="#FFD700" stroke="#CE9B1B" stroke-width="2"/>
  <path d="M150 150 L180 190" fill="#FFD700" stroke="#CE9B1B" stroke-width="15"/>
  <path d="M150 150 L120 190" fill="#FFD700" stroke="#CE9B1B" stroke-width="15"/>
  
  <!-- Giraffe Pattern -->
  <g fill="#B8860B">
    <circle cx="130" cy="110" r="8"/>
    <circle cx="150" cy="120" r="7"/>
    <circle cx="140" cy="140" r="6"/>
    <circle cx="160" cy="150" r="8"/>
    <circle cx="145" cy="170" r="7"/>
  </g>
  
  <!-- Giraffe Head -->
  <path d="M120 100 Q110 80 115 60 L120 40" fill="#FFD700" stroke="#CE9B1B" stroke-width="12"/>
  <circle cx="115" cy="35" r="10" fill="#FFD700" stroke="#CE9B1B" stroke-width="2"/>
  <circle cx="112" cy="33" r="2" fill="black"/>
  <path d="M115 35 L118 38 L120 35" fill="none" stroke="black" stroke-width="1"/>
  
  <!-- Pizza Box -->
  <rect x="140" y="130" width="40" height="40" fill="#FF4500" transform="rotate(-15,160,150)"/>
  <text x="150" y="155" fill="white" font-size="8" transform="rotate(-15,160,150)">PIZZA</text>
  
  <!-- Roller Skates -->
  <g transform="translate(120,240)">
    <rect width="25" height="10" fill="#4169E1"/>
    <circle cx="5" cy="10" r="5" fill="#A9A9A9"/>
    <circle cx="20" cy="10" r="5" fill="#A9A9A9"/>
  </g>
  <g transform="translate(180,240)">
    <rect width="25" height="10" fill="#4169E1"/>
    <circle cx="5" cy="10" r="5" fill="#A9A9A9"/>
    <circle cx="20" cy="10" r="5" fill="#A9A9A9"/>
  </g>
  
  <!-- Sparkles -->
  <g fill="url(#starGlow)">
    <circle cx="50" cy="50" r="2"/>
    <circle cx="200" cy="80" r="3"/>
    <circle cx="280" cy="120" r="2"/>
    <circle cx="150" cy="30" r="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission demonstrates better creativity and technical quality.

    The giraffe is actively skating on a road under a sparkling night sky, with expressive details and a dynamic posture.

    Player 1's submission, while adhering to the prompt, is simpler and lacks the same level of visual engagement and compositional strength.

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
33
Player 2
32
Rectangles

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

Player 1
7
Player 2
5
Circles

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

Player 1
18
Player 2
20
Ellipses

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

Player 1
2
Player 2
Lines

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
11

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

Complexity Metrics

Path Commands

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

Player 1
4
Player 2
23
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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

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