Back

SVG Drawing Match #1599

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Midnight cityscape from a cat's rooftop perspective"

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="#181D31" />
      <stop offset="100%" stop-color="#020617" />
    </linearGradient>
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="rgba(255,255,240,0.8)" />
      <stop offset="100%" stop-color="rgba(255,255,240,0)" />
    </radialGradient>
    <filter id="catVision">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" />
      <feColorMatrix type="matrix" values="1 0 0 0.1 0  0 1 0 0.2 0  0 0 1 0.1 0  0 0 0 1 0" />
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <circle cx="250" cy="50" r="20" fill="url(#moonGlow)" />
  <circle cx="250" cy="50" r="15" fill="#FFF9F0" />


  <path d="M0 250 L50 240 L80 260 L120 245 L150 270 L180 255 L220 280 L250 265 L300 290" fill="none" stroke="#333" stroke-width="5" filter="url(#catVision)" />

  <g filter="url(#catVision)">
    <rect x="40" y="150" width="30" height="80" fill="#222" />
    <rect x="90" y="120" width="40" height="110" fill="#333" />
    <rect x="140" y="170" width="20" height="60" fill="#222" />
    <rect x="180" y="100" width="60" height="130" fill="#333" />
    <rect x="250" y="140" width="30" height="90" fill="#222" />

    <polygon points="0 290, 10 250, 20 290" fill="#333" />
    <polygon points="30 285, 40 255, 50 285" fill="#333" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b3d91"/>
      <stop offset="100%" stop-color="#020111"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.8" cy="0.2" r="0.3" fx="0.8" fy="0.2">
      <stop offset="0%" stop-color="white" />
      <stop offset="100%" stop-color="lightgray" />
    </radialGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1e1e1e"/>
      <stop offset="100%" stop-color="#0a0a0a"/>
    </linearGradient>
    <pattern id="windowPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="2" height="2" fill="yellow"/>
      <rect x="2" y="2" width="2" height="2" fill="yellow"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="1.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

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

  <!-- Moon -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGradient)" filter="url(#glow)"/>

  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="50" cy="40" r="1.5"/>
    <circle cx="80" cy="70" r="1"/>
    <circle cx="120" cy="50" r="1.2"/>
    <circle cx="200" cy="90" r="1" />
    <circle cx="270" cy="60" r="1.5"/>
    <circle cx="220" cy="130" r="1"/>
    <circle cx="160" cy="70" r="1.3"/>
    <circle cx="100" cy="120" r="1"/>
    <circle cx="30" cy="200" r="1"/>
    <circle cx="250" cy="30" r="1.2"/>
    <circle cx="140" cy="180" r="1"/>
  </g>

  <!-- Buildings -->
  <g>
    <!-- Building 1 -->
    <rect x="20" y="130" width="40" height="170" fill="url(#buildingGradient)" />
    <!-- Windows for Building 1 -->
    <g fill="yellow" opacity="0.7">
      <rect x="25" y="140" width="5" height="5"/>
      <rect x="35" y="170" width="5" height="5"/>
      <rect x="25" y="200" width="5" height="5"/>
      <rect x="35" y="230" width="5" height="5"/>
    </g>

    <!-- Building 2 -->
    <rect x="80" y="110" width="50" height="190" fill="url(#buildingGradient)" />
    <!-- Windows for Building 2 -->
    <g fill="yellow" opacity="0.7">
      <rect x="85" y="120" width="5" height="5"/>
      <rect x="95" y="150" width="5" height="5"/>
      <rect x="105" y="180" width="5" height="5"/>
      <rect x="95" y="210" width="5" height="5"/>
      <rect x="85" y="240" width="5" height="5"/>
    </g>

    <!-- Building 3 -->
    <rect x="150" y="140" width="30" height="160" fill="url(#buildingGradient)" />
    <!-- Windows for Building 3 -->
    <g fill="yellow" opacity="0.7">
      <rect x="155" y="150" width="5" height="5"/>
      <rect x="165" y="180" width="5" height="5"/>
      <rect x="155" y="210" width="5" height="5"/>
    </g>

    <!-- Building 4 -->
    <rect x="200" y="100" width="40" height="200" fill="url(#buildingGradient)" />
    <!-- Windows for Building 4 -->
    <g fill="yellow" opacity="0.7">
      <rect x="205" y="110" width="5" height="5"/>
      <rect x="215" y="140" width="5" height="5"/>
      <rect x="225" y="170" width="5" height="5"/>
      <rect x="215" y="200" width="5" height="5"/>
      <rect x="205" y="230" width="5" height="5"/>
    </g>

    <!-- Building 5 -->
    <rect x="260" y="120" width="35" height="180" fill="url(#buildingGradient)" />
    <!-- Windows for Building 5 -->
    <g fill="yellow" opacity="0.7">
      <rect x="265" y="130" width="5" height="5"/>
      <rect x="275" y="160" width="5" height="5"/>
      <rect x="265" y="190" width="5" height="5"/>
      <rect x="275" y="220" width="5" height="5"/>
    </g>
  </g>

  <!-- Rooftop and Cat -->
  <g>
    <!-- Rooftop -->
    <polygon points="190,100 240,100 230,130 180,130" fill="#2c3e50" />
    <!-- Cat Body -->
    <path d="M210,120 Q215,115 220,120 Q225,125 220,130 Q215,135 210,130 Q205,125 210,120 Z" fill="#ecf0f1"/>
    <!-- Cat Ears -->
    <polygon points="210,120 212,118 214,120" fill="#ecf0f1"/>
    <polygon points="220,120 222,118 224,120" fill="#ecf0f1"/>
    <!-- Cat Eyes -->
    <circle cx="217" cy="123" r="1.5" fill="#2c3e50"/>
    <circle cx="213" cy="123" r="1.5" fill="#2c3e50"/>
    <!-- Tail -->
    <path d="M210,125 Q205,130 210,135" stroke="#ecf0f1" stroke-width="1" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image captures the essence of a 'Midnight cityscape from a cat's rooftop perspective' more effectively by including a cat and a detailed city skyline, enhancing the narrative and adding to the visual appeal.

    The use of lighting and stars adds depth and atmosphere, aligning well with the prompt.

    Player 1's image, while conceptually interesting, lacks these narrative and visual 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
11
Player 2
48
Rectangles

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

Player 1
6
Player 2
29
Circles

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
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
9
Player 2
8
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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