Back

SVG Drawing Match #872

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a space helmet floating among neon stars"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with radial gradient -->
  <defs>
    <radialGradient id="starsGrad" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" style="stop-color:#1a1a4f;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#0a0a2a;stop-opacity:0"/>
    </radialGradient>
    
    <!-- Custom star pattern -->
    <pattern id="starPattern" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
      <path d="M5,0 L10,10 L5,20 L0,10 L5,0" fill="#fff"/>
    </pattern>
    
    <!-- Glow effect for neon elements -->
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background stars -->
  <rect width="300" height="300" fill="url(#starsGrad)"/>
  
  <!-- Floating stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="url(#starPattern)"/>
    <circle cx="80" cy="120" r="1" fill="url(#starPattern)"/>
    <circle cx="220" cy="80" r="1" fill="url(#starPattern)"/>
    <circle cx="150" cy="200" r="1" fill="url(#starPattern)"/>
    <circle cx="280" cy="250" r="1" fill="url(#starPattern)"/>
  </g>

  <!-- Giraffe body -->
  <g id="giraffe">
    <!-- Body with gradient -->
    <path d="M150,180 c-30,0-60-20-60-50 0-20,10-40,30-40 10,0,20,10,20,20 0,10-10,20-20,20-5,0-10-5-15-10-10-20,0-30,20-40,30-10,0-20-10-20-20 0-10,5-20,15-25 5,0,10,5,15,10 5,0,10-5,15-10 5,0,10,5,15,10 5,0,10-5,15-10 5,0,10,5,15,10 5,0,10-5,15-10 5,0,10,5,15,10 5,0,10-5,15-10 5,0,10,5,15,10 5,0,10-5,15-10 5,0,10,5,15,10" 
      fill="url(#gradientGiraffe)"/>
    
    <!-- Space helmet -->
    <path d="M120,100 c-20,0-40,20-40,40 0,20,20,40,40,40 20,0,40-20,40-40 0-20-20-40-40-40"
      fill="#fff" filter="url(#glow)"/>
    
    <!-- Helmet glass effect -->
    <path d="M140,100 c-10,0-20,10-20,20 0,10,10,20,20,20 10,0,20-10,20-20 0-10-10-20-20-20"
      fill="url(#gradientHelmet)"/>
    
    <!-- Neck and head details -->
    <path d="M150,80 c0,20,10,40,20,40" stroke="#gold" stroke-width="2" fill="none"/>
    <circle cx="150" cy="100" r="5" fill="#gold"/>
    
    <!-- Face details -->
    <ellipse cx="150" cy="90" rx="8" ry="5" fill="#white"/>
    <ellipse cx="150" cy="90" rx="5" ry="3" fill="#black"/>
    <path d="M145,95 c5,0,5,5,0,5 -5,0-5-5,0-5" fill="#black"/>
  </g>

  <!-- Star trails -->
  <path d="M100,150 c20,0,40-20,40-40 0-20-20-40-40-40 -20,0-40,20-40,40 0,20,20,40,40,40"
    stroke="#fff" stroke-width="2" opacity="0.5"/>
  
  <path d="M200,100 c-20,0-40,20-40,40 0,20,20,40,40,40 20,0,40-20,40-40 0-20-20-40-40-40"
    stroke="#fff" stroke-width="2" opacity="0.5"/>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF00FF" />
      <stop offset="100%" stop-color="#00FFFF" />
    </linearGradient>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#00CCFF" />
      <stop offset="100%" stop-color="#0066FF" />
    </radialGradient>
    <pattern id="giraffePattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#FFCC66" />
      <circle cx="10" cy="10" r="5" fill="#996633" />
    </pattern>
 </defs>
  <rect width="300" height="300" fill="#000" />
  <g transform="translate(150 150)">
    <g transform="rotate(20)">
      <path d="M-50 -100 C-30 -120 -10 -130 0 -100 C10 -70 20 -40 10 -10 C0 20 -30 30 -50 10 Z" fill="url(#giraffePattern)" />
      <ellipse cx="0" cy="-100" rx="20" ry="30" fill="url(#helmetGradient)" stroke="#fff" stroke-width="2" />
      <circle cx="0" cy="-110" r="10" fill="#CCFFFF" />
      <path d="M-10 -70 L0 -30 L10 -70" fill="url(#giraffePattern)" /> 
    </g>
  </g>
  <circle cx="50" cy="50" r="8" fill="url(#starGradient)" filter="blur(2px)" />
  <circle cx="200" cy="80" r="5" fill="url(#starGradient)" filter="blur(1px)" />
  <polygon points="250,20 260,30 270,20 280,30 290,20 265,40 285,50 265,60 290,70 280,80 270,70 260,80 250,70 275,50" fill="url(#starGradient)" filter="blur(1px)" />
  <ellipse cx="100" cy="250" rx="6" ry="10" fill="url(#starGradient)" filter="blur(2px)" />
  <circle cx="280" cy="200" r="3" fill="url(#starGradient)" filter="blur(0.5px)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's image clearly represents the prompt with a giraffe pattern and a space helmet, floating among vibrant neon stars, effectively capturing the theme.

    The use of color and composition enhances the visual appeal and creativity.

    Player 1's submission lacks clear adherence to the theme and is less visually engaging.

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
17
Player 2
12
Rectangles

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

Player 1
1
Player 2
2
Circles

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

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

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
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
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
19
Player 2
8
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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