Back

SVG Drawing Match #120

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a top hat, balancing on a unicycle over a tightrope"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Tightrope -->
  <rect x="50" y="200" width="200" height="2" fill="none" stroke="url(#tightropeGradient)" stroke-width="4" />
  
  <!-- Left platform -->
  <rect x="20" y="180" width="30" height="20" fill="url(#woodPattern)" />
  <path d="M40 180 L45 185 L35 185 Z" fill="url(#woodPattern)" />
  
  <!-- Right platform -->
  <rect x="250" y="180" width="30" height="20" fill="url(#woodPattern)" />
  <path d="M260 180 L265 185 L255 185 Z" fill="url(#woodPattern)" />
  
  <!-- Stars -->
  <circle cx="50" cy="50" r="1" fill="white" stroke="white" stroke-width="0.5" />
  <circle cx="80" cy="80" r="1" fill="white" stroke="white" stroke-width="0.5" />
  <circle cx="110" cy="60" r="1" fill="white" stroke="white" stroke-width="0.5" />
  <circle cx="140" cy="40" r="1" fill="white" stroke="white" stroke-width="0.5" />
  <circle cx="170" cy="70" r="1" fill="white" stroke="white" stroke-width="0.5" />
  <circle cx="200" cy="90" r="1" fill="white" stroke="white" stroke-width="0.5" />
  
  <!-- Unicycle -->
  <circle cx="150" cy="200" r="10" fill="url(#wheelGradient)" stroke="#333" stroke-width="2" />
  <path d="M145 205 L155 205 M150 195 L150 205" stroke="#666" stroke-width="3" fill="none" />
  
  <!-- Giraffe body -->
  <path d="M150 190 Q160 170, 170 160 Q175 155, 180 155 Q185 155, 190 160 L190 160 L190 160 Q195 165, 190 170 Q185 170, 180 175 Q175 175, 170 180 Q165 180, 160 185 Q155 185, 150 185 L150 185" fill="#FFE4C4" stroke="#8B4513" stroke-width="2" />
  
  <!-- Giraffe neck and head -->
  <path d="M150 120 C160 110, 170 105, 175 100 C180 95, 185 95, 190 100 C195 105, 200 110, 205 120 C205 130, 200 140, 195 150 C190 155, 185 160, 180 165 C175 165, 170 160, 165 155 C160 150, 155 140, 150 130" fill="#FFE4C4" stroke="#8B4513" stroke-width="2" />
  <ellipse cx="175" cy="90" rx="8" ry="6" fill="#8B4513" />
  <ellipse cx="175" cy="90" rx="6" ry="4" fill="#8B4513" />
  <circle cx="172" cy="92" r="2" fill="#000" />
  <circle cx="178" cy="92" r="2" fill="#000" />
  
  <!-- Top hat -->
  <path d="M165 70 L175 70 L185 70 L180 60 L170 60 L165 70 Z" fill="#000" stroke="#000" stroke-width="2" />
  <path d="M165 70 L185 70" stroke="#8B4513" stroke-width="2" />
  <rect x="168" y="60" width="14" height="10" fill="#8B4513" />
  
  <!-- Giraffe spots -->
  <ellipse cx="160" cy="200" rx="3" ry="2" fill="#8B4513" />
  <ellipse cx="170" cy="195" rx="3" ry="2" fill="#8B4513" />
  <ellipse cx="180" cy="190" rx="3" ry="2" fill="#8B4513" />
  <ellipse cx="190" cy="185" rx="3" ry="2" fill="#8B4513" />
  <ellipse cx="200" cy="180" rx="3" ry="2" fill="#8B4513" />
  
  <!-- Gradients and Patterns -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
      <stop stop-color="#1a4377" offset="0" />
      <stop stop-color="#2196F3" offset="1" />
    </linearGradient>
    
    <linearGradient id="tightropeGradient" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FFD700" offset="0" />
      <stop stop-color="#FFA500" offset="1" />
    </linearGradient>
    
    <linearGradient id="wheelGradient" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FFD700" offset="0" />
      <stop stop-color="#FFA500" offset="1" />
    </linearGradient>
    
    <linearGradient id="woodPattern" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#8B4513" offset="0" />
      <stop stop-color="#DEB887" offset="1" />
    </linearGradient>
  </defs>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeSpots" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#EFAD45"/>
      <stop offset="100%" stop-color="#C4841a"/>
    </linearGradient>
    <pattern id="giraffePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect x="0" y="0" width="10" height="10" fill="url(#giraffeSpots)"/>
      <circle cx="5" cy="5" r="3" fill="#AF772C"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="#E0F7FA"/>
  <line x1="20" y1="280" x2="280" y2="280" stroke="#555" stroke-width="2" stroke-dasharray="5,5"/>
  <g transform="translate(140,230)">
    <ellipse cx="0" cy="-100" rx="20" ry="60" fill="url(#giraffePattern)"/>
    <rect x="-10" y="-175" width="20" height="10" fill="#222"/>
    <polygon points="-10,-175 10,-175 -10,-200" fill="#111"/>
    <ellipse cx="0" cy="-200" rx="10" ry="15" fill="#FFDF85"/>
    <circle cx="-4" cy="-205" r="2" fill="#000"/>
    <circle cx="4" cy="-205" r="2" fill="#000"/>
    <path d="M-7,-225 Q0,-245 7,-225" fill="none" stroke="#000" stroke-width="1.5"/>
    <line x1="0" y1="-140" x2="0" y2="0" stroke="#333" stroke-width="3"/>
    <circle cx="0" cy="0" r="20" fill="#777"/>
    <line x1="-15" y1="280" x2="15" y2="270" stroke="#000" stroke-width="2"/>
    <line x1="15" y1="280" x2="-15" y2="270" stroke="#000" stroke-width="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better captures the idea of a giraffe wearing a top hat and balancing on a unicycle over a tightrope.

    The image is clearer, with a more defined representation of the giraffe and the unicycle.

    The use of colors and composition enhances the overall visual appeal and successfully adheres to 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
28
Player 2
15
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
9
Player 2
4
Ellipses

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

Player 1
7
Player 2
2
Lines

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
11

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
1

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
2
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
4
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