Back

SVG Drawing Match #186

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a tuxedo, standing on a skyscraper rooftop, sipping tea"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="tuxedoGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#000000"/>
      <stop offset="100%" stop-color="#222222"/>
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FFFF99"/>
      <stop offset="100%" stop-color="#FFCC00"/>
    </linearGradient>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </radialGradient>
  </defs>
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <!-- Skyscraper -->
  <rect x="120" y="150" width="60" height="150" fill="#8B0000" rx="10" ry="10"/>
  <!-- Giraffe -->
  <path d="M150,150 Q130,130 150,110 Q170,90 150,70 Q130,50 150,30" stroke="black" stroke-width="2" fill="url(#giraffeGradient)"/>
  <!-- Giraffe Head -->
  <circle cx="150" cy="30" r="15" fill="url(#giraffeGradient)"/>
  <!-- Giraffe Eyes -->
  <circle cx="145" cy="25" r="2" fill="black"/>
  <circle cx="155" cy="25" r="2" fill="black"/>
  <!-- Giraffe Nose -->
  <circle cx="150" cy="35" r="2" fill="black"/>
  <!-- Giraffe Spots -->
  <circle cx="145" cy="70" r="5" fill="black"/>
  <circle cx="155" cy="70" r="5" fill="black"/>
  <circle cx="145" cy="110" r="5" fill="black"/>
  <circle cx="155" cy="110" r="5" fill="black"/>
  <!-- Tuxedo -->
  <rect x="130" y="120" width="40" height="30" fill="url(#tuxedoGradient)"/>
  <rect x="140" y="130" width="20" height="20" fill="url(#tuxedoGradient)"/>
  <!-- Tuxedo Shirt -->
  <path d="M140,130 Q130,110 140,90 Q150,70 140,50 Q130,30 140,10" fill="white" stroke="black" stroke-width="1"/>
  <!-- Tuxedo Pants -->
  <path d="M130,150 Q120,130 130,110 Q140,90 130,70" stroke="black" stroke-width="1" fill="url(#tuxedoGradient)"/>
  <path d="M170,150 Q180,130 170,110 Q160,90 170,70" stroke="black" stroke-width="1" fill="url(#tuxedoGradient)"/>
  <!-- Tea Cup -->
  <circle cx="190" cy="30" r="10" fill="#FFD700"/>
  <circle cx="190" cy="35" r="5" fill="white"/>
  <circle cx="190" cy="45" r="3" fill="black"/>
  <!-- Giraffe Hand -->
  <path d="M160,30 Q170,25 180,30" fill="url(#giraffeGradient)"/>
  <!-- Giraffe Arm -->
  <path d="M150,50 Q160,40 170,30" stroke="black" stroke-width="1" fill="url(#giraffeGradient)"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" rx="10" />
  <linearGradient id="sunset" x1="0" y1="0" x2="1" y2="1">
    <stop offset="0" stop-color="#FFC107" />
    <stop offset="0.5" stop-color="#FF9800" />
    <stop offset="1" stop-color="#FF69B4" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="150" fill="url(#sunset)" rx="10" />
  
  <!-- Skyscraper -->
  <rect x="100" y="150" width="100" height="150" fill="#333" rx="10" />
  <rect x="110" y="160" width="80" height="10" fill="#666" rx="2" />
  <rect x="110" y="180" width="80" height="10" fill="#666" rx="2" />
  <rect x="110" y="200" width="80" height="10" fill="#666" rx="2" />
  <rect x="110" y="220" width="80" height="10" fill="#666" rx="2" />
  
  <!-- Giraffe -->
  <path d="M 180 80 L 220 120 L 180 160 L 140 120 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <path d="M 140 120 L 120 100 L 100 120 L 120 140 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <path d="M 220 120 L 240 100 L 260 120 L 240 140 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <circle cx="180" cy="100" r="20" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <circle cx="180" cy="60" r="10" fill="#000" />
  <path d="M 160 60 L 180 40 L 200 60 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  
  <!-- Tuxedo -->
  <rect x="160" y="100" width="40" height="20" fill="#000" rx="2" />
  <rect x="140" y="120" width="20" height="20" fill="#000" rx="2" />
  <rect x="220" y="120" width="20" height="20" fill="#000" rx="2" />
  <path d="M 160 140 L 180 160 L 200 140 Z" fill="#000" stroke="#000" stroke-width="2" />
  <circle cx="180" cy="140" r="5" fill="#FFF" stroke="#000" stroke-width="2" />
  
  <!-- Tea Cup -->
  <path d="M 240 80 L 260 60 L 280 80 L 260 100 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <circle cx="260" cy="80" r="10" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <path d="M 250 70 L 270 70 L 270 90 L 250 90 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  <path d="M 250 70 L 255 65 L 260 70 L 255 75 Z" fill="#F5F5DC" stroke="#000" stroke-width="2" />
  
  <!-- Steam -->
  <path d="M 260 60 L 250 50 L 240 60 L 250 70 Z" fill="#FFF" stroke="#000" stroke-width="2" opacity="0.5" />
  <path d="M 250 50 L 240 40 L 230 50 L 240 60 Z" fill="#FFF" stroke="#000" stroke-width="2" opacity="0.5" />
  <path d="M 240 40 L 230 30 L 220 40 L 230 50 Z" fill="#FFF" stroke="#000" stroke-width="2" opacity="0.5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission is more abstract but captures the essence of a giraffe wearing a tuxedo on a skyscraper better than Player 1's.

    The use of geometric shapes creatively suggests both the giraffe and the tuxedo, while the backdrop hints at a cityscape.

    Player 1's image is less recognizable and does not clearly convey the prompt's elements.

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
21
Player 2
25
Rectangles

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

Player 1
4
Player 2
10
Circles

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

Player 1
11
Player 2
4
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
9

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
18
Player 2
53
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
3
Player 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