Back

SVG Drawing Match #29

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat wearing an astronaut helmet, floating in a sea of stars"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#3a1c71" />
      <stop offset="100%" stop-color="#d76d77" />
    </radialGradient>
    <radialGradient id="helmetGradient" cx="150" cy="150" r="70" gradientUnits="userSpaceOnUse">
      <stop offset="60%" stop-color="rgba(255, 255, 255, 0.1)" />
      <stop offset="100%" stop-color="rgba(255, 255, 255, 0.02)" />
    </radialGradient>
    <pattern id="starsPattern" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="white"/>
      <circle cx="90" cy="90" r="3" fill="white"/>
      <circle cx="50" cy="30" r="1.5" fill="white"/>
      <circle cx="70" cy="70" r="2.5" fill="white"/>
      <circle cx="30" cy="60" r="1" fill="white"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <rect width="300" height="300" fill="url(#starsPattern)" />
  
  <circle cx="150" cy="150" r="60" fill="#f0f0f0" />
  
  <path d="M110 150 c-10 -50 30 -70 40 -70 10 0 50 20 40 70" fill="#5c3d2e" />
  
  <circle cx="140" cy="140" r="5" fill="#fff" />
  <circle cx="160" cy="140" r="5" fill="#fff" />
  <path d="M140 160 Q150 170 160 160" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
  
  <circle cx="150" cy="150" r="70" stroke="url(#helmetGradient)" stroke-width="5" fill="none" />
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="starryBackground" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#001f4d; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000511; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="catGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc70; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f8a62e; stop-opacity:1" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="blur" />
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#starryBackground)" />
  
  <g filter="url(#glow)">
    <circle cx="150" cy="150" r="100" fill="url(#starGradient)" opacity="0.5"/>
  </g>

  <g>
    <path d="M170 170 Q170 150, 150 140 Q130 150, 130 170 Q130 210, 150 210 Q170 210, 170 170 Z" fill="url(#catGradient)" />
    <path d="M140 140 Q140 130, 145 125 Q150 120, 155 125 Q160 130, 160 140 Z" fill="white" />
    <path d="M165 145 Q170 150, 155 155 Q150 150, 165 145 Z" fill="#000" />
  
    <path d="M145 120 Q140 115, 135 120 Q140 110, 145 120 Z" fill="white" />
    <circle cx="140" cy="140" r="3" fill="#000" />
    <circle cx="160" cy="140" r="3" fill="#000" />
  
    <path d="M120 185 Q100 200, 120 210 Q140 200, 120 185 Z" fill="url(#catGradient)" />
    <path d="M180 185 Q200 200, 180 210 Q160 200, 180 185 Z" fill="url(#catGradient)" />
  </g>
  
  <g fill="#fff">
    <circle cx="80" cy="50" r="2.5" />
    <circle cx="100" cy="80" r="1.5" />
    <circle cx="220" cy="40" r="2" />
    <circle cx="280" cy="60" r="3" />
    <circle cx="250" cy="100" r="1" />
    <circle cx="90" cy="220" r="2" />
    <circle cx="180" cy="250" r="3" />
  </g>
  
  <g>
    <ellipse cx="150" cy="130" rx="35" ry="25" fill="none" stroke="#fff" stroke-width="3"/>
    <circle cx="150" cy="130" r="30" fill="transparent" stroke="#fff" stroke-width="5" />
  </g>
  
  <text x="150" y="270" font-family="Arial" font-size="20" text-anchor="middle" fill="#ffffff">Space Cat</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission more closely adheres to the prompt with a clear depiction of a cat wearing an astronaut helmet.

    The visual appeal is enhanced by the contrasting colors and inclusion of text, adding context and charm.

    Player 1's image is abstract and lacks clear representation of a cat, making it less aligned with 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
13
Player 2
19
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
9
Player 2
11
Ellipses

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

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

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

Player 1
2
Player 2
6
Groups

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

Player 1
Player 2
4

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
4

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

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