Back

SVG Drawing Match #2157

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe in a spacesuit floating through a vibrant nebula"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Nebula background -->
  <defs>
    <radialGradient id="nebulaGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff3399" stop-opacity="0.7"/>
      <stop offset="40%" stop-color="#6600cc" stop-opacity="0.8"/>
      <stop offset="70%" stop-color="#000066" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#000033" stop-opacity="1"/>
    </radialGradient>
    
    <filter id="nebulaGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="5" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="atop"/>
    </filter>
    
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="atop"/>
    </filter>
    
    <linearGradient id="spacesuit" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="50%" stop-color="#dddddd"/>
      <stop offset="100%" stop-color="#aaaaaa"/>
    </linearGradient>
    
    <linearGradient id="helmet" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#aaddff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#55aaee" stop-opacity="0.9"/>
    </linearGradient>
    
    <pattern id="spots" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#8B4513" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#nebulaGradient)"/>
  
  <!-- Nebula clouds -->
  <g filter="url(#nebulaGlow)">
    <ellipse cx="70" cy="60" rx="80" ry="40" fill="#ff66cc" opacity="0.4"/>
    <ellipse cx="250" cy="90" rx="60" ry="40" fill="#aa33ff" opacity="0.3"/>
    <ellipse cx="150" cy="200" rx="100" ry="50" fill="#4422aa" opacity="0.3"/>
    <ellipse cx="90" cy="240" rx="70" ry="30" fill="#6633ff" opacity="0.4"/>
    <ellipse cx="230" cy="220" rx="50" ry="40" fill="#9966ff" opacity="0.3"/>
  </g>
  
  <!-- Stars -->
  <g filter="url(#starGlow)">
    <circle cx="30" cy="40" r="1" fill="white"/>
    <circle cx="50" cy="70" r="1.5" fill="white"/>
    <circle cx="90" cy="30" r="1" fill="white"/>
    <circle cx="120" cy="50" r="1.2" fill="white"/>
    <circle cx="150" cy="20" r="1.7" fill="white"/>
    <circle cx="180" cy="40" r="1" fill="white"/>
    <circle cx="210" cy="60" r="1.3" fill="white"/>
    <circle cx="240" cy="30" r="1.5" fill="white"/>
    <circle cx="270" cy="50" r="1" fill="white"/>
    <circle cx="40" cy="100" r="1.2" fill="white"/>
    <circle cx="70" cy="130" r="1" fill="white"/>
    <circle cx="100" cy="110" r="1.5" fill="white"/>
    <circle cx="260" cy="120" r="1.2" fill="white"/>
    <circle cx="220" cy="150" r="1" fill="white"/>
    <circle cx="30" cy="170" r="1.8" fill="white"/>
    <circle cx="60" cy="200" r="1" fill="white"/>
    <circle cx="280" cy="180" r="1.5" fill="white"/>
    <circle cx="240" cy="220" r="1" fill="white"/>
    <circle cx="200" cy="250" r="1.3" fill="white"/>
    <circle cx="120" cy="260" r="1.5" fill="white"/>
    <circle cx="160" cy="280" r="1" fill="white"/>
  </g>
  
  <!-- Giraffe in spacesuit -->
  <g transform="translate(150, 150) rotate(-10)">
    <!-- Spacesuit body -->
    <ellipse cx="0" cy="20" rx="30" ry="45" fill="url(#spacesuit)" stroke="#888888" stroke-width="1.5"/>
    
    <!-- Helmet -->
    <circle cx="0" cy="-40" r="18" fill="url(#helmet)" stroke="#aaaaaa" stroke-width="2"/>
    <ellipse cx="0" cy="-40" rx="14" ry="16" fill="none" stroke="#ffffff" stroke-width="0.5" opacity="0.7"/>
    
    <!-- Helmet connector -->
    <rect x="-10" y="-25" width="20" height="10" fill="#bbbbbb" stroke="#888888" stroke-width="1"/>
    
    <!-- Giraffe neck inside spacesuit -->
    <path d="M0,-25 C5,-30 8,-35 5,-45 C3,-50 -5,-50 -7,-45 C-9,-35 -5,-30 0,-25" fill="#E0B36F" stroke="#8B4513" stroke-width="0.5"/>
    <path d="M-7,-45 C-10,-48 -10,-52 -7,-55" fill="none" stroke="#8B4513" stroke-width="0.5"/>
    <path d="M5,-45 C8,-48 8,-52 5,-55" fill="none" stroke="#8B4513" stroke-width="0.5"/>
    
    <!-- Giraffe face -->
    <ellipse cx="0" cy="-55" rx="8" ry="12" fill="#E0B36F"/>
    <path d="M-6,-52 C-10,-50 -10,-45 -8,-43" fill="#E0B36F" stroke="#8B4513" stroke-width="0.5"/>
    <path d="M6,-52 C10,-50 10,-45 8,-43" fill="#E0B36F" stroke="#8B4513" stroke-width="0.5"/>
    <ellipse cx="-4" cy="-58" rx="1.5" ry="2" fill="#000000"/>
    <ellipse cx="4" cy="-58" rx="1.5" ry="2" fill="#000000"/>
    <path d="M-2,-50 C0,-49 2,-49 4,-50" fill="none" stroke="#8B4513" stroke-width="0.5"/>
    
    <!-- Giraffe spots visible on neck -->
    <path d="M-5,-30 L-2,-29 L-1,-33 Z" fill="#8B4513"/>
    <path d="M3,-35 L6,-34 L4,-38 Z" fill="#8B4513"/>
    <path d="M-3,-40 L0,-39 L-2,-43 Z" fill="#8B4513"/>
    
    <!-- Giraffe horn nubs -->
    <circle cx="-5" cy="-67" r="2" fill="#8B4513"/>
    <circle cx="5" cy="-67" r="2" fill="#8B4513"/>
    
    <!-- Spacesuit limbs -->
    <rect x="-35" y="10" width="35" height="12" rx="6" ry="6" fill="url(#spacesuit)" stroke="#888888" stroke-width="1"/>
    <rect x="0" y="10" width="35" height="12" rx="6" ry="6" fill="url(#spacesuit)" stroke="#888888" stroke-width="1"/>
    <rect x="-25" y="45" width="12" height="35" rx="6" ry="6" fill="url(#spacesuit)" stroke="#888888" stroke-width="1"/>
    <rect x="13" y="45" width="12" height="35" rx="6" ry="6" fill="url(#spacesuit)" stroke="#888888" stroke-width="1"/>
    
    <!-- Oxygen tank -->
    <rect x="-10" y="15" width="20" height="35" rx="5" ry="5" fill="#dddddd" stroke="#888888" stroke-width="1"/>
    <circle cx="0" cy="25" r="3" fill="#ff3333" stroke="#888888" stroke-width="0.5"/>
    <rect x="-8" y="30" width="16" height="5" rx="2" ry="2" fill="#bbbbbb" stroke="#888888" stroke-width="0.5"/>
    
    <!-- Space floating effect -->
    <ellipse cx="-40" cy="20" rx="5" ry="3" fill="#aaddff" opacity="0.3"/>
    <ellipse cx="40" cy="15" rx="6" ry="4" fill="#aaddff" opacity="0.3"/>
    <ellipse cx="-30" cy="60" rx="4" ry="3" fill="#aaddff" opacity="0.3"/>
    <ellipse cx="30" cy="65" rx="5" ry="3" fill="#aaddff" opacity="0.3"/>
  </g>
  
  <!-- Additional nebula sparkles -->
  <circle cx="100" cy="80" r="2" fill="#ffffff" opacity="0.8"/>
  <circle cx="220" cy="100" r="1.5" fill="#ffffff" opacity="0.7"/>
  <circle cx="180" cy="210" r="2" fill="#ffffff" opacity="0.6"/>
  <circle cx="80" cy="180" r="1.8" fill="#ffffff" opacity="0.7"/>
  <circle cx="250" cy="200" r="1.5" fill="#ffffff" opacity="0.8"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background - Vibrant Nebula -->
  <rect x="0" y="0" width="300" height="300" fill="url(#nebula)" />
  
  <!-- Define Gradient for Nebula Background -->
  <defs>
    <linearGradient id="nebula" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#7F00FF" />
      <stop offset="50%" stop-color="#FF007F" />
      <stop offset="100%" stop-color="#00FF7F" />
    </linearGradient>
  </defs>
  
  <!-- Giraffe in Spacesuit -->
  <g transform="translate(150, 150)">
    <!-- Giraffe Body -->
    <ellipse cx="0" cy="15" rx="30" ry="40" fill="#FFD700" />
    <!-- Giraffe Spots -->
    <circle cx="-15" cy="5" r="5" fill="#8B4513" />
    <circle cx="10" cy="5" r="5" fill="#8B4513" />
    <!-- Giraffe Head -->
    <ellipse cx="0" cy="-25" rx="20" ry="20" fill="#FFD700" />
    <!-- Giraffe Eyes -->
    <circle cx="-7" cy="-30" r="3" fill="#000" />
    <circle cx="7" cy="-30" r="3" fill="#000" />
    <!-- Giraffe Neck -->
    <rect x="-10" y="-10" width="20" height="25" fill="#FFD700" />
    <!-- Spacesuit Helmet -->
    <circle cx="0" cy="-35" r="22" fill="#FFF" />
    <!-- Antenna -->
    <rect x="-2" y="-57" width="4" height="20" fill="#FFF" />
    <circle cx="0" cy="-63" r="3" fill="#FFF" />
  </g>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image more closely adheres to the prompt with a recognizable giraffe in a spacesuit floating in a colorful nebula, providing both creativity and a sense of narrative.

    The nebula is vibrant and adds visual interest.

    Player 2's image is more abstract and lacks clear representation of the giraffe or spacesuit, making it less effective in meeting 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
62
Player 2
11
Rectangles

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

Player 1
8
Player 2
3
Circles

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

Player 1
31
Player 2
6
Ellipses

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

Player 1
14
Player 2
2
Lines

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
7

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
1
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
26
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
6
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
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