Back

SVG Drawing Match #2659

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An astronaut riding a bicycle on the surface of the moon."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Moon surface and sky -->
  <defs>
    <!-- Gradient for the sky -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Gradient for the moon surface -->
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0c397"/>
      <stop offset="100%" stop-color="#b07a4e"/>
    </radialGradient>
    <!-- Gradient for the astronaut suit -->
    <linearGradient id="suitGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </linearGradient>
    <!-- Gradient for the helmet -->
    <linearGradient id="helmetGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#a0d8ef"/>
      <stop offset="100%" stop-color="#69b0e2"/>
    </linearGradient>
    <!-- Gradient for the bicycle -->
    <linearGradient id="bikeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff8c00"/>
      <stop offset="100%" stop-color="#ffcc00"/>
    </linearGradient>
  </defs>

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

  <!-- Moon (surface) -->
  <ellipse cx="150" cy="240" rx="100" ry="50" fill="url(#moonGradient)" />

  <!-- Craters on moon -->
  <circle cx="110" cy="220" r="12" fill="#a07454" opacity="0.7"/>
  <circle cx="180" cy="200" r="8" fill="#a07454" opacity="0.6"/>
  <circle cx="130" cy="240" r="5" fill="#a07454" opacity="0.5"/>
  <circle cx="170" cy="230" r="7" fill="#a07454" opacity="0.6"/>

  <!-- Astronaut riding bicycle -->

  <!-- Bicycle frame -->
  <g stroke="#444" stroke-width="3" fill="none">
    <!-- Main frame -->
    <line x1="150" y1="180" x2="200" y2="210" stroke="url(#bikeGradient)" stroke-width="4" />
    <line x1="200" y1="210" x2="150" y2="230" stroke="url(#bikeGradient)" stroke-width="4" />
    <line x1="150" y1="230" x2="100" y2="210" stroke="url(#bikeGradient)" stroke-width="4" />
    <line x1="100" y1="210" x2="150" y2="180" stroke="url(#bikeGradient)" stroke-width="4" />

    <!-- Pedals -->
    <circle cx="125" cy="210" r="4" fill="#222"/>
    <line x1="125" y1="210" x2="130" y2="215" stroke="#222" stroke-width="2"/>
    <line x1="125" y1="210" x2="120" y2="205" stroke="#222" stroke-width="2"/>
  </g>

  <!-- Wheels -->
  <circle cx="150" cy="210" r="20" fill="none" stroke="#555" stroke-width="3"/>
  <circle cx="100" cy="210" r="15" fill="none" stroke="#555" stroke-width="3"/>

  <!-- Astronaut -->
  <!-- Helmet -->
  <circle cx="200" cy="140" r="12" fill="url(#helmetGradient)" stroke="#333" stroke-width="1"/>
  <!-- Helmet reflection -->
  <ellipse cx="202" cy="138" rx="4" ry="2" fill="#fff" opacity="0.4"/>

  <!-- Body -->
  <rect x="194" y="152" width="12" height="20" fill="url(#suitGradient)" rx="2" ry="2"/>

  <!-- Arms (holding handlebars) -->
  <line x1="200" y1="160" x2="180" y2="180" stroke="#ccc" stroke-width="2"/>
  <line x1="200" y1="160" x2="220" y2="180" stroke="#ccc" stroke-width="2"/>

  <!-- Legs -->
  <line x1="200" y1="172" x2="190" y2="190" stroke="#ccc" stroke-width="2"/>
  <line x1="200" y1="172" x2="210" y2="190" stroke="#ccc" stroke-width="2"/>

  <!-- Boots -->
  <rect x="185" y="190" width="5" height="3" fill="#222"/>
  <rect x="205" y="190" width="5" height="3" fill="#222"/>

  <!-- Visual metaphor: trail of stars -->
  <circle cx="160" cy="250" r="1.5" fill="#fff"/>
  <circle cx="170" cy="255" r="1" fill="#ffd700"/>
  <circle cx="180" cy="260" r="1.8" fill="#fff"/>
  <circle cx="190" cy="265" r="1" fill="#ccccff"/>
  <circle cx="210" cy="260" r="1.2" fill="#fff"/>
  <circle cx="220" cy="255" r="1.5" fill="#ffd700"/>

  <!-- Shooting star -->
  <line x1="50" y1="50" x2="58" y2="42" stroke="#ffff00" stroke-width="1.5"/>
  <line x1="50" y1="50" x2="55" y2="57" stroke="#ffff00" stroke-width="1.2"/>
  <circle cx="50" cy="50" r="2" fill="#ffff00"/>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonSurface" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#e0e0e0" />
      <stop offset="100%" stop-color="#a0a0a0" />
    </radialGradient>
    <pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1" fill="white" />
      <circle cx="10" cy="8" r="0.5" fill="white" />
      <circle cx="18" cy="15" r="1.5" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#stars)" />
  <circle cx="150" cy="200" r="80" fill="url(#moonSurface)" />
  <ellipse cx="180" cy="220" rx="10" ry="5" fill="#888" transform="rotate(-15 180 220)" />
  <path d="M120 190 L140 170 L160 190 Z" fill="white" stroke="black" stroke-width="2" />  
  <path d="M110 210 C 110 200, 120 195, 130 195 S 150 205, 170 210" stroke="silver" stroke-width="3" fill="none"/>
  <circle cx="120" cy="210" r="8" fill="#ddd" stroke="gray" stroke-width="1"/>
  <circle cx="160" cy="210" r="8" fill="#ddd" stroke="gray" stroke-width="1"/>
  <ellipse cx="140" cy="150" rx="20" ry="15" fill="white" stroke="black" stroke-width="2"/>
  <path d="M130 145 L150 145 L145 130 Z" fill="lightblue"/>
  <circle cx="140" cy="160" r="10" fill="#eee"/>
  <path d="M125 170 C 125 180, 155 180, 155 170" stroke="silver" stroke-width="3" fill="none"/>

  <g transform="translate(110, 140) rotate(-10)">
    <path d="M0 0 L15 -15 L30 -10 L30 10 L15 15 Z" fill="orange" stroke="black" stroke-width="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt, as it clearly depicts an astronaut riding a bicycle on the moon with a recognizable lunar surface and space-like background.

    While Player 1's image is creative, it lacks clarity in representing the concept of an astronaut or a bicycle, making Player 2's execution stronger in terms of adherence and visual appeal.

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
33
Player 2
15
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
15
Player 2
7
Ellipses

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

Player 1
2
Player 2
2
Lines

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
16
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
11

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
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
Player 2
19
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
5
Player 2
2
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