Back

SVG Drawing Match #1466

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Umbrella with wings flying over a city skyline"

SVG by o3-mini low (2025-01-31)
<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="#1e3c72"/>
      <stop offset="100%" stop-color="#2a5298"/>
    </linearGradient>
    <linearGradient id="umbrellaGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <pattern id="wingPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#ffffff" opacity="0.5"/>
    </pattern>
  </defs>
  
  <!-- Background sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- City Skyline -->
  <g id="city">
    <rect x="0" y="240" width="40" height="60" fill="#2c3e50"/>
    <rect x="50" y="220" width="30" height="80" fill="#34495e"/>
    <rect x="90" y="230" width="50" height="70" fill="#2c3e50"/>
    <rect x="150" y="210" width="40" height="90" fill="#34495e"/>
    <rect x="200" y="225" width="30" height="75" fill="#2c3e50"/>
    <rect x="240" y="215" width="40" height="85" fill="#34495e"/>
    <!-- Details on buildings -->
    <line x1="10" y1="250" x2="10" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="30" y1="250" x2="30" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="55" y1="230" x2="55" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="70" y1="230" x2="70" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="95" y1="240" x2="95" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="115" y1="240" x2="115" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="170" y1="220" x2="170" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="190" y1="220" x2="190" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="205" y1="235" x2="205" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="220" y1="235" x2="220" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="245" y1="225" x2="245" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
    <line x1="265" y1="225" x2="265" y2="300" stroke="#7f8c8d" stroke-width="0.5"/>
  </g>
  
  <!-- Umbrella -->
  <g id="umbrella" transform="translate(150,150)">
    <!-- Umbrella canopy with gradient -->
    <path d="M -70 0 A 70 70 0 0 1 70 0 Q 0 50 -70 0" fill="url(#umbrellaGradient)" stroke="#e74c3c" stroke-width="2"/>
    <!-- Umbrella ribs -->
    <line x1="0" y1="0" x2="-60" y2="-10" stroke="#c0392b" stroke-width="2"/>
    <line x1="0" y1="0" x2="-35" y2="-40" stroke="#c0392b" stroke-width="2"/>
    <line x1="0" y1="0" x2="35" y2="-40" stroke="#c0392b" stroke-width="2"/>
    <line x1="0" y1="0" x2="60" y2="-10" stroke="#c0392b" stroke-width="2"/>
    
    <!-- Umbrella central pole -->
    <line x1="0" y1="0" x2="0" y2="60" stroke="#7f8c8d" stroke-width="4"/>
    
    <!-- Wings attached to the umbrella -->
    <g id="wings">
      <!-- Left Wing -->
      <path d="M -20 10 C -70 -30, -70 -70, -20 -50 C -10 -45, -10 -15, -20 10" fill="url(#wingPattern)" stroke="#ecf0f1" stroke-width="1"/>
      <!-- Right Wing -->
      <path d="M 20 10 C 70 -30, 70 -70, 20 -50 C 10 -45, 10 -15, 20 10" fill="url(#wingPattern)" stroke="#ecf0f1" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Clouds for additional atmosphere -->
  <g id="clouds" opacity="0.8">
    <ellipse cx="80" cy="60" rx="30" ry="15" fill="#ecf0f1"/>
    <ellipse cx="100" cy="50" rx="25" ry="12" fill="#ecf0f1"/>
    <ellipse cx="220" cy="80" rx="35" ry="18" fill="#ecf0f1"/>
    <ellipse cx="240" cy="70" rx="30" ry="15" fill="#ecf0f1"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#1a73e8" />
      <stop offset="100%" stop-color="#0b35ba" />
    </linearGradient>
    <linearGradient id="umbrellaGradient" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0%" stop-color="#ff99cc" />
      <stop offset="100%" stop-color="#ff66b3" />
    </linearGradient>
    <filter id="shadow">
      <feDropShadow dx="0" dy="5" stdDeviation="3" flood-color="#00000080" />
    </filter>
  </defs>

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

  <!-- City skyline -->
  <g transform="translate(0,200)">
    <!-- Buildings -->
    <path d="M20,0 L40,0 L35,100 L25,100 L20,0" fill="#444" />
    <path d="M60,0 L80,0 L75,80 L65,80 L60,0" fill="#444" />
    <path d="M100,0 L120,0 L115,120 L105,120 L100,0" fill="#444" />
    <!-- Windows -->
    <rect x="22" y="20" width="6" height="6" fill="#fff" />
    <rect x="28" y="20" width="6" height="6" fill="#fff" />
    <rect x="22" y="40" width="6" height="6" fill="#fff" />
    <rect x="28" y="40" width="6" height="6" fill="#fff" />
  </g>

  <!-- Birds -->
  <path d="M50,100 L55,95 L60,100 L65,95 L70,100" fill="#666" transform="scale(0.5)" />
  <path d="M200,150 L205,145 L210,150 L215,145 L220,150" fill="#666" transform="scale(0.5)" />

  <!-- Umbrella with wings -->
  <g transform="translate(150,150)">
    <!-- Umbrella canopy -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#umbrellaGradient)" />
    <!-- Umbrella ribs -->
    <path d="M0,0 L-30,20" stroke="#333" stroke-width="2" />
    <path d="M0,0 L-15,40" stroke="#333" stroke-width="2" />
    <path d="M0,0 L30,20" stroke="#333" stroke-width="2" />
    <path d="M0,0 L15,40" stroke="#333" stroke-width="2" />
    <!-- Umbrella handle -->
    <rect x="-5" y="40" width="10" height="20" fill="#666" />
    <!-- Wings -->
    <path d="M-50,-20 Q-25,-40 0,-50 L0,-20 L-50,-20" fill="#fff" stroke="#666" stroke-width="2" transform="rotate(45)" />
    <path d="M50,-20 Q25,-40 0,-50 L0,-20 L50,-20" fill="#fff" stroke="#666" stroke-width="2" transform="rotate(-45)" />
  </g>

  <!-- Motion lines -->
  <path d="M140,140 Q150,130 160,140" stroke="#fff" stroke-width="2" opacity="0.5" />
  <path d="M160,140 Q170,130 180,140" stroke="#fff" stroke-width="2" opacity="0.5" />
  <path d="M140,160 Q150,170 160,160" stroke="#fff" stroke-width="2" opacity="0.5" />
  <path d="M160,160 Q170,170 180,160" stroke="#fff" stroke-width="2" opacity="0.5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image effectively captures the prompt with an umbrella that is visually integrated with wings, clearly flying over a city skyline.

    The design is clean and the composition is balanced, making it visually appealing.

    In contrast, Player 2's image is less coherent, with the elements not as clearly defined, leading to a less effective representation of the prompt.

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
22
Rectangles

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

Player 1
7
Player 2
6
Circles

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

Player 1
1
Player 2
Ellipses

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

Player 1
4
Player 2
1
Lines

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

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

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
20
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
8

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
6

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