Back

SVG Drawing Match #2756

May 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing roller skates on a tightrope under a starry 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="#1a1a40"/>
      <stop offset="100%" stop-color="#0d0d1a"/>
    </linearGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="white" stop-opacity="0"/>
    </radialGradient>
    <pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="4" r="1.2" fill="white" opacity="0.8"/>
      <circle cx="17" cy="12" r="0.8" fill="white" opacity="0.7"/>
      <circle cx="10" cy="18" r="1" fill="white" opacity="0.6"/>
      <circle cx="6" cy="14" r="0.7" fill="white" opacity="0.5"/>
    </pattern>
    <linearGradient id="giraffeGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#f9d976"/>
      <stop offset="100%" stop-color="#f39c12"/>
    </linearGradient>
    <pattern id="spots" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="#b5651d"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <!-- Sky background with stars -->
  <rect width="300" height="300" fill="url(#skyGrad)" />
  <rect width="300" height="300" fill="url(#stars)" />
  <!-- Moon -->
  <circle cx="240" cy="60" r="30" fill="#f0e8c8" filter="url(#glow)" />
  <!-- Tightrope -->
  <line x1="0" y1="220" x2="300" y2="200" stroke="#ddd" stroke-width="2"/>
  <!-- Giraffe group -->
  <g transform="translate(140,140) scale(1.2) rotate(-5)">
    <!-- Legs -->
    <rect x="-15" y="60" width="8" height="50" fill="url(#giraffeGrad)"/>
    <rect x="5" y="60" width="8" height="50" fill="url(#giraffeGrad)"/>
    <rect x="-15" y="60" width="8" height="50" fill="url(#giraffeGrad)" transform="translate(40,0)"/>
    <!-- Body -->
    <ellipse cx="0" cy="40" rx="30" ry="20" fill="url(#giraffeGrad)" />
    <ellipse cx="0" cy="40" rx="30" ry="20" fill="url(#spots)" />
    <!-- Neck -->
    <rect x="-8" y="-20" width="16" height="60" fill="url(#giraffeGrad)" />
    <rect x="-8" y="-20" width="16" height="60" fill="url(#spots)" />
    <!-- Head -->
    <g transform="translate(0,-40)">
      <ellipse cx="0" cy="0" rx="14" ry="10" fill="url(#giraffeGrad)"/>
      <ellipse cx="-5" cy="-2" rx="2" ry="2" fill="#000"/>
      <ellipse cx="5" cy="-2" rx="2" ry="2" fill="#000"/>
      <path d="M -4,4 Q 0,8 4,4" stroke="#000" stroke-width="1" fill="none"/>
      <!-- Horns -->
      <rect x="-6" y="-12" width="3" height="10" fill="url(#giraffeGrad)" />
      <rect x="3" y="-12" width="3" height="10" fill="url(#giraffeGrad)" />
    </g>
    <!-- Roller skates -->
    <g transform="translate(-10,105)">
      <rect x="0" y="0" width="10" height="6" fill="#e74c3c" stroke="#c0392b" stroke-width="1"/>
      <circle cx="3" cy="8" r="3" fill="#2c3e50"/>
      <circle cx="7" cy="8" r="3" fill="#2c3e50"/>
    </g>
    <g transform="translate(20,105)">
      <rect x="0" y="0" width="10" height="6" fill="#e74c3c" stroke="#c0392b" stroke-width="1"/>
      <circle cx="3" cy="8" r="3" fill="#2c3e50"/>
      <circle cx="7" cy="8" r="3" fill="#2c3e50"/>
    </g>
  </g>
  <!-- Star glows -->
  <circle cx="60" cy="40" r="4" fill="url(#starGlow)" />
  <circle cx="180" cy="80" r="3" fill="url(#starGlow)" />
  <circle cx="120" cy="20" r="5" fill="url(#starGlow)" />
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001848"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <linearGradient id="giraffeSpots" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#f8c94d"/>
      <stop offset="100%" stop-color="#e0a843"/>
    </linearGradient>
    <radialGradient id="skateGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF5F6D"/>
      <stop offset="100%" stop-color="#FFC371"/>
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="1" fill="white" />
    </pattern>
  </defs>

  <!-- Background: Starry Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" opacity="0.2"/>

  <!-- The Tightrope -->
  <path d="M20,150 Q150,120 280,150" stroke="#C0C0C0" stroke-width="2" fill="none" stroke-dasharray="4,4"/>
  
  <!-- The Giraffe -->
  <g transform="translate(140,85)">
    <!-- Giraffe body -->
    <ellipse cx="0" cy="30" rx="12" ry="20" fill="#F4D19B" stroke="#DAA520" stroke-width="0.5"/>
    <!-- Giraffe neck -->
    <rect x="-3" y="-40" width="6" height="80" fill="#F4D19B" stroke="#DAA520" stroke-width="0.5"/>
    <!-- Giraffe head -->
    <g transform="translate(0,-45)">
      <ellipse cx="0" cy="0" rx="8" ry="6" fill="#F4D19B" stroke="#DAA520" stroke-width="0.5"/>
      <!-- Giraffe ears -->
      <path d="M-5,-6 L-7,-12" stroke="#DAA520" stroke-width="1"/>
      <path d="M5,-6 L7,-12" stroke="#DAA520" stroke-width="1"/>
      <!-- Giraffe ossicones -->
      <ellipse cx="-3" cy="-9" rx="1.5" ry="3" fill="#8B5A2B"/>
      <ellipse cx="3" cy="-9" rx="1.5" ry="3" fill="#8B5A2B"/>
      <!-- Eye -->
      <circle cx="3" cy="-1" r="0.8" fill="black"/>
    </g>
    <!-- Giraffe spots -->
    <circle cx="0" cy="10" r="2" fill="url(#giraffeSpots)" />
    <circle cx="-4" cy="20" r="1.5" fill="url(#giraffeSpots)" />
    <circle cx="4" cy="20" r="1.5" fill="url(#giraffeSpots)" />
    <circle cx="-3" cy="0" r="1.2" fill="url(#giraffeSpots)" />
    <circle cx="3" cy="0" r="1.2" fill="url(#giraffeSpots)" />
    
    <!-- Roller Skates -->
    <g transform="translate(-15,30)">
      <!-- Left skate -->
      <rect x="0" y="0" width="8" height="3" fill="#444" rx="1"/>
      <circle cx="2" cy="6" r="2" fill="url(#skateGradient)" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="6" r="2" fill="url(#skateGradient)" stroke="#222" stroke-width="0.5"/>
    </g>
    <g transform="translate(7,30)">
      <!-- Right skate -->
      <rect x="0" y="0" width="8" height="3" fill="#444" rx="1"/>
      <circle cx="2" cy="6" r="2" fill="url(#skateGradient)" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="6" r="2" fill="url(#skateGradient)" stroke="#222" stroke-width="0.5"/>
    </g>
  </g>
  
  <!-- Additional stars for emphasis -->
  <circle cx="50" cy="40" r="1.2" fill="white"/>
  <circle cx="80" cy="70" r="1" fill="white"/>
  <circle cx="230" cy="60" r="1.5" fill="white"/>
  <circle cx="270" cy="90" r="1.2" fill="white"/>
  <circle cx="120" cy="20" r="1" fill="white"/>
  <circle cx="200" cy="30" r="1.3" fill="white"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission is more visually engaging and adheres better to the prompt, with a clear depiction of the giraffe wearing roller skates and balancing on a tightrope under a starry sky.

    The cheerful expression and the inclusion of the moon add to the creativity and appeal.

    Player 2's image, while technically clean, lacks dynamic composition and a strong sense of balance, making it less compelling overall.

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
31
Player 2
29
Rectangles

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

Player 1
11
Player 2
5
Circles

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

Player 1
13
Player 2
17
Ellipses

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

Player 1
5
Player 2
4
Lines

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

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

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
3
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
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
5
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
2
Player 2
6
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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