Back

SVG Drawing Match #2274

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two cats sword-fighting on a tightrope above a cityscape at sunset."

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunsetGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#ff7e5f; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#feb47b; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="catGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffe6e6; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffcccb; stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#sunsetGradient)" />
  <g transform="translate(0, 100)">
    <path d="M0 200 L300 200 L300 250 L0 250 Z" fill="#333" />
    <rect x="0" y="200" width="300" height="50" fill="black" />
  </g>
  <g>
    <g transform="translate(80, 150) scale(0.8)">
      <path d="M15 15 C25,5 40,5 50,15 C40,25 25,25 15,15 Z" fill="url(#catGradient)" />
      <path d="M20 20 L40 0" stroke="black" stroke-width="3" />
      <path d="M20 0 L40 20" stroke="black" stroke-width="3" />
    </g>
    <g transform="translate(220, 150) scale(0.8)">
      <path d="M15 15 C25,5 40,5 50,15 C40,25 25,25 15,15 Z" fill="url(#catGradient)" />
      <path d="M20 20 L40 0" stroke="black" stroke-width="3" />
      <path d="M20 0 L40 20" stroke="black" stroke-width="3" />
    </g>
  </g>
  <path d="M50,250 L250,250" stroke="#666" stroke-width="2" stroke-dasharray="5,5" />
  <g fill="#fff" font-size="10" font-family="Arial">
    <text x="10" y="30">Cityscape Silhouette</text>
    <text x="220" y="30">Sunset Duel</text>
  </g>
</svg>
SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="50%" stop-color="#fecfef"/>
      <stop offset="100%" stop-color="#a18cd1"/>
    </linearGradient>
    <linearGradient id="sunGradient" x1="0.5" y1="1" x2="0.5" y2="0">
      <stop offset="0%" stop-color="#ff5f6d"/>
      <stop offset="100%" stop-color="#ffc371"/>
    </linearGradient>
    <linearGradient id="metalGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ddd"/>
      <stop offset="50%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ccc"/>
    </linearGradient>
    <pattern id="ropePattern" patternUnits="userSpaceOnUse" width="8" height="8" patternTransform="rotate(45)">
      <rect width="4" height="8" fill="#ccc"/>
      <rect x="4" width="4" height="8" fill="#888"/>
    </pattern>
  </defs>

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

  <!-- Sun -->
  <circle cx="150" cy="260" r="40" fill="url(#sunGradient)"/>

  <!-- Cityscape -->
  <g>
    <rect x="0"   y="220" width="40"  height="80" fill="#2e2d5c"/>
    <rect x="50"  y="200" width="30"  height="100" fill="#3b3a6b"/>
    <rect x="90"  y="230" width="20"  height="70" fill="#1f1c42"/>
    <rect x="120" y="210" width="45"  height="90" fill="#2b284d"/>
    <rect x="175" y="240" width="25"  height="60" fill="#332f56"/>
    <rect x="205" y="225" width="35"  height="75" fill="#4b4980"/>
    <rect x="250" y="235" width="50"  height="65" fill="#3c3a72"/>
  </g>

  <!-- Tightrope -->
  <line x1="0" y1="180" x2="300" y2="180" stroke="url(#ropePattern)" stroke-width="5"/>

  <!-- Cat 1 -->
  <g transform="translate(120,180) scale(0.6) rotate(-15)">
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="#ffdbac" stroke="#5a463c" stroke-width="2"/>
    <circle cx="-35" cy="-15" r="12" fill="#ffdbac" stroke="#5a463c" stroke-width="2"/>
    <path d="M-45,-25 L-50,-40 L-35,-30 Z" fill="#ffdbac" stroke="#5a463c" stroke-width="2"/>
    <path d="M-25,-25 L-30,-40 L-15,-30 Z" fill="#ffdbac" stroke="#5a463c" stroke-width="2"/>
    <circle cx="-39" cy="-15" r="3" fill="#000"/>
    <circle cx="-30" cy="-15" r="3" fill="#000"/>
    <path d="M-35,-10 L-38,-8 L-32,-8 Z" fill="#e07a5f"/>
    <ellipse cx="-10" cy="18" rx="4" ry="10" fill="#ffdbac" stroke="#5a463c" stroke-width="2" transform="rotate(15 -10 18)"/>
    <ellipse cx="10" cy="18" rx="4" ry="10" fill="#ffdbac" stroke="#5a463c" stroke-width="2" transform="rotate(-15 10 18)"/>
    <path d="M15,0 C40,10 50,-20 30,-30" fill="none" stroke="#5a463c" stroke-width="4"/>
    <g transform="translate(0,-20) rotate(30)">
      <path d="M0,0 L0,-60" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round"/>
      <path d="M-10,0 L10,0" stroke="#333" stroke-width="6" stroke-linecap="round"/>
    </g>
  </g>

  <!-- Cat 2 -->
  <g transform="translate(180,180) scale(0.6) rotate(15)">
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2"/>
    <circle cx="35" cy="-15" r="12" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2"/>
    <path d="M25,-25 L20,-40 L35,-30 Z" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2"/>
    <path d="M45,-25 L40,-40 L55,-30 Z" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2"/>
    <circle cx="32" cy="-15" r="3" fill="#000"/>
    <circle cx="42" cy="-15" r="3" fill="#000"/>
    <path d="M35,-10 L32,-8 L38,-8 Z" fill="#ff6978"/>
    <ellipse cx="-10" cy="18" rx="4" ry="10" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2" transform="rotate(15 -10 18)"/>
    <ellipse cx="10" cy="18" rx="4" ry="10" fill="#a0c4ff" stroke="#3c6e71" stroke-width="2" transform="rotate(-15 10 18)"/>
    <path d="M-15,0 C-40,10 -50,-20 -30,-30" fill="none" stroke="#3c6e71" stroke-width="4"/>
    <g transform="translate(0,-20) rotate(-30)">
      <path d="M0,0 L0,-60" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round"/>
      <path d="M-10,0 L10,0" stroke="#333" stroke-width="6" stroke-linecap="round"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission closely adheres to the prompt by depicting two distinct cats on a tightrope above a cityscape at sunset, complete with swords and detailed visuals.

    It demonstrates greater creativity and technical quality compared to Player 1's minimalist and abstract approach, which does not clearly convey the concept of sword-fighting cats on a tightrope.

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
10
Player 2
36
Rectangles

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

Player 1
2
Player 2
10
Circles

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

Player 1
Player 2
7
Ellipses

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

Player 1
Player 2
6
Lines

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

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

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

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
19

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
24

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
3
Player 2
8

Complexity Metrics

Path Commands

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

Player 1
23
Player 2
36
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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