Back

SVG Drawing Match #2408

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An owl wearing a spacesuit, floating in zero gravity with a glowing moon behind."

SVG by Gemini 2.5 Flash Preview High 04-17
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFFFE0;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:0.8" />
    </radialGradient>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0A1F35;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#330033;stop-opacity:1" />
    </linearGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="0.5" fill="#FFFFFF" />
      <circle cx="8" cy="5" r="0.3" fill="#EEEEEE" />
      <circle cx="4" cy="9" r="0.4" fill="#DDDDDD" />
      <circle cx="6" cy="2" r="0.2" fill="#CCCCCC" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#spaceGradient)" />
  <rect width="100%" height="100%" fill="url(#stars)" />
  <circle cx="200" cy="150" r="80" fill="url(#moonGradient)" filter="url(#glow)" />
  <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
    <feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
    <feMerge>
      <feMergeNode in="blur" />
      <feMergeNode in="SourceGraphic" />
    </feMerge>
  </filter>

  <g id="owl" transform="translate(100, 150) rotate(10)">
    <path d="M -20 -30 C -40 -50 -50 -80 -30 -90 C -10 -100 10 -100 30 -90 C 50 -80 40 -50 20 -30 Z" fill="#C0C0C0" stroke="#808080" stroke-width="3" /> <!-- Helmet glass -->
    <circle cx="0" cy="-70" r="25" fill="#E0E0E0" stroke="#A0A0A0" stroke-width="3" /> <!-- Helmet base -->
    <circle cx="-10" cy="-75" r="5" fill="#333333" /> <!-- Left eye -->
    <circle cx="10" cy="-75" r="5" fill="#333333" /> <!-- Right eye -->
    <path d="M -5 -60 C 0 -55 5 -60" stroke="#333333" stroke-width="2" fill="none" /> <!-- Beak -->

    <path d="M 0 -50 Q 20 -20 0 0 Q -20 -20 0 -50 Z" fill="#E0E0E0" stroke="#A0A0A0" stroke-width="3" /> <!-- Body -->

    <path d="M -20 -30 C -30 -10 -40 10 -20 20 L -10 10 L -20 -30 Z" fill="#C0C0C0" stroke="#808080" stroke-width="3" /> <!-- Left wing/arm -->
    <path d="M 20 -30 C 30 -10 40 10 20 20 L 10 10 L 20 -30 Z" fill="#C0C0C0" stroke="#808080" stroke-width="3" /> <!-- Right wing/arm -->

    <circle cx="-10" cy="15" r="8" fill="#E0E0E0" stroke="#A0A0A0" stroke-width="2" /> <!-- Left foot -->
    <circle cx="10" cy="15" r="8" fill="#E0E0E0" stroke="#A0A0A0" stroke-width="2" /> <!-- Right foot -->

    <circle cx="-25" cy="-65" r="3" fill="#FF0000" /> <!-- Red detail -->
    <circle cx="25" cy="-65" r="3" fill="#0000FF" /> <!-- Blue detail -->
  </g>
</svg>
SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGrad" fx="50%" fy="50%" r="75%">
      <stop offset="0%" stop-color="#001028"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFCC"/>
      <stop offset="60%" stop-color="#CCCC99"/>
      <stop offset="100%" stop-color="#888866"/>
    </radialGradient>
    <filter id="moonGlow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="8" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <radialGradient id="visorGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#c8e6ff" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#005078" stop-opacity="0.1"/>
    </radialGradient>
  </defs>

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

  <!-- Stars -->
  <circle cx="20" cy="30" r="1.2" fill="#fff"/>
  <circle cx="260" cy="50" r="1.5" fill="#fff"/>
  <circle cx="100" cy="80" r="0.8" fill="#fff"/>
  <circle cx="180" cy="20" r="1.1" fill="#fff"/>
  <circle cx="50" cy="200" r="1.3" fill="#fff"/>
  <circle cx="280" cy="250" r="1" fill="#fff"/>
  <circle cx="130" cy="170" r="0.9" fill="#fff"/>
  <circle cx="220" cy="140" r="1.4" fill="#fff"/>
  <circle cx="160" cy="260" r="1.2" fill="#fff"/>
  <circle cx="75" cy="120" r="1" fill="#fff"/>

  <!-- Moon -->
  <circle cx="220" cy="80" r="60" fill="url(#moonGrad)" filter="url(#moonGlow)"/>

  <!-- Owl in Spacesuit -->
  <g transform="translate(150,160) rotate(-10)">
    <!-- Helmet rim -->
    <circle cx="0" cy="0" r="55" fill="none" stroke="#ccc" stroke-width="6"/>
    <!-- Visor -->
    <circle cx="0" cy="0" r="50" fill="url(#visorGrad)"/>

    <!-- Owl head -->
    <circle cx="0" cy="0" r="45" fill="#5a3e2b"/>

    <!-- Eyes -->
    <circle cx="-15" cy="-5" r="8" fill="#fff" stroke="#000" stroke-width="1"/>
    <circle cx="-15" cy="-5" r="4" fill="#ff0"/>
    <circle cx="15" cy="-5" r="8" fill="#fff" stroke="#000" stroke-width="1"/>
    <circle cx="15" cy="-5" r="4" fill="#ff0"/>

    <!-- Beak -->
    <polygon points="0,5 -5,15 5,15" fill="#f59e42"/>

    <!-- Body -->
    <g transform="translate(0,70)">
      <path d="M-30,0 Q0,80 30,0 Z" fill="#fff" stroke="#ccc" stroke-width="3"/>
      <!-- Suit stripes -->
      <path d="M-25,10 L25,10" stroke="#0cf" stroke-width="4"/>
      <path d="M-20,30 L20,30" stroke="#f90" stroke-width="3"/>
    </g>

    <!-- Left arm -->
    <path d="M-30,80 C-60,100 -60,130 -30,140" fill="none" stroke="#ccc" stroke-width="6"/>
    <!-- Right arm -->
    <path d="M30,80 C60,100 60,130 30,140" fill="none" stroke="#ccc" stroke-width="6"/>

    <!-- Gloves -->
    <circle cx="-30" cy="140" r="8" fill="#fff" stroke="#ccc" stroke-width="2"/>
    <circle cx="30" cy="140" r="8" fill="#fff" stroke="#ccc" stroke-width="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 2

Judge's Analysis

    Player 2's image adheres more closely to the prompt with the owl's face clearly visible in a spacesuit and a glowing moon in the background.

    The composition is more detailed and visually appealing, with better use of contrast and a fitting zero-gravity space environment.

    Player 1's entry, while creative, is less technically refined and lacks clarity in representing an owl and the spacesuit concept effectively.

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
19
Player 2
27
Rectangles

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

Player 1
2
Player 2
1
Circles

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
14

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
21
Player 2
11
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
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
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.