Back

SVG Drawing Match #2385

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An astronaut planting a flag on a giant floating waffle in space."

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background stars -->
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a0a2e" />
      <stop offset="100%" stop-color="#000510" />
    </radialGradient>
    <radialGradient id="waffleGradient" cx="50%" cy="50%" r="70%" fx="60%" fy="40%">
      <stop offset="0%" stop-color="#f7d485" />
      <stop offset="100%" stop-color="#c9873e" />
    </radialGradient>
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    <linearGradient id="flagGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff4f4f" />
      <stop offset="100%" stop-color="#d10000" />
    </linearGradient>
    <pattern id="wafflePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="none" stroke="#b17431" stroke-width="2" />
    </pattern>
  </defs>
  
  <!-- Space background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="40" r="1" fill="white" />
    <circle cx="60" cy="20" r="0.8" fill="white" />
    <circle cx="90" cy="60" r="1.2" fill="white" />
    <circle cx="120" cy="30" r="0.7" fill="white" />
    <circle cx="150" cy="50" r="1" fill="white" />
    <circle cx="180" cy="25" r="0.9" fill="white" />
    <circle cx="210" cy="45" r="1.1" fill="white" />
    <circle cx="240" cy="15" r="0.8" fill="white" />
    <circle cx="270" cy="55" r="1" fill="white" />
    <circle cx="20" cy="80" r="1.2" fill="white" />
    <circle cx="50" cy="100" r="0.7" fill="white" />
    <circle cx="80" cy="120" r="1" fill="white" />
    <circle cx="110" cy="90" r="0.9" fill="white" />
    <circle cx="250" cy="80" r="1.1" fill="white" />
    <circle cx="280" cy="110" r="0.8" fill="white" />
    <circle cx="25" cy="140" r="1" fill="white" />
    <circle cx="55" cy="160" r="0.8" fill="white" />
    <circle cx="85" cy="200" r="1.2" fill="white" />
    <circle cx="230" cy="170" r="0.7" fill="white" />
    <circle cx="260" cy="190" r="1" fill="white" />
    <circle cx="290" cy="215" r="0.9" fill="white" />
    <circle cx="40" cy="230" r="1.1" fill="white" />
    <circle cx="70" cy="250" r="0.8" fill="white" />
    <circle cx="100" cy="270" r="1" fill="white" />
    <circle cx="130" cy="290" r="1.2" fill="white" />
    <circle cx="160" cy="240" r="0.7" fill="white" />
    <circle cx="190" cy="260" r="1" fill="white" />
    <circle cx="220" cy="280" r="0.9" fill="white" />
    <circle cx="250" cy="240" r="1.1" fill="white" />
    <circle cx="280" cy="270" r="0.8" fill="white" />
  </g>
  
  <!-- Distant planet -->
  <circle cx="40" cy="40" r="15" fill="#7a63b5" opacity="0.7" />
  <circle cx="35" cy="35" r="5" fill="#9a83d5" opacity="0.7" />
  
  <!-- Giant waffle -->
  <g id="waffle" transform="translate(150, 170) rotate(15)">
    <rect x="-70" y="-40" width="140" height="80" rx="10" ry="10" fill="url(#waffleGradient)" />
    <rect x="-70" y="-40" width="140" height="80" rx="10" ry="10" fill="url(#wafflePattern)" />
    
    <!-- Waffle indentations -->
    <g fill="#b17431" opacity="0.3">
      <rect x="-60" y="-30" width="10" height="10" rx="2" ry="2" />
      <rect x="-40" y="-30" width="10" height="10" rx="2" ry="2" />
      <rect x="-20" y="-30" width="10" height="10" rx="2" ry="2" />
      <rect x="0" y="-30" width="10" height="10" rx="2" ry="2" />
      <rect x="20" y="-30" width="10" height="10" rx="2" ry="2" />
      <rect x="40" y="-30" width="10" height="10" rx="2" ry="2" />
      
      <rect x="-60" y="-10" width="10" height="10" rx="2" ry="2" />
      <rect x="-40" y="-10" width="10" height="10" rx="2" ry="2" />
      <rect x="-20" y="-10" width="10" height="10" rx="2" ry="2" />
      <rect x="0" y="-10" width="10" height="10" rx="2" ry="2" />
      <rect x="20" y="-10" width="10" height="10" rx="2" ry="2" />
      <rect x="40" y="-10" width="10" height="10" rx="2" ry="2" />
      
      <rect x="-60" y="10" width="10" height="10" rx="2" ry="2" />
      <rect x="-40" y="10" width="10" height="10" rx="2" ry="2" />
      <rect x="-20" y="10" width="10" height="10" rx="2" ry="2" />
      <rect x="0" y="10" width="10" height="10" rx="2" ry="2" />
      <rect x="20" y="10" width="10" height="10" rx="2" ry="2" />
      <rect x="40" y="10" width="10" height="10" rx="2" ry="2" />
    </g>
    
    <!-- Syrup drips -->
    <path d="M-50,-40 C-52,-50 -48,-50 -45,-60 S-40,-50 -38,-40" fill="#8B4513" opacity="0.8" />
    <path d="M10,-40 C8,-50 12,-50 15,-65 S20,-50 22,-40" fill="#8B4513" opacity="0.8" />
    <path d="M40,-40 C38,-55 42,-60 45,-70 S50,-55 52,-40" fill="#8B4513" opacity="0.8" />
    
    <!-- Butter pat -->
    <rect x="30" y="-25" width="20" height="15" rx="2" ry="2" fill="#f9e076" />
    <rect x="32" y="-23" width="16" height="11" rx="1" ry="1" fill="#fdf7c3" opacity="0.6" />
  </g>
  
  <!-- Astronaut -->
  <g id="astronaut" transform="translate(120, 120)">
    <!-- Suit -->
    <ellipse cx="0" cy="0" rx="15" ry="20" fill="#f0f0f0" />
    <ellipse cx="0" cy="-25" rx="12" ry="12" fill="#f0f0f0" />
    
    <!-- Visor -->
    <path d="M-8,-28 Q0,-35 8,-28 Q8,-22 0,-20 Q-8,-22 -8,-28" fill="#4a6baf" />
    <path d="M-6,-28 Q0,-33 6,-28 Q6,-23 0,-21 Q-6,-23 -6,-28" fill="#7ac0ff" opacity="0.5" />
    
    <!-- Backpack -->
    <rect x="-12" y="-10" width="24" height="20" rx="4" ry="4" fill="#c0c0c0" />
    <rect x="-10" y="-8" width="20" height="16" rx="2" ry="2" fill="#a0a0a0" />
    
    <!-- Arms -->
    <path d="M-15,0 Q-25,5 -20,15" stroke="#f0f0f0" stroke-width="6" fill="none" />
    <path d="M15,0 Q25,5 30,0 Q35,-5 35,-15" stroke="#f0f0f0" stroke-width="6" fill="none" />
    
    <!-- Legs -->
    <path d="M-7,20 L-12,40" stroke="#f0f0f0" stroke-width="8" fill="none" />
    <path d="M7,20 L12,40" stroke="#f0f0f0" stroke-width="8" fill="none" />
    
    <!-- Boots -->
    <ellipse cx="-12" cy="42" rx="6" ry="4" fill="#c0c0c0" />
    <ellipse cx="12" cy="42" rx="6" ry="4" fill="#c0c0c0" />
    
    <!-- Flag -->
    <line x1="35" y1="-15" x2="35" y2="-45" stroke="#c0c0c0" stroke-width="2" />
    <path d="M35,-45 L60,-45 L55,-35 L60,-25 L35,-25 Z" fill="url(#flagGradient)" />
    <circle cx="35" cy="-45" r="2" fill="#e0e0e0" />
    
    <!-- Flag details -->
    <circle cx="47" cy="-35" r="4" fill="white" />
    <path d="M45,-37 L49,-33 M45,-33 L49,-37" stroke="white" stroke-width="1.5" />
  </g>
  
  <!-- Floating particles -->
  <g filter="url(#glow)">
    <circle cx="80" cy="100" r="1.5" fill="#ffcc00" />
    <circle cx="180" cy="80" r="1" fill="#ffcc00" />
    <circle cx="220" cy="140" r="1.2" fill="#ffcc00" />
    <circle cx="90" cy="200" r="0.8" fill="#ffcc00" />
    <circle cx="200" cy="220" r="1" fill="#ffcc00" />
  </g>
  
  <!-- Maple syrup stream -->
  <path d="M150,210 C160,220 170,215 175,225 S185,240 190,250" fill="none" stroke="#8B4513" stroke-width="3" stroke-opacity="0.6" />
</svg>
SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#3B064D"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <pattern id="wafflePattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#E0A846"/>
      <path d="M0,5 L20,5 M0,10 L20,10 M0,15 L20,15 M5,0 L5,20 M10,0 L10,20 M15,0 L15,20" stroke="#C88F2B" stroke-width="1"/>
    </pattern>
    <radialGradient id="visorGrad" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#A0DFFB"/>
      <stop offset="100%" stop-color="#1E6F8B"/>
    </radialGradient>
    <linearGradient id="flagGrad" x1="0%" y1="0%" x2="100%" y2="50%">
      <stop offset="0%" stop-color="#FF3F3F"/>
      <stop offset="100%" stop-color="#D90000"/>
    </linearGradient>
    <linearGradient id="swirlGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF69B4" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#9400D3" stop-opacity="0.3"/>
    </linearGradient>
    <filter id="starBlur">
      <feGaussianBlur in="SourceGraphic" stdDeviation="0.5"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)"/>
  <g id="stars">
    <circle cx="20" cy="30" r="1.2" fill="#FFF"/>
    <circle cx="280" cy="50" r="1" fill="#FFF"/>
    <circle cx="150" cy="20" r="1.5" fill="#FFF"/>
    <circle cx="90" cy="100" r="0.8" fill="#FFF"/>
    <circle cx="200" cy="60" r="1" fill="#FFF"/>
    <circle cx="50" cy="200" r="1.2" fill="#FFF"/>
    <circle cx="250" cy="180" r="1.3" fill="#FFF"/>
    <circle cx="120" cy="150" r="0.7" fill="#FFF" filter="url(#starBlur)"/>
  </g>
  <path d="M30,260 C90,190 150,240 240,170" stroke="url(#swirlGrad)" stroke-width="3" fill="none" opacity="0.5"/>
  <g id="waffle" transform="rotate(-10 150 200)">
    <ellipse cx="150" cy="200" rx="130" ry="80" fill="url(#wafflePattern)"/>
    <ellipse cx="150" cy="215" rx="110" ry="20" fill="rgba(0,0,0,0.2)"/>
  </g>
  <g id="astronaut" transform="translate(240,144) scale(0.5) rotate(-10)">
    <rect x="-12" y="0" width="24" height="40" rx="5" ry="5" fill="#fff" stroke="#aaa" stroke-width="2"/>
    <path d="M12,5 l25,15" stroke="#aaa" stroke-width="4" fill="none"/>
    <path d="M-12,5 l-25,15" stroke="#aaa" stroke-width="4" fill="none"/>
    <path d="M5,40 l5,25" stroke="#aaa" stroke-width="4" fill="none"/>
    <path d="M-5,40 l-5,25" stroke="#aaa" stroke-width="4" fill="none"/>
    <circle cx="0" cy="-20" r="20" fill="#f0f0f0" stroke="#aaa" stroke-width="2"/>
    <ellipse cx="0" cy="-20" rx="15" ry="12" fill="url(#visorGrad)" stroke="#888" stroke-width="1"/>
    <rect x="-10" y="10" width="20" height="30" fill="#ddd" stroke="#aaa" stroke-width="2" rx="3"/>
    <g id="flag">
      <line x1="12" y1="5" x2="100" y2="-80" stroke="#888" stroke-width="2"/>
      <polygon points="100,-80 160,-70 160,-50 100,-60" fill="url(#flagGrad)" stroke="#800"/>
    </g>
  </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 submission showcases a more detailed and creative interpretation of the prompt with a visually appealing waffle that has a pat of butter and clear space-themed elements.

    The astronaut is well-integrated into the scene, and the composition is more dynamic.

    Player 2's image, while technically sound, is simpler and less engaging in terms of creativity and adherence to the theme.

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

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

Player 1
26
Player 2
4
Circles

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

Player 1
39
Player 2
9
Ellipses

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

Player 1
4
Player 2
3
Lines

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

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

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

Player 1
5
Player 2
4

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
17

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
2
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
39
Player 2
22
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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