Back

SVG Drawing Match #645

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe with a cityscape on its back, skyscrapers towering from its spots"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#F0F8FF"/>
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#F5CBA7"/>
      <stop offset="100%" stop-color="#D2B48C"/>
    </linearGradient>
    <linearGradient id="spotGradient" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0%" stop-color="#654321"/>
      <stop offset="100%" stop-color="#3E2723"/>
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0%" stop-color="#2E86C1"/>
      <stop offset="100%" stop-color="#1B4F72"/>
    </linearGradient>
    <pattern id="windowPattern" patternUnits="userSpaceOnUse" width="5" height="5">
      <rect width="5" height="5" fill="none"/>
      <circle cx="2.5" cy="2.5" r="0.5" fill="#FFD700"/>
    </pattern>
  </defs>

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

  <!-- Giraffe Body -->
  <ellipse cx="150" cy="220" rx="60" ry="40" fill="url(#giraffeGradient)" />

  <!-- Giraffe Neck -->
  <rect x="140" y="120" width="20" height="100" fill="url(#giraffeGradient)" rx="10" />

  <!-- Giraffe Head -->
  <ellipse cx="150" cy="100" rx="15" ry="20" fill="url(#giraffeGradient)" />
  <circle cx="145" cy="95" r="2" fill="#000" />
  <circle cx="155" cy="95" r="2" fill="#000" />
  <path d="M148,105 Q150,107 152,105" stroke="#000" stroke-width="1" fill="none" />

  <!-- Giraffe Legs -->
  <rect x="130" y="260" width="5" height="40" fill="url(#giraffeGradient)" />
  <rect x="165" y="260" width="5" height="40" fill="url(#giraffeGradient)" />

  <!-- Giraffe Spots with Skyscrapers -->
  <g>
    <!-- Spot 1 -->
    <ellipse cx="130" cy="200" rx="8" ry="5" fill="url(#spotGradient)" />
    <g transform="translate(126, 196)">
      <rect width="8" height="12" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.5"/>
      <rect width="8" height="12" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 2 -->
    <ellipse cx="160" cy="185" rx="6" ry="3.5" fill="url(#spotGradient)" />
    <g transform="translate(158, 183)">
      <rect width="4" height="8" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.3"/>
      <rect width="4" height="8" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 3 -->
    <ellipse cx="180" cy="210" rx="7" ry="4" fill="url(#spotGradient)" />
    <g transform="translate(176, 206)">
      <rect width="6" height="10" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.4"/>
      <rect width="6" height="10" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 4 -->
    <ellipse cx="120" cy="230" rx="5" ry="3" fill="url(#spotGradient)" />
    <g transform="translate(118, 228)">
      <rect width="4" height="6" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.2"/>
      <rect width="4" height="6" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 5 -->
    <ellipse cx="140" cy="175" rx="6" ry="3.5" fill="url(#spotGradient)" />
    <g transform="translate(138, 173)">
      <rect width="4" height="8" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.3"/>
      <rect width="4" height="8" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 6 -->
    <ellipse cx="170" cy="195" rx="7" ry="4" fill="url(#spotGradient)" />
    <g transform="translate(166, 191)">
      <rect width="6" height="10" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.4"/>
      <rect width="6" height="10" fill="url(#windowPattern)" opacity="0.6" />
    </g>
    <!-- Spot 7 -->
    <ellipse cx="150" cy="210" rx="5" ry="3" fill="url(#spotGradient)" />
    <g transform="translate(148, 208)">
      <rect width="4" height="6" fill="url(#buildingGradient)" stroke="#000" stroke-width="0.2"/>
      <rect width="4" height="6" fill="url(#windowPattern)" opacity="0.6" />
    </g>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient for the giraffe's body -->
  <defs>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: #F7C873; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FCA071; stop-opacity: 1" />
    </linearGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: #87CEEB; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #4682B4; stop-opacity: 1" />
    </linearGradient>
  </defs>

  <!-- Background sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Giraffe's neck and body -->
  <path d="M100 200 Q110 160, 120 120 L150 70 Q160 60, 165 50 Q155 40, 165 30 Q175 22, 185 35 Q195 50, 185 65 Q175 75, 170 85 L160 120 Q150 160, 140 200 Z" fill="url(#giraffeGradient)" />

  <!-- Giraffe's head -->
  <ellipse cx="175" cy="25" rx="10" ry="15" fill="#FCD5B5" />
  <ellipse cx="170" cy="20" rx="3" ry="5" fill="#7D5A4A" />
  <ellipse cx="180" cy="20" rx="3" ry="5" fill="#7D5A4A" />
  <path d="M170 33 Q175 30, 180 33" stroke="#7D5A4A" />

  <!-- Cityscape buildings -->
  <rect x="120" y="120" width="20" height="40" fill="#555" />
  <rect x="150" y="90" width="25" height="70" fill="#666" />
  <rect x="180" y="110" width="20" height="50" fill="#444" />

  <!-- Windows on skyscrapers -->
  <g fill="#FFF">
    <rect x="125" y="130" width="3" height="5" />
    <rect x="130" y="130" width="3" height="5" />
    <rect x="125" y="140" width="3" height="5" />
    <rect x="130" y="140" width="3" height="5" />
    
    <rect x="155" y="100" width="3" height="5" />
    <rect x="160" y="100" width="3" height="5" />
    <rect x="155" y="110" width="3" height="5" />
    <rect x="160" y="110" width="3" height="5" />
    
    <rect x="185" y="120" width="3" height="5" />
    <rect x="190" y="120" width="3" height="5" />
    <rect x="185" y="130" width="3" height="5" />
    <rect x="190" y="130" width="3" height="5" />
  </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 image more effectively captures the concept of a cityscape on a giraffe's back.

    The skyscrapers are clearly defined and integrated into the giraffe's form, enhancing the visual appeal and creativity.

    Player 1's image lacks clarity and coherence in representing the prompt, as the cityscape is not distinctly connected to the giraffe's spots.

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

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

Player 1
19
Player 2
16
Circles

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

Player 1
3
Player 2
Ellipses

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

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

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

Player 1
8
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
6

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
7
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
2
Player 2
13
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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