Back

SVG Drawing Match #274

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe in space wearing an astronaut helmet, surrounded by floating stars"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions -->
  <defs>
    <!-- Background gradient -->
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#1a2a6c"/>
      <stop offset="100%" stop-color="#b21f1f"/>
    </radialGradient>
    <!-- Helmet gradient -->
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.6)"/>
      <stop offset="100%" stop-color="rgba(200,200,200,0.3)"/>
    </radialGradient>
    <!-- Giraffe gradient -->
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f0c27b"/>
      <stop offset="100%" stop-color="#4b1248"/>
    </linearGradient>
    <!-- Spot pattern -->
    <pattern id="spots" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#755e48"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="50" cy="60" r="1.5"/>
    <circle cx="120" cy="80" r="1"/>
    <circle cx="200" cy="40" r="2"/>
    <circle cx="270" cy="90" r="1.2"/>
    <circle cx="150" cy="150" r="1.8"/>
    <circle cx="220" cy="180" r="1.3"/>
    <circle cx="80" cy="220" r="1"/>
    <circle cx="30" cy="200" r="1.5"/>
    <circle cx="250" cy="250" r="1"/>
    <circle cx="100" cy="270" r="1.7"/>
    <circle cx="180" cy="300" r="1"/>
    <circle cx="60" cy="240" r="1.4"/>
    <circle cx="200" cy="260" r="1.2"/>
    <circle cx="90" cy="30" r="1.3"/>
    <circle cx="140" cy="50" r="0.8"/>
  </g>
  
  <!-- Giraffe Body -->
  <g id="giraffe">
    <!-- Body -->
    <ellipse cx="150" cy="200" rx="30" ry="50" fill="url(#giraffeGradient)" />
    <!-- Legs -->
    <rect x="135" y="220" width="5" height="30" fill="#755e48"/>
    <rect x="160" y="220" width="5" height="30" fill="#755e48"/>
    <!-- Neck -->
    <rect x="145" y="130" width="10" height="70" fill="url(#giraffeGradient)" />
    <!-- Head -->
    <ellipse cx="150" cy="120" rx="10" ry="15" fill="url(#giraffeGradient)" />
    <!-- Ears -->
    <polygon points="145,115 142,110 148,113" fill="#755e48"/>
    <polygon points="155,115 158,110 152,113" fill="#755e48"/>
    <!-- Astronaut Helmet -->
    <circle cx="150" cy="120" r="18" fill="url(#helmetGradient)" stroke="#ccc" stroke-width="2"/>
    <circle cx="150" cy="120" r="10" fill="rgba(255,255,255,0.3)" />
    <!-- Face Details -->
    <circle cx="148" cy="118" r="1.5" fill="black"/>
    <circle cx="152" cy="118" r="1.5" fill="black"/>
    <path d="M148,123 Q150,125 152,123" stroke="black" stroke-width="0.5" fill="none"/>
    <!-- Spots -->
    <circle cx="140" cy="190" r="5" fill="url(#spots)" />
    <circle cx="160" cy="210" r="4" fill="url(#spots)" />
    <circle cx="145" cy="225" r="3" fill="url(#spots)" />
    <circle cx="155" cy="235" r="4" fill="url(#spots)" />
    <circle cx="130" cy="205" r="3" fill="url(#spots)" />
  </g>
  
  <!-- Additional Details: Comet -->
  <g>
    <path d="M280,20 Q290,30 280,40 Q270,30 280,20" fill="#ffeb3b" opacity="0.7"/>
    <line x1="280" y1="20" x2="290" y2="30" stroke="#fff176" stroke-width="1" opacity="0.5"/>
    <line x1="280" y1="40" x2="290" y2="30" stroke="#fff176" stroke-width="1" opacity="0.5"/>
  </g>
  
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#000" />
  
  <!-- Stars -->
  <circle cx="50" cy="30" r="2" fill="#FFF" />
  <circle cx="120" cy="70" r="3" fill="#FFF" />
  <circle cx="200" cy="20" r="2" fill="#FFF" />
  <circle cx="250" cy="100" r="3" fill="#FFF" />
  <circle cx="170" cy="130" r="2" fill="#FFF" />
  <circle cx="90" cy="180" r="3" fill="#FFF" />
  
  <!-- Giraffe body -->
  <rect x="100" y="80" width="40" height="120" fill="#FFDA66" />
  
  <!-- Giraffe spots -->
  <circle cx="120" cy="100" r="5" fill="#AA9652" />
  <circle cx="160" cy="110" r="4" fill="#AA9652" />
  <circle cx="130" cy="150" r="3" fill="#AA9652" />
  <circle cx="150" cy="175" r="4" fill="#AA9652" />
  
  <!-- Giraffe neck -->
  <rect x="130" y="50" width="20" height="40" fill="#FFDA66" />
  
  <!-- Giraffe head -->
  <circle cx="140" cy="40" r="20" fill="#FFDA66" />
  
  <!-- Giraffe ears -->
  <circle cx="120" cy="30" r="5" fill="#AA9652" />
  <circle cx="160" cy="30" r="5" fill="#AA9652" />
  
  <!-- Giraffe face -->
  <circle cx="140" cy="40" r="15" fill="#FFDA66" />
  
  <!-- Astronaut helmet -->
  <circle cx="140" cy="40" r="18" fill="#FFF" stroke="#FFF" stroke-width="2" />
  
  <!-- Giraffe eyes -->
  <circle cx="133" cy="35" r="2" fill="#000" />
  <circle cx="147" cy="35" r="2" fill="#000" />
  
  <!-- Giraffe nose -->
  <circle cx="140" cy="45" r="2" fill="#000" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission creatively uses a gradient background to depict space, enhancing the visual appeal and adhering well to the prompt.

    The astronaut helmet and floating stars are clearly represented, showcasing technical quality and compositional strength.

    Player 2's image, while clear, lacks the same level of creativity and depth in the space setting.

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
37
Player 2
21
Rectangles

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

Player 1
4
Player 2
3
Circles

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

Player 1
25
Player 2
18
Ellipses

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

Player 1
2
Player 2
Lines

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

Player 1
2
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
2
Player 2
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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