Back

SVG Drawing Match #1891

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing roller skates juggling flaming torches"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="giraffe-fur" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffd700" />
      <stop offset="50%" stop-color="#ff9900" />
      <stop offset="100%" stop-color="#ffd700" />
    </linearGradient>
    <linearGradient id="flame" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="50%" stop-color="#ffa500" />
      <stop offset="100%" stop-color="#ff0000" />
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
  
  <!-- Giraffe body -->
  <path d="M 100,150 Q 120,100 150,150 Q 180,100 200,150" fill="url(#giraffe-fur)" stroke="#000" stroke-width="2" />
  <circle cx="150" cy="50" r="30" fill="url(#giraffe-fur)" />
  <circle cx="150" cy="250" r="30" fill="url(#giraffe-fur)" />
  
  <!-- Roller skates -->
  <rect x="70" y="250" width="80" height="20" fill="#000" rx="10" />
  <rect x="150" y="250" width="80" height="20" fill="#000" rx="10" />
  <circle cx="90" cy="275" r="10" fill="#ccc" />
  <circle cx="210" cy="275" r="10" fill="#ccc" />
  
  <!-- Legs -->
  <path d="M 120,250 Q 130,280 150,250" stroke="#000" stroke-width="4" />
  <path d="M 180,250 Q 190,280 210,250" stroke="#000" stroke-width="4" />
  
  <!-- Torches -->
  <rect x="0" y="50" width="10" height="100" fill="#ccc" />
  <rect x="290" y="50" width="10" height="100" fill="#ccc" />
  <rect x="100" y="0" width="10" height="100" fill="#ccc" />
  
  <!-- Flames -->
  <path d="M 5,150 Q 10,180 5,200" fill="url(#flame)" />
  <path d="M 295,150 Q 290,180 295,200" fill="url(#flame)" />
  <path d="M 105,50 Q 110,80 105,100" fill="url(#flame)" />
  
  <!-- Face -->
  <circle cx="150" cy="60" r="20" fill="#ffffff" stroke="#000" stroke-width="2" />
  <circle cx="135" cy="50" r="5" fill="#000" />
  <circle cx="165" cy="50" r="5" fill="#000" />
  <path d="M 150,70 Q 160,80 170,70" stroke="#000" stroke-width="2" />
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffe-spots" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#BF9765" />
      <stop offset="50%" stop-color="#D9B88C" />
      <stop offset="100%" stop-color="#BF9765" />
    </linearGradient>
    <radialGradient id="fire-glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="70%" stop-color="#FFA500" />
      <stop offset="100%" stop-color="#FF4500" />
    </radialGradient>
  </defs>

  <rect width="300" height="300" fill="#67C587" />

  <ellipse cx="150" cy="250" rx="20" ry="10" fill="#808080" />
  <ellipse cx="220" cy="250" rx="20" ry="10" fill="#808080" />


  <path d="M130 100 c-20 20 -20 50 0 70 l10 -20 c15 10 35 10 50 0 l10 20 c-20 -20 -20 -50 0 -70z" fill="url(#giraffe-spots)" />
  <rect x="140" y="170" width="20" height="80" fill="url(#giraffe-spots)" rx="5"/>
  <circle cx="150" y="70" r="30" fill="#BF9765" />


  <ellipse cx="90" cy="80" rx="5" ry="8" fill="black"/>
  <ellipse cx="110" cy="80" rx="5" ry="8" fill="black"/>

  <path d="M180 120 c-15 30 -15 65 0 95" stroke="#BF9765" stroke-width="10" stroke-linecap="round"/>

  <ellipse cx="250" cy="80" rx="15" ry="20" fill="url(#fire-glow)"/>
  <ellipse cx="70" cy="100" rx="15" ry="20" fill="url(#fire-glow)" transform="rotate(20 70 100)"/>
  <path d="M250 100 c-5 10 -10 20 -15 30" stroke="#FF4500" stroke-width="4" stroke-linecap="round"/>
  <path d="M70 120 c5 10 10 20 15 30" stroke="#FF4500" stroke-width="4" stroke-linecap="round" transform="rotate(20 70 100)"/>



</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt, as it provides a clearer representation of a giraffe with distinct features.

    The inclusion of flaming torches being juggled adds to the creativity and visual appeal, despite the simplicity of the design.

    Player 1's image lacks recognizable elements that align with the idea, making Player 2's submission more effective 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
20
Player 2
13
Rectangles

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

Player 1
6
Player 2
2
Circles

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

Player 1
7
Player 2
1
Ellipses

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

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

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

Player 1
7
Player 2
4
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
8

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
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
15
Player 2
13
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
2
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