Back

SVG Drawing Match #758

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe in a spacesuit juggling planets"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="planetGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color: #FF69B4; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FFD700; stop-opacity: 1" />
    </linearGradient>
    <linearGradient id="spacesuitGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color: #000000; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #1E90FF; stop-opacity: 1" />
    </linearGradient>
    <radialGradient id="giraffeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #FFFF00; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FFA500; stop-opacity: 1" />
    </radialGradient>
  </defs>
  <!-- Background Stars -->
  <rect width="300" height="300" fill="#000000"/>
  <g stroke="#FFFFFF" fill="none" stroke-width="2">
    <circle cx="50" cy="50" r="2" />
    <circle cx="100" cy="20" r="3" />
    <circle cx="250" cy="30" r="2" />
    <circle cx="280" cy="120" r="3" />
    <circle cx="180" cy="220" r="2" />
  </g>
  <!-- Giraffe -->
  <path d="M150,200 Q170,150 150,100 Q130,50 150,0" stroke="black" fill="url(#giraffeGradient)" stroke-width="2"/>
  <circle cx="150" cy="100" r="20" fill="url(#giraffeGradient)" />
  <circle cx="150" cy="100" r="15" fill="white" />
  <circle cx="145" cy="95" r="5" fill="black" />
  <circle cx="155" cy="95" r="5" fill="black" />
  <circle cx="150" cy="105" r="5" fill="black" />
  <!-- Spacesuit -->
  <rect x="130" y="120" width="40" height="80" fill="url(#spacesuitGradient)" stroke="black" stroke-width="2"/>
  <rect x="135" y="200" width="30" height="50" fill="url(#spacesuitGradient)" stroke="black" stroke-width="2"/>
  <!-- Planets -->
  <circle cx="100" cy="150" r="15" fill="url(#planetGradient)" />
  <circle cx="200" cy="150" r="20" fill="url(#planetGradient)" />
  <circle cx="150" cy="250" r="10" fill="url(#planetGradient)" />
  <!-- Juggling Lines -->
  <path d="M100,150 Q125,200 150,250" stroke="white" stroke-width="2" fill="none"/>
  <path d="M150,250 Q175,200 200,150" stroke="white" stroke-width="2" fill="none"/>
  <path d="M200,150 Q175,100 150,50" stroke="white" stroke-width="2" fill="none"/>
  <path d="M150,50 Q125,100 100,150" stroke="white" stroke-width="2" fill="none"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%">
      <stop stop-color="#1e1f36" offset="0%" />
      <stop stop-color="#0a0a23" offset="100%" />
    </radialGradient>
  </defs>

  <!-- Giraffe's Body -->
  <ellipse cx="150" cy="200" rx="30" ry="50" fill="orange" />
  <rect x="140" y="160" width="20" height="40" fill="orange" />
  <pattern id="spots" patternUnits="userSpaceOnUse" width="10" height="10">
    <circle cx="5" cy="5" r="5" fill="#d89216" />
  </pattern>
  <ellipse cx="150" cy="200" rx="30" ry="50" fill="url(#spots)" />

  <!-- Spacesuit Helmet -->
  <circle cx="150" cy="140" r="30" fill="rgba(255, 255, 255, 0.2)" stroke="lightgray" stroke-width="2" />
  <circle cx="150" cy="140" r="31" fill="none" stroke="white" stroke-width="2" />

  <!-- Giraffe's Head -->
  <ellipse cx="150" cy="140" rx="18" ry="25" fill="orange" />
  <circle cx="145" cy="130" r="2" fill="black" />
  <circle cx="155" cy="130" r="2" fill="black" />
  <path d="M150 150 Q 145 150 148 155 Q 150 160 152 155 Q 155 150 150 150" fill="#d89216" />

  <!-- Giraffe's Ears -->
  <rect x="135" y="110" width="5" height="15" fill="orange" transform="rotate(-30 135 110)" />
  <rect x="160" y="110" width="5" height="15" fill="orange" transform="rotate(30 160 110)" />

  <!-- Antennas with Stars -->
  <line x1="148" y1="112" x2="148" y2="102" stroke="orange" stroke-width="2" />
  <line x1="152" y1="112" x2="152" y2="102" stroke="orange" stroke-width="2" />
  <circle cx="148" cy="100" r="2" fill="yellow" />
  <circle cx="152" cy="100" r="2" fill="yellow" />

  <!-- Juggling Planets -->
  <circle cx="100" cy="100" r="10" fill="url(#planet1Gradient)" />
  <circle cx="200" cy="80" r="10" fill="url(#planet2Gradient)" />
  <circle cx="250" cy="130" r="10" fill="url(#planet3Gradient)" />
  
  <defs>
    <radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%">
      <stop stop-color="pink" offset="0%" />
      <stop stop-color="purple" offset="100%" />
    </radialGradient>
    <radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%">
      <stop stop-color="lightblue" offset="0%" />
      <stop stop-color="blue" offset="100%" />
    </radialGradient>
    <radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%">
      <stop stop-color="lightgreen" offset="0%" />
      <stop stop-color="green" offset="100%" />
    </radialGradient>
  </defs>

  <!-- Floating Stars -->
  <circle cx="60" cy="60" r="3" fill="white" />
  <circle cx="240" cy="50" r="2" fill="white" />
  <circle cx="280" cy="170" r="3" fill="white" />
  <circle cx="90" cy="230" r="2" fill="white" />

</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 clearly represents the concept of a 'giraffe in a spacesuit juggling planets' with a recognizable giraffe head and spacesuit.

    The planets are distinct and colorful, enhancing the visual appeal and creativity.

    Player 1's abstract design is less representative of the prompt and lacks clarity in depicting the giraffe and juggling elements.

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

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

Player 1
3
Player 2
4
Circles

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

Player 1
13
Player 2
14
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
15

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