Back

SVG Drawing Match #2032

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A hamster astronaut planting a tiny flag on a giant cheese moon"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#fff8cc" />
      <stop offset="100%" stop-color="#d1c06e" />
    </radialGradient>
    <pattern id="cheesePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#e3d390" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="#1a1a1a" />
  <g transform="translate(150,150)">
    <ellipse rx="60" ry="60" fill="url(#moonGradient)" />
    <ellipse rx="60" ry="60" fill="url(#cheesePattern)" />
    <circle cx="0" cy="-15" r="8" fill="#f0c242" />
    <circle cx="10" cy="-28" r="5" fill="#f0c242" />
    <circle cx="-15" cy="-30" r="6" fill="#f0c242" />
    <circle cx="30" cy="-10" r="4" fill="#f0c242" />
  </g>
  <g transform="translate(150,180)">
    <path d="M-10,-30 q20 10 20 20 q0 10 -15 25 q-5 -10 -5 -20 q-10 5 -10 -5 q-5 0 -5 -10 q0 -5 5 -10" fill="#b99773" />
    <circle cx="0" cy="-30" r="7" fill="#e5b089" />
  </g>
  <g transform="translate(145, -5)">
    <path d="M-5,30 L5,30 L0,40 Z" fill="#ff3333" />
    <rect x="-1" y="18" width="2" height="10" fill="#ff3333" />
    <line x1="0" y1="40" x2="-10" y2="40" stroke="#fff" stroke-width="1" stroke-linecap="round" />
  </g>
  <text x="10" y="290" font-family="Arial" font-size="16" fill="#ffffff" text-anchor="middle">Hamster Astronaut</text>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient -->
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#111e40; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#030617; stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGradient)" />

  <!-- Cheese Moon -->
  <ellipse cx="150" cy="200" rx="120" ry="100" fill="#ffdb73" />
  <circle cx="190" cy="160" r="20" fill="#ffe29a" />
  <circle cx="120" cy="220" r="12" fill="#ffe29a" />
  <circle cx="80" cy="180" r="18" fill="#ffe29a" />
  <circle cx="240" cy="230" r="15" fill="#ffe29a" />

  <!-- Hamster Astronaut -->
  <g transform="translate(140, 80)">
    <!-- Hamster body -->
    <ellipse cx="10" cy="40" rx="15" ry="20" fill="#d07c4a" />
    
    <!-- Hamster head and helmet -->
    <circle cx="10" cy="20" r="15" fill="#d07c4a" />
    <path d="M-5,20 A15,15 0 0,1 25,20 L12,5 Z" fill="#fff" stroke="#ccc" stroke-width="1" />

    <!-- Hamster features -->
    <circle cx="4" cy="18" r="2" fill="#000" />
    <circle cx="16" cy="18" r="2" fill="#000" />
    <circle cx="10" cy="25" r="1.5" fill="#fcfcfc" />
    <path d="M8,28 Q10,29.5 12,28" stroke="#000" stroke-width="1" fill="none" />
    
    <!-- Spacesuit details -->
    <circle cx="10" cy="40" r="12" fill="none" stroke="white" stroke-width="2" />
    <line x1="10" y1="15" x2="10" y2="40" stroke="white" stroke-width="2" />
    <line x1="10" y1="40" x2="-3" y2="60" stroke="white" stroke-width="2" />
    <line x1="10" y1="40" x2="23" y2="60" stroke="white" stroke-width="2" />
  </g>

  <!-- Flag -->
  <rect x="145" y="130" width="2" height="50" fill="#fff" />
  <polygon points="147,130 147,145 170,137.5" fill="#b01330" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image more effectively captures the prompt with a clear depiction of a hamster astronaut planting a flag on a large cheese moon.

    The composition is visually appealing, with a distinct and recognizable hamster character.

    Player 1's image lacks clarity and detail, making it difficult to interpret the elements as intended by 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
2
Circles

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

Player 1
6
Player 2
9
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
1
Player 2
3
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
2
Player 2
2
Groups

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
11
Player 2
6
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
2
Player 2
1
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
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