Back

SVG Drawing Match #21

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing space boots on a trampoline made of jelly"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#7ed6df" />
  
  <!-- Jelly trampoline -->
  <ellipse cx="150" cy="200" rx="140" ry="80" fill="#ffcc00" />
  
  <!-- Giraffe body -->
  <rect x="130" y="120" width="40" height="80" fill="#ffcc00" />
  <!-- Giraffe spots -->
  <circle cx="145" cy="130" r="5" fill="#8e44ad" />
  <circle cx="160" cy="155" r="5" fill="#8e44ad" />
  
  <!-- Giraffe neck -->
  <rect x="140" y="100" width="20" height="60" fill="#ffcc00" />
  
  <!-- Giraffe head -->
  <rect x="132" y="90" width="35" height="20" fill="#ffcc00" />
  <!-- Giraffe ossicones -->
  <circle cx="150" cy="90" r="8" fill="#f368e0" />
  
  <!-- Giraffe eyes -->
  <circle cx="142" cy="96" r="2" fill="#2c3e50" />
  <circle cx="158" cy="96" r="2" fill="#2c3e50" />
  
  <!-- Space boots -->
  <path d="M140,200 h20 v10 q-10,10 -20,0 Z" fill="#f368e0" />
  
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient background -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
      <stop stop-color="#ff69b4" offset="0"/>
      <stop stop-color="#8a2be2" offset="1"/>
    </linearGradient>
    
    <!-- Jelly trampoline gradient -->
    <linearGradient id="jellyGradient" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#ffffff" stop-opacity="0.8" offset="0"/>
      <stop stop-color="#ffc0cb" stop-opacity="0.5" offset="1"/>
    </linearGradient>
    
    <!-- Giraffe fur texture -->
    <pattern id="giraffePattern" width="8" height="8" patternUnits="userSpaceOnUse">
      <rect width="8" height="8" fill="#f4a460"/>
      <path d="M0,0 L8,8 M0,8 L8,0" stroke="#e67e22" stroke-width="1"/>
    </pattern>
    
    <!-- Metallic gradient for space boots -->
    <linearGradient id="metalGradient" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#silver" offset="0"/>
      <stop stop-color="#gray" offset="1"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <!-- Jelly trampoline -->
  <path d="M100,200 Q150,180 200,200 Q250,220 300,200 L300,250 L0,250 L100,200" 
        fill="url(#jellyGradient)" opacity="0.8" blur="5px"/>
  
  <!-- Bouncing lines -->
  <path d="M150,200 M150,200 Q120,180 150,160 Q180,180 150,200" 
        stroke="#ffffff" stroke-width="2" opacity="0.6"/>
  
  <!-- Giraffe body -->
  <ellipse cx="150" cy="170" rx="40" ry="30" fill="url(#giraffePattern)"/>
  <!-- Giraffe neck -->
  <rect x="148" y="80" width="4" height="90" fill="#f4a460"/>
  <!-- Giraffe head -->
  <ellipse cx="150" cy="60" rx="15" ry="10" fill="#f4a460"/>
  <!-- Giraffe eyes -->
  <ellipse cx="135" cy="55" rx="2" ry="3" fill="#000"/>
  <ellipse cx="165" cy="55" rx="2" ry="3" fill="#000"/>
  
  <!-- Space boots -->
  <rect x="130" y="200" width="40" height="30" fill="url(#metalGradient)"/>
  <rect x="130" y="230" width="40" height="10" fill="#gold"/>
  <rect x="170" y="200" width="40" height="30" fill="url(#metalGradient)"/>
  <rect x="170" y="230" width="40" height="10" fill="#gold"/>
  
  <!-- Boot details -->
  <path d="M135,220 L145,230 L155,220" fill="#white"/>
  <path d="M175,220 L185,230 L195,220" fill="#white"/>
  
  <!-- Stars -->
  <path d="M50,50 L55,45 L60,50 L55,55 L50,50" fill="white"/>
  <path d="M250,50 L255,45 L260,50 L255,55 L250,50" fill="white"/>
  <path d="M150,20 L155,15 L160,20 L155,25 L150,20" fill="white"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image presents a more visually appealing and creative interpretation of the prompt.

    The use of a vibrant gradient background and the inclusion of stars adds a cosmic element that aligns well with the theme of 'space boots.' The giraffe's design is more detailed and the trampoline-like base is more defined, meeting the prompt requirements more effectively than Player 1's simpler and less distinct depiction.

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
11
Player 2
19
Rectangles

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

Player 1
4
Player 2
7
Circles

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

Player 1
5
Player 2
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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