Back

SVG Drawing Match #1210

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat-shaped cityscape, geometric style"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient Definitions -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFD9E3" />
      <stop offset="100%" stop-color="#A1C4FD" />
    </linearGradient>
    <linearGradient id="sunsetGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#F6D365" />
      <stop offset="100%" stop-color="#FDA085" />
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#6DD5FA" />
      <stop offset="100%" stop-color="#2980B9" />
    </linearGradient>
  </defs>

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

  <!-- Cat Head Outline -->
  <path d="M50,150 Q25,40 150,0 Q275,40 250,150 Q250,250 150,250 Q50,250 50,150 Z" fill="url(#sunsetGradient)" />

  <!-- Cat Ears -->
  <polygon points="50,150 70,30 100,80" fill="url(#buildingGradient)" opacity="0.8" />
  <polygon points="250,150 230,30 200,80" fill="url(#buildingGradient)" opacity="0.8" />

  <!-- Geometric Buildings -->
  <rect x="70" y="170" width="30" height="50" fill="url(#buildingGradient)" opacity="0.9" />
  <rect x="110" y="140" width="40" height="80" fill="url(#buildingGradient)" opacity="0.8" />
  <rect x="160" y="160" width="30" height="60" fill="url(#buildingGradient)" opacity="0.85" />
  <rect x="200" y="180" width="40" height="40" fill="url(#buildingGradient)" opacity="0.8" />

  <!-- Geometric Windows -->
  <g fill="white" opacity="0.7">
    <circle cx="85" cy="190" r="3" />
    <circle cx="85" cy="210" r="3" />
    <circle cx="130" cy="160" r="4" />
    <circle cx="130" cy="180" r="4" />
    <circle cx="130" cy="200" r="4" />
    <circle cx="175" cy="180" r="3" />
    <circle cx="175" cy="200" r="3" />
    <circle cx="215" cy="190" r="4" />
    <circle cx="215" cy="210" r="4" />
  </g>

  <!-- Abstract Details -->
  <circle cx="150" cy="90" r="10" fill="url(#sunsetGradient)" opacity="0.7" />
  <path d="M150,100 L160,150 L140,150 Z" fill="url(#sunsetGradient)" opacity="0.5" transform="translate(0,-30)" />

  <!-- Base Shadow -->
  <ellipse cx="150" cy="260" rx="100" ry="15" fill="rgba(0, 0, 0, 0.2)" />
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#222" />
      <stop offset="100%" stop-color="#668" />
    </linearGradient>
    <pattern id="windowPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="3" height="3" fill="#ffe" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M50 150 A 70 70 0 0 1 250 150 L 230 210 A 20 40 0 0 0 70 210 Z" fill="#333" />
  <circle cx="70" cy="120" r="20" fill="#555" />
  <circle cx="230" cy="120" r="20" fill="#555" />
  <polygon points="130 90 170 90 150 50" fill="#f80" stroke="#c40" stroke-width="2"/>
  <rect x="80" y="160" width="40" height="50" fill="url(#windowPattern)" stroke="#444" stroke-width="1"/>
  <rect x="100" y="180" width="20" height="30" fill="url(#windowPattern)" stroke="#444" stroke-width="1"/>
  <rect x="180" y="160" width="40" height="50" fill="url(#windowPattern)" stroke="#444" stroke-width="1"/>
  <g transform="translate(90, 165) scale(0.15)">
    <path d="M100 100 A 50 50 0 0 1 100 200 A 50 50 0 0 1 100 100 Z" fill="#aaf"/>
  </g>
  <g transform="translate(190, 165) scale(0.15)">
    <path d="M100 100 A 25 50 0 0 1 100 200 A 50 25 0 0 1 100 100 Z" fill="#faa"/>
  </g>
  <ellipse cx="150" cy="250" rx="30" ry="15" fill="#444"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image creatively combines geometric shapes to form a clear representation of a cat-shaped cityscape, with a harmonious color gradient enhancing the visual appeal.

    The use of geometric forms to depict both the cat's face and buildings is well-executed, adhering closely to the prompt.

    Player 2's submission, while interesting, lacks the clarity and cohesion seen in Player 1's design.

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
20
Player 2
12
Rectangles

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

Player 1
5
Player 2
5
Circles

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

Player 1
10
Player 2
2
Ellipses

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

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

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

Player 1
2
Player 2
3
Groups

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
10

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
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
10
Player 2
13
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
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