Back

SVG Drawing Match #2538

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe painting the moon with a roller from atop a tall ladder."

SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#003566"/>
    </linearGradient>
    <radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffde7"/>
      <stop offset="100%" stop-color="#f5f3ce"/>
    </radialGradient>
    <linearGradient id="giraffeGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffeb3b"/>
      <stop offset="100%" stop-color="#fbc02d"/>
    </linearGradient>
  </defs>
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Stars -->
  <g fill="#fff">
    <circle cx="20" cy="40" r="1.5" opacity="0.8"/>
    <circle cx="80" cy="20" r="1"/>
    <circle cx="50" cy="90" r="1.2"/>
    <circle cx="200" cy="50" r="1.5"/>
    <circle cx="260" cy="30" r="1"/>
    <circle cx="180" cy="100" r="1.3"/>
    <circle cx="120" cy="60" r="1"/>
    <circle cx="240" cy="80" r="1.2"/>
  </g>
  <!-- Moon -->
  <g id="moon">
    <circle cx="240" cy="60" r="40" fill="url(#moonGrad)"/>
    <circle cx="250" cy="50" r="6" fill="#e0d9b5" opacity="0.7"/>
    <circle cx="230" cy="70" r="8" fill="#e0d9b5" opacity="0.5"/>
    <circle cx="220" cy="40" r="5" fill="#e0d9b5" opacity="0.6"/>
  </g>
  <!-- Ladder -->
  <g stroke="#8d6e63" stroke-width="4" stroke-linecap="round">
    <line x1="140" y1="260" x2="140" y2="150"/>
    <line x1="170" y1="260" x2="170" y2="150"/>
    <g stroke-width="3">
      <line x1="140" y1="260" x2="170" y2="260"/>
      <line x1="140" y1="245" x2="170" y2="245"/>
      <line x1="140" y1="230" x2="170" y2="230"/>
      <line x1="140" y1="215" x2="170" y2="215"/>
      <line x1="140" y1="200" x2="170" y2="200"/>
      <line x1="140" y1="185" x2="170" y2="185"/>
      <line x1="140" y1="170" x2="170" y2="170"/>
    </g>
  </g>
  <!-- Giraffe on Ladder -->
  <g transform="translate(145,130) rotate(-10)">
    <!-- Legs -->
    <rect x="-10" y="40" width="6" height="40" fill="url(#giraffeGrad)"/>
    <rect x="4" y="40" width="6" height="40" fill="url(#giraffeGrad)"/>
    <!-- Body -->
    <ellipse cx="0" cy="20" rx="24" ry="14" fill="url(#giraffeGrad)"/>
    <circle cx="-5" cy="15" r="4" fill="#795548"/>
    <circle cx="6" cy="10" r="3" fill="#6d4c41"/>
    <circle cx="0" cy="25" r="5" fill="#5d4037"/>
    <circle cx="10" cy="22" r="3" fill="#795548"/>
    <circle cx="-10" cy="25" r="2.5" fill="#6d4c41"/>
    <!-- Neck -->
    <rect x="-4" y="-20" width="8" height="40" rx="4" fill="url(#giraffeGrad)"/>
    <circle cx="0" cy="0" r="3" fill="#795548"/>
    <circle cx="0" cy="10" r="4" fill="#6d4c41"/>
    <!-- Head -->
    <ellipse cx="0" cy="-30" rx="10" ry="8" fill="url(#giraffeGrad)"/>
    <circle cx="-3" cy="-32" r="1.2" fill="#000"/>
    <circle cx="3" cy="-32" r="1.2" fill="#000"/>
    <circle cx="0" cy="-28" r="1" fill="#5d4037"/>
    <circle cx="-3" cy="-38" r="1.5" fill="#ffeb3b"/>
    <circle cx="3" cy="-38" r="1.5" fill="#ffeb3b"/>
    <path d="M-6,-34 l-4,-3 l1,6 z" fill="url(#giraffeGrad)"/>
    <path d="M6,-34 l4,-3 l-1,6 z" fill="url(#giraffeGrad)"/>
    <!-- Paint Roller -->
    <line x1="0" y1="-30" x2="45" y2="-60" stroke="#6d4c41" stroke-width="2"/>
    <rect x="45" y="-62" width="15" height="6" fill="#fff"/>
    <rect x="45" y="-59" width="15" height="3" fill="#ccc"/>
  </g>
  <!-- Paint Stroke on Moon -->
  <path d="M220,60 a40,40 0 0,1 22,-15" fill="none" stroke="#fff" stroke-width="5" stroke-linecap="round"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#4567b7" />
      <stop offset="50%" stop-color="#6495ed" />
      <stop offset="100%" stop-color="#87ceeb" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="50" fill="#ffffff" />
  <circle cx="250" cy="50" r="45" fill="none" stroke="#ffffff" stroke-width="5" />
  
  <!-- Ladder -->
  <rect x="100" y="150" width="20" height="120" fill="#964B00" />
  <rect x="90" y="120" width="40" height="20" fill="#964B00" />
  <rect x="90" y="100" width="40" height="20" fill="#964B00" />
  <rect x="90" y="80" width="40" height="20" fill="#964B00" />
  <rect x="90" y="60" width="40" height="20" fill="#964B00" />
  <rect x="90" y="40" width="40" height="20" fill="#964B00" />
  
  <!-- Giraffe -->
  <rect x="60" y="220" width="40" height="60" fill="#F5DEB3" rx="10" />
  <rect x="50" y="200" width="20" height="20" fill="#F5DEB3" rx="5" />
  <rect x="70" y="200" width="20" height="20" fill="#F5DEB3" rx="5" />
  <path d="M 60 240 L 80 260 L 100 240 Z" fill="#F5DEB3" />
  <circle cx="80" cy="230" r="10" fill="#F5DEB3" />
  
  <!-- Roller -->
  <rect x="80" y="100" width="20" height="10" fill="#6495ed" rx="2" />
  <rect x="80" y="90" width="10" height="10" fill="#6495ed" rx="2" />
  <path d="M 80 110 L 90 100 L 80 90 Z" fill="#6495ed" />
  
  <!-- Paint -->
  <path d="M 250 50 L 240 60 L 230 50 Z" fill="#87ceeb" />
  <path d="M 250 50 L 260 60 L 250 50 Z" fill="#87ceeb" />
  <path d="M 250 50 L 250 40 L 240 50 Z" fill="#87ceeb" />
  
  <!-- Additional details -->
  <circle cx="80" cy="220" r="5" fill="#000000" />
  <circle cx="250" cy="50" r="5" fill="#000000" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission is more visually appealing, creative, and adheres closely to the prompt, depicting a giraffe on a ladder painting the moon with a roller in a clear and charming manner.

    Player 2's submission is less detailed and abstract, making it harder to interpret the concept and connect with the intended idea of 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
45
Player 2
22
Rectangles

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

Player 1
6
Player 2
12
Circles

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
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
1
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
10
Player 2
20
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
3
Player 2
1
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