Back

SVG Drawing Match #1866

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a galactic-themed space helmet"

SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #1b2735; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #090a0f; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#f7c873; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#d4a373; stop-opacity:1" />
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="1" cy="1" r="1" fill="#ffffff" />
    </pattern>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#8e2de2; stop-opacity:1" />
      <stop offset="50%" style="stop-color:#4a00e0; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000428; stop-opacity:1" />
    </radialGradient>
  </defs>
  <!-- Giraffe Body -->
  <ellipse cx="150" cy="220" rx="60" ry="40" fill="url(#giraffeGradient)" />
  <!-- Giraffe Legs -->
  <rect x="120" y="240" width="10" height="30" fill="url(#giraffeGradient)" />
  <rect x="170" y="240" width="10" height="30" fill="url(#giraffeGradient)" />
  <!-- Giraffe Neck -->
  <path d="M170,220 Q175,150 150,100 Q125,150 130,220" fill="url(#giraffeGradient)" />
  <!-- Giraffe Head -->
  <ellipse cx="150" cy="100" rx="20" ry="30" fill="url(#giraffeGradient)" />
  <!-- Ears -->
  <polygon points="140,85 135,75 145,80" fill="#f7c873"/>
  <polygon points="160,85 165,75 155,80" fill="#f7c873"/>
  <!-- Eyes -->
  <circle cx="142" cy="95" r="3" fill="#000"/>
  <circle cx="158" cy="95" r="3" fill="#000"/>
  <!-- Space Helmet -->
  <g>
    <ellipse cx="150" cy="80" rx="25" ry="20" fill="url(#helmetGradient)" opacity="0.7" />
    <circle cx="150" cy="80" r="15" fill="url(#galaxyGradient)" opacity="0.8" />
    <!-- Stars on Helmet -->
    <rect x="130" y="70" width="1" height="1" fill="url(#starPattern)" />
    <rect x="160" y="85" width="1" height="1" fill="url(#starPattern)" />
    <rect x="140" y="90" width="1" height="1" fill="url(#starPattern)" />
    <rect x="155" y="75" width="1" height="1" fill="url(#starPattern)" />
  </g>
  <!-- Galaxy Lines -->
  <path d="M130,80 Q150,60 170,80" stroke="url(#galaxyGradient)" stroke-width="2" fill="none" opacity="0.5"/>
  <path d="M150,60 Q150,100 170,80" stroke="url(#galaxyGradient)" stroke-width="1" fill="none" opacity="0.5"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceHelmetGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color:rgb(30,30,60);stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(80,80,180);stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="giraffeSpotsGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color:rgb(223,189,146);stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(171,147,102);stop-opacity:1"/>
    </radialGradient>
    <pattern id="starsPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="3" r="1.5" fill="white"/>
      <circle cx="15" cy="5" r="1.5" fill="white"/>
      <circle cx="10" cy="15" r="1.5" fill="white"/>
    </pattern>
  </defs>
  <!-- Giraffe Head -->
  <ellipse cx="150" cy="160" rx="40" ry="70" fill="url(#giraffeSpotsGradient)" stroke="brown" stroke-width="5" />
  <!-- Giraffe Spots -->
  <circle cx="130" cy="130" r="10" fill="brown"/>
  <circle cx="170" cy="180" r="10" fill="brown"/>
  <circle cx="150" cy="210" r="10" fill="brown"/>
  <!-- Giraffe Ears -->
  <ellipse cx="120" cy="90" rx="10" ry="20" fill="url(#giraffeSpotsGradient)" stroke="brown" stroke-width="4"/>
  <ellipse cx="180" cy="90" rx="10" ry="20" fill="url(#giraffeSpotsGradient)" stroke="brown" stroke-width="4"/>
  <!-- Giraffe Antennae -->
  <line x1="137" y1="109" x2="135" y2="70" stroke="brown" stroke-width="4"/>
  <line x1="163" y1="109" x2="165" y2="70" stroke="brown" stroke-width="4"/>
  <circle cx="135" cy="65" r="7" fill="brown"/>
  <circle cx="165" cy="65" r="7" fill="brown"/>
  <!-- Space Helmet -->
  <ellipse cx="150" cy="160" rx="90" ry="100" fill="url(#spaceHelmetGradient)" />
  <ellipse cx="150" cy="160" rx="90" ry="100" fill="url(#starsPattern)" />
  <ellipse cx="150" cy="160" rx="90" ry="100" fill="none" stroke="white" stroke-width="3"/>
  <!-- Glass Reflection -->
  <path d="M120,110 Q150,80 180,110" stroke="white" stroke-width="5" fill="none" opacity="0.5"/>
  <!-- Eyes -->
  <circle cx="135" cy="160" r="5" fill="black" />
  <circle cx="165" cy="160" r="5" fill="black" />
</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 image effectively depicts a giraffe with a galactic-themed space helmet, clearly adhering to the prompt.

    The visual representation is creative with the helmet showing a distinct galactic element.

    Player 2's image, while technically sound, lacks clarity in portraying the concept of a giraffe wearing a space helmet, making Player 1's submission more 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
18
Player 2
19
Rectangles

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

Player 1
6
Player 2
Circles

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

Player 1
4
Player 2
10
Ellipses

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

Player 1
3
Player 2
6
Lines

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
3

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

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