Back

SVG Drawing Match #2464

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a spacesuit on the moon, reaching for a floating ice cream cone."

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="spaceGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00072D"/>
      <stop offset="100%" stop-color="#1A1A2E"/>
    </linearGradient>
    <radialGradient id="moonGrad">
      <stop offset="70%" stop-color="#D8D8D8"/>
      <stop offset="100%" stop-color="#909090"/>
    </radialGradient>
    <pattern id="helmetPattern" patternUnits="userSpaceOnUse" width="8" height="8">
      <path d="M0 8 L8 0" stroke="#6DF" stroke-width="1"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#spaceGrad)"/>
  
  <!-- Moon surface -->
  <circle cx="150" cy="280" r="80" fill="url(#moonGrad)"/>
  <circle cx="120" cy="270" r="15" fill="#AAA" opacity="0.4"/>
  <circle cx="200" cy="290" r="12" fill="#AAA" opacity="0.4"/>

  <!-- Giraffe body -->
  <path d="M130 220 Q140 180 160 150 L160 100 Q155 80 180 70 L190 50 Q200 30 210 50 L220 70 Q240 80 235 100 L235 150 Q250 180 260 220" 
        fill="#FFD37A" stroke="#E5B96A" stroke-width="2"/>

  <!-- Spacesuit elements -->
  <rect x="155" y="50" width="40" height="120" rx="20" fill="#F0F0F0"/>
  <path d="M130 220 L260 220 Q265 240 245 250 L145 250 Q125 240 130 220" fill="#E0E0E0"/>
  <circle cx="195" cy="70" r="25" fill="url(#helmetPattern)"/>
  <path d="M195 45 Q200 30 210 35" stroke="#6DF" stroke-width="3" fill="none"/>

  <!-- Ice cream constellation -->
  <g transform="translate(220 80)">
    <path d="M0 0 Q-30 -50 0 -100 Q30 -50 0 0" fill="url(#coneGrad)"/>
    <circle cx="0" cy="-120" r="25" fill="#FFB8D1"/>
    <path d="M-15 -110 L15 -130 M15 -110 L-15 -130" stroke="#FF99B7" stroke-width="3"/>
  </g>

  <!-- Star field -->
  <g opacity="0.8">
    <circle cx="50" cy="40" r="1.5" fill="#FFF"/>
    <circle cx="280" cy="90" r="2" fill="#FFF"/>
    <circle cx="150" cy="30" r="1.2" fill="#9CF"/>
  </g>

  <!-- Earth glow -->
  <circle cx="280" cy="40" r="40" fill="none" stroke="#1A5F6B" stroke-width="30" opacity="0.2"/>

  <!-- Antenna -->
  <path d="M210 35 Q230 10 240 15" stroke="#AAA" stroke-width="2" fill="none"/>
  <circle cx="240" cy="15" r="4" fill="#FF6B6B"/>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="100%">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#000811"/>
    </radialGradient>
    <radialGradient id="earthGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2b7bb9"/>
      <stop offset="100%" stop-color="#1d4f91"/>
    </radialGradient>
    <radialGradient id="craterGrad" fx="30%" fy="30%" r="40%">
      <stop offset="0%" stop-color="#bbb"/>
      <stop offset="100%" stop-color="#999"/>
    </radialGradient>
    <linearGradient id="coneGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffcc80"/>
      <stop offset="100%" stop-color="#d39e58"/>
    </linearGradient>
    <radialGradient id="scoopPink" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff8da3"/>
      <stop offset="100%" stop-color="#e34f6a"/>
    </radialGradient>
    <radialGradient id="scoopPurple" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#c585f7"/>
      <stop offset="100%" stop-color="#8a2be2"/>
    </radialGradient>
    <radialGradient id="scoopMint" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#a8ff9e"/>
      <stop offset="100%" stop-color="#5dcf8e"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="waffle" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,0 l10,10 M10,0 l-10,10" stroke="#b07a57" stroke-width="0.5"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  <circle cx="30" cy="40" r="1.5" fill="#fff"/>
  <circle cx="80" cy="20" r="2" fill="#fff" opacity="0.8"/>
  <circle cx="200" cy="10" r="1" fill="#fff"/>
  <circle cx="250" cy="70" r="1.8" fill="#fff"/>
  <circle cx="150" cy="30" r="1.2" fill="#fff"/>
  <circle cx="60" cy="100" r="1.3" fill="#fff" opacity="0.7"/>
  <circle cx="220" cy="50" r="1.5" fill="#fff"/>
  <circle cx="180" cy="25" r="1" fill="#fff" opacity="0.9"/>
  <circle cx="270" cy="15" r="1.7" fill="#fff"/>
  <circle cx="250" cy="50" r="25" fill="url(#earthGradient)" opacity="0.8"/>
  <path d="M0,220 Q75,200 150,220 Q225,240 300,220 L300,300 L0,300 Z" fill="#ccc"/>
  <circle cx="60" cy="240" r="15" fill="url(#craterGrad)"/>
  <circle cx="180" cy="260" r="20" fill="url(#craterGrad)"/>
  <circle cx="240" cy="230" r="10" fill="url(#craterGrad)"/>
  <circle cx="120" cy="250" r="12" fill="url(#craterGrad)"/>
  <g transform="translate(80,100) scale(0.7)">
    <path d="M50,160 L150,160 L140,220 L60,220 Z" fill="#f5f5f5" stroke="#e0e0e0" stroke-width="2"/>
    <path d="M50,170 Q30,200 50,210" fill="#f5f5f5" stroke="#e0e0e0" stroke-width="2"/>
    <path d="M150,160 Q180,120 175,80" fill="#f5f5f5" stroke="#e0e0e0" stroke-width="2"/>
    <circle cx="50" cy="210" r="8" fill="#fff" stroke="#e0e0e0" stroke-width="2"/>
    <circle cx="175" cy="80" r="8" fill="#fff" stroke="#e0e0e0" stroke-width="2"/>
    <path d="M80,220 L80,260 L100,260 L100,220 Z" fill="#f5f5f5" stroke="#e0e0e0" stroke-width="2"/>
    <ellipse cx="90" cy="260" rx="12" ry="6" fill="#ccc" stroke="#999" stroke-width="1"/>
    <path d="M120,220 L120,260 L140,260 L140,220 Z" fill="#f5f5f5" stroke="#e0e0e0" stroke-width="2"/>
    <ellipse cx="130" cy="260" rx="12" ry="6" fill="#ccc" stroke="#999" stroke-width="1"/>
    <rect x="90" y="80" width="20" height="70" fill="#f4a260" stroke="#8d5524" stroke-width="2"/>
    <ellipse cx="100" cy="60" rx="20" ry="15" fill="#f4a260" stroke="#8d5524" stroke-width="2"/>
    <path d="M85,60 L80,50 L85,50 Z" fill="#f4a260" stroke="#8d5524" stroke-width="1"/>
    <path d="M115,60 L120,50 L115,50 Z" fill="#f4a260" stroke="#8d5524" stroke-width="1"/>
    <line x1="95" y1="45" x2="95" y2="35" stroke="#8d5524" stroke-width="3"/>
    <circle cx="95" cy="32" r="5" fill="#8d5524" stroke="#8d5524" stroke-width="1"/>
    <line x1="105" y1="45" x2="105" y2="35" stroke="#8d5524" stroke-width="3"/>
    <circle cx="105" cy="32" r="5" fill="#8d5524" stroke="#8d5524" stroke-width="1"/>
    <circle cx="95" cy="90" r="4" fill="#8d5524"/>
    <circle cx="105" cy="110" r="5" fill="#8d5524"/>
    <circle cx="98" cy="130" r="3" fill="#8d5524"/>
    <circle cx="110" cy="100" r="3" fill="#8d5524"/>
    <circle cx="100" cy="60" r="30" fill="#fff" fill-opacity="0.2" stroke="#fff" stroke-width="2"/>
  </g>
  <g transform="translate(200,30)" filter="url(#glow)">
    <polygon points="0,0 10,30 -10,30" fill="url(#coneGradient)" stroke="#b07a57" stroke-width="1"/>
    <path d="M-9,5 L9,27 M9,5 L-9,27" stroke="#b07a57" stroke-width="0.5"/>
    <circle cx="0" cy="-5" r="10" fill="url(#scoopMint)" stroke="#ddf" stroke-width="1"/>
    <circle cx="0" cy="-15" r="8" fill="url(#scoopPurple)" stroke="#ddd" stroke-width="1"/>
    <circle cx="0" cy="-22" r="6" fill="url(#scoopPink)" stroke="#eee" stroke-width="1"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt by clearly depicting a giraffe in a spacesuit on the moon, reaching for a floating ice cream cone.

    The composition is more complete and visually engaging, with all elements of the prompt represented clearly.

    In contrast, Player 1's image lacks clarity and completeness in illustrating the scenario described in 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
19
Player 2
44
Rectangles

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

Player 1
2
Player 2
2
Circles

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
24

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
24

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
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
28
Player 2
41
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
9
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