Back

SVG Drawing Match #1209

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe in a top hat juggling teacups in low-poly style"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="Gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,223,186);stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(255,192,203);stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="Gradient2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(118,74,188);stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(173,216,230);stop-opacity:1"/>
    </linearGradient>
  </defs>
  <polygon points="150,20 130,40 170,40" fill="url(#Gradient1)" />
  <polygon points="140,60 160,60 150,40" fill="url(#Gradient1)" />
  <polygon points="150,80 130,60 170,60" fill="url(#Gradient1)" />
  <polygon points="150,100 130,80 170,80" fill="url(#Gradient1)" />
  <circle cx="150" cy="150" r="70" fill="url(#Gradient2)" />
  <polygon points="80,200 220,200 150,100" fill="url(#Gradient2)" />
  <circle cx="110" cy="110" r="15" fill="url(#Gradient1)" />
  <circle cx="190" cy="110" r="15" fill="url(#Gradient1)" />
  <ellipse cx="150" cy="250" rx="40" ry="10" fill="url(#Gradient2)" />
  <path d="M140,220 Q150,240 160,220" fill="none" stroke="black" stroke-width="2" />
  <path d="M120,180 Q130,170 140,180 Q130,200 120,180" fill="url(#Gradient1)" />
  <path d="M160,180 Q170,170 180,180 Q170,200 160,180" fill="url(#Gradient1)" />
  <ellipse cx="90" cy="150" rx="15" ry="7" fill="url(#Gradient1)" />
  <ellipse cx="210" cy="150" rx="15" ry="7" fill="url(#Gradient1)" />
  <rect x="120" y="60" width="60" height="20" fill="black" />
  <rect x="130" y="40" width="40" height="20" fill="black" />
  <ellipse cx="150" cy="60" rx="20" ry="10" fill="black" />
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <style>
    .giraffe { fill: #FFD700; }
    .hat { fill: #000; }
    .teacup { fill: #FF69B4; }
    .pattern { patternUnits: userSpaceOnUse; }
  </style>
  <defs>
    <pattern id="hatPattern" x="0" y="0" width="20" height="20">
      <rect width="20" height="20" fill="#FFF" opacity="0.5"/>
      <path d="M0 0 L20 20" stroke="#000" stroke-width="2"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#87CEEB" />
  
  <!-- Giraffe Body -->
  <path class="giraffe" d="M150 180 L160 160 L170 180 L150 200 Z" />
  <path class="giraffe" d="M140 160 L150 140 L160 160 L140 180 Z" />
  
  <!-- Neck -->
  <rect x="145" y="120" width="10" height="40" fill="#FFD700" />
  
  <!-- Head -->
  <polygon class="giraffe" points="140,100 160,100 155,120" />
  
  <!-- Top Hat -->
  <rect class="hat" x="145" y="90" width="10" height="10" fill="url(#hatPattern)" />
  <path class="hat" d="M145 100 L155 100 L150 110" fill="url(#hatPattern)" />
  
  <!-- Legs -->
  <line x1="140" y1="200" x2="140" y2="250" stroke="#FFD700" stroke-width="5" />
  <line x1="160" y1="200" x2="160" y2="250" stroke="#FFD700" stroke-width="5" />
  
  <!-- Teacups -->
  <g transform="translate(100,150)">
    <path class="teacup" d="M0 0 L20 0 L25 10 L5 10 Z" />
    <circle cx="22.5" cy="5" r="2" fill="#FFF" />
  </g>
  <g transform="translate(200,150)">
    <path class="teacup" d="M0 0 L20 0 L25 10 L5 10 Z" />
    <circle cx="22.5" cy="5" r="2" fill="#FFF" />
  </g>
  <g transform="translate(150,120) rotate(45)">
    <path class="teacup" d="M0 0 L20 0 L25 10 L5 10 Z" />
    <circle cx="22.5" cy="5" r="2" fill="#FFF" />
  </g>
  
  <!-- Gradient Background -->
  <rect width="300" height="300">
    <animate attributeName="fill" from="#87CEEB" to="#E0F6FF" dur="2s" repeatCount="indefinite" />
  </rect>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission features a clear depiction of a giraffe wearing a top hat, juggling teacups, and successfully utilizes the low-poly style with distinct geometric shapes.

    Player 1's image, while colorful and abstract, does not clearly represent the concept of a giraffe, top hat, or teacups, making it less effective in adhering 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
17
Player 2
18
Rectangles

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

Player 1
2
Player 2
5
Circles

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

Player 1
3
Player 2
3
Ellipses

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

Player 1
4
Player 2
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
5
Player 2
1
Paths

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

Player 1
3
Player 2
7
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
4

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

Complexity Metrics

Path Commands

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

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