Back

SVG Drawing Match #492

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe with a city skyline as spots"

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="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f7dc6f" />
      <stop offset="100%" stop-color="#fff" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)" />

  <!-- Giraffe body -->
  <path d="M150,100 C150,50 200,50 200,100 S250,150 250,200 C250,250 200,250 200,200 S150,150 150,100"
        fill="#ffd700" stroke="#964B00" stroke-width="5" />

  <!-- City skyline spots -->
  <g>
    <rect x="50" y="120" width="20" height="20" fill="#4CAF50" />
    <path d="M70,140 L80,160 L70,180 L60,160 Z" fill="#4CAF50" />
    <rect x="100" y="90" width="30" height="30" fill="#8BC34A" />
    <path d="M130,110 L140,130 L130,150 L120,130 Z" fill="#8BC34A" />
    <rect x="180" y="60" width="25" height="25" fill="#FF9800" />
    <path d="M200,80 L210,100 L200,120 L190,100 Z" fill="#FF9800" />
    <rect x="220" y="120" width="20" height="20" fill="#2196F3" />
    <path d="M240,140 L250,160 L240,180 L230,160 Z" fill="#2196F3" />
  </g>

  <!-- Giraffe neck and head -->
  <path d="M150,200 C150,250 120,250 120,200 S90,150 90,100 C90,50 120,50 120,100"
        fill="#ffd700" stroke="#964B00" stroke-width="5" />
  <circle cx="120" cy="80" r="30" fill="#ffd700" stroke="#964B00" stroke-width="5" />

  <!-- Eyes and eyelashes -->
  <circle cx="105" cy="60" r="5" fill="#000" />
  <circle cx="135" cy="60" r="5" fill="#000" />
  <path d="M110,55 L120,60 L110,65" stroke="#000" stroke-width="2" />
  <path d="M140,55 L130,60 L140,65" stroke="#000" stroke-width="2" />

  <!-- Horns -->
  <path d="M100,70 L110,50 L120,70" fill="#ffd700" stroke="#964B00" stroke-width="5" />
  <path d="M140,70 L130,50 L120,70" fill="#ffd700" stroke="#964B00" stroke-width="5" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffcc80"/>
      <stop offset="100%" stop-color="#ff9800"/>
    </linearGradient>
    <pattern id="cityPattern" x="0" y="0" width="0.1" height="0.1" patternUnits="userSpaceOnUse">
      <rect width="60" height="60" fill="none"/>
      <rect x="10" y="30" width="10" height="30" fill="black"/>
      <rect x="25" y="20" width="10" height="40" fill="black"/>
      <rect x="40" y="10" width="10" height="50" fill="black"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="#cfe8e8"/>
  
  <ellipse cx="150" cy="250" rx="140" ry="50" fill="url(#giraffeGradient)"/>
  
  <path d="M170 200 Q190 170 200 100 T210 50" fill="none" stroke="url(#giraffeGradient)" stroke-width="10"/>
  <circle cx="210" cy="50" r="10" fill="url(#giraffeGradient)"/>
  
  <path d="M120 200 Q100 170 90 100 T80 50" fill="none" stroke="url(#giraffeGradient)" stroke-width="10"/>
  <circle cx="80" cy="50" r="10" fill="url(#giraffeGradient)"/>
  
  <polygon points="130,250 170,250 180,230 120,230" fill="url(#cityPattern)"/>
  
  <circle cx="140" cy="150" r="30" fill="url(#cityPattern)"/>
  <circle cx="90" cy="120" r="20" fill="url(#cityPattern)"/>
  <circle cx="200" cy="130" r="15" fill="url(#cityPattern)"/>
  
  <path d="M110 60 C120 45, 150 40, 190 45" fill="none" stroke="url(#giraffeGradient)" stroke-width="5"/>
  <circle cx="120" cy="60" r="5" fill="#000"/>
  <circle cx="180" cy="60" r="5" fill="#000"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's image creatively integrates the city skyline into the concept of a giraffe by using geometric shapes to represent both features.

    This aligns more closely with the prompt, showing a clearer interpretation of a giraffe with a city skyline as spots.

    Player 2's submission lacks clarity in depicting the theme and has less visual appeal and technical quality.

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
18
Player 2
17
Rectangles

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

Player 1
5
Player 2
5
Circles

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

Player 1
3
Player 2
7
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
Player 2
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
10
Player 2
3
Groups

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

Player 1
1
Player 2

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
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
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
5

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

Complexity Metrics

Path Commands

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

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