Back

SVG Drawing Match #1297

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe in a trench coat playing saxophone under a streetlamp"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="linear-gradient(to bottom, #001f3f, #00a3e4)"/>

  <!-- Streetlamp -->
  <path d="M210,0 L210,250" stroke="#666" stroke-width="6"/>
  <ellipse cx="210" cy="20" rx="15" ry="10" fill="#999"/>
  
  <!-- Light from Streetlamp -->
  <polygon points="210,30 190,200 230,200" fill="url(#lightGradient)" opacity="0.7"/>
  <defs>
    <linearGradient id="lightGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" style="stop-color:rgb(255,255,153);stop-opacity:0.9"/>
      <stop offset="100%" style="stop-color:rgb(255,255,153);stop-opacity:0)"/>
    </linearGradient>
  </defs>

  <!-- Giraffe -->
  <g transform="translate(150, 160) rotate(-10)">
    <!-- Giraffe Head -->
    <path d="M0,0 Q-5,-20 0,-40 Q8,-48 20,-40 Q13,-28 20,-20 Q12,-7 0,0" fill="#D4A373" stroke="#8B5A2B" stroke-width="2"/>
    <!-- Giraffe Ears and Horns -->
    <path d="M0,-40 L-3,-48 L1,-51 L5,-48 L2,-40" fill="#D4A373" stroke="#8B5A2B" stroke-width="2"/>
    <!-- Eye -->
    <circle cx="12" cy="-30" r="2" fill="#000"/>

    <!-- Neck -->
    <rect x="-5" y="0" width="10" height="40" fill="#D4A373"/>
  </g>

  <!-- Trench Coat -->
  <path d="M140,80 Q150,140 130,200 L170,200 Q150,140 160,80" fill="#5D3FD3" stroke="#2B1E96" stroke-width="3"/>
  <path d="M130,200 Q150,260 160,200" fill="#4E21D6" stroke="#2B1E96" stroke-width="3"/>

  <!-- Saxophone -->
  <path d="M140,160 Q149,170 148,180 Q150,210 140,220 Q130,230 100,260" fill="gold" stroke="#ccac00" stroke-width="2"/>
  <rect x="145" y="168" width="6" height="10" fill="#FFF"/>
  <circle cx="104" cy="253" r="7" fill="#ccac00"/>

  <!-- Musical Notes -->
  <path d="M90,260 Q94,250 104,252 M90,270 L90,255" stroke="#fff" stroke-width="2"/>
  <path d="M110,280 Q114,270 124,272 M110,290 L110,275" stroke="#fff" stroke-width="2"/>
  <path d="M130,250 Q134,240 144,242 M130,260 L130,245" stroke="#fff" stroke-width="2"/>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="coatGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#4A90E2"/>
      <stop offset="1" stop-color="#87CEEB"/>
    </linearGradient>
    <radialGradient id="lampGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0" />
    </radialGradient>
  </defs>
  <!-- Streetlamp -->
  <rect x="125" y="50" width="50" height="200" fill="#777" />
  <circle cx="150" cy="150" r="25" fill="url(#lampGradient)" />
  <!-- Giraffe -->
  <path d="M150 150 Q160 160 160 180 Q160 200 140 210 Q120 220 120 200 Q120 180 140 170 Z" fill="#F4A460" />
  <rect x="135" y="180" width="30" height="20" fill="url(#coatGradient)" />
  <path d="M140 180 Q135 170 140 160 Q145 150 150 160 Q155 170 150 180 Z" fill="url(#coatGradient)" />
  <!-- Saxophone -->
  <path d="M140 210 Q135 220 130 230 Q125 240 120 230 Q115 220 120 210 Z" fill="#FF6347" />
  <path d="M140 210 Q145 220 150 230 Q155 240 160 230 Q165 220 160 210 Z" fill="#FF6347" />
  <path d="M120 210 Q125 220 130 230 Q135 240 140 230 Q145 220 140 210 Z" fill="#FF6347" />
  <path d="M160 210 Q155 220 150 230 Q145 240 140 230 Q135 220 140 210 Z" fill="#FF6347" />
  <!-- Patterns and Decorations -->
  <pattern id="spots" patternUnits="userSpaceOnUse" width="10" height="10">
    <circle cx="5" cy="5" r="2" fill="#FFFFFF" />
  </pattern>
  <rect x="125" y="160" width="50" height="50" fill="url(#spots)" />
  <circle cx="150" cy="170" r="10" fill="#000" />
  <circle cx="150" cy="170" r="5" fill="#FFF" />
  <!-- Background -->
  <rect width="300" height="300" fill="#333" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is No winner No winner declared

Judge's Analysis

    Failed to determine a winner: API connection error: Recv failure: Connection was reset

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
16
Player 2
14
Rectangles

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

Player 1
3
Player 2
4
Circles

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

Player 1
2
Player 2
4
Ellipses

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

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

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

Player 1
9
Player 2
6
Groups

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
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
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
34
Player 2
31
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
1
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