Back

SVG Drawing Match #112

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flamingo in a spacesuit playing a saxophone on a neon-lit moon"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0e4f7" />
      <stop offset="100%" stop-color="#68779a" />
    </radialGradient>
    <linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff85c0"/>
      <stop offset="100%" stop-color="#ff3a82"/>
    </linearGradient>
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#798691"/>
      <stop offset="100%" stop-color="#d6dfe6"/>
    </linearGradient>
    <linearGradient id="saxGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ffcc61" />
      <stop offset="100%" stop-color="#e89d00" />
    </linearGradient>
  </defs>
  <circle cx="150" cy="150" r="100" fill="url(#moonGradient)" />
  <path d="M150 50 Q160 100 110 120" stroke="#4a5d82" stroke-width="5" fill="none" />
  <path d="M160 130 Q180 165 140 180" stroke="#4a5d82" stroke-width="5" fill="none" />
  <ellipse cx="225" cy="90" rx="10" ry="5" fill="#9caac4" transform="rotate(-20 225 90)" />
  <ellipse cx="200" cy="50" rx="10" ry="5" fill="#9caac4" transform="rotate(-45 200 50)" />
  <ellipse cx="250" cy="120" rx="6" ry="3" fill="#9caac4" transform="rotate(-10 250 120)" />
  <g transform="translate(100,130)">
    <ellipse cx="0" cy="0" rx="10" ry="18" fill="url(#flamingoGradient)" />
    <path d="M-10 -30 Q-5 -40 5 -30" fill="url(#flamingoGradient)" />
    <path d="M5 -30 L10 -35 C8 -50 15 -60 20 -50" fill="none" stroke="#ff3a82" stroke-width="2"/>
    <path d="M-10 0 Q15 10 25 30" stroke="url(#flamingoGradient)" stroke-width="6" fill="none" />
    <ellipse cx="20" cy="50" rx="15" ry="6" fill="url(#suitGradient)" />
    <path d="M20 30 C30 25 35 40 45 40 C55 40 60 55 55 65" fill="url(#saxGradient)" />
    <circle cx="50" cy="33" r="3" fill="#d8a716"/>
    <circle cx="52" cy="44" r="3" fill="#d8a716"/>
    <path d="M52 44 L40 35" stroke="#d8a716" stroke-width="1.5"/>
  </g>
  <circle cx="150" cy="150" r="100" fill="none" stroke="#2a3a56" stroke-width="8" stroke-dasharray="5,5" opacity="0.4"/>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff00ff" stop-opacity="0.3"/>
      <stop offset="100%" stop-color="#00ffff" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="spacesuit" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#c0c0c0"/>
    </linearGradient>
    <pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white"/>
      <circle cx="15" cy="15" r="0.5" fill="white"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#120024"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>
  
  <!-- Moon -->
  <circle cx="150" cy="200" r="80" fill="#808080"/>
  <circle cx="150" cy="200" r="120" fill="url(#moonGlow)"/>
  
  <!-- Flamingo body -->
  <path d="M140,160 C160,140 180,150 190,170 Q200,190 180,210" fill="url(#spacesuit)" stroke="#404040" stroke-width="2"/>
  <circle cx="185" cy="155" r="20" fill="url(#spacesuit)" stroke="#404040" stroke-width="2"/>
  
  <!-- Helmet -->
  <circle cx="185" cy="155" r="23" fill="none" stroke="#40ffff" stroke-width="2"/>
  <ellipse cx="175" cy="150" rx="5" ry="8" fill="#40ffff" opacity="0.5"/>
  
  <!-- Neck -->
  <path d="M180,155 Q160,140 150,120" stroke="#ff69b4" fill="none" stroke-width="4"/>
  
  <!-- Head -->
  <path d="M150,120 Q145,115 140,120" stroke="#ff69b4" fill="none" stroke-width="4"/>
  
  <!-- Saxophone -->
  <path d="M160,170 Q180,160 190,180" fill="#ffd700" stroke="#806000" stroke-width="1"/>
  <circle cx="190" cy="180" r="5" fill="#ffd700"/>
  <rect x="165" y="165" width="15" height="2" fill="#ffd700" transform="rotate(-20,165,165)"/>
  
  <!-- Musical notes -->
  <g fill="#40ffff">
    <path d="M200,150 Q205,145 210,150 L208,160 L202,160 Z"/>
    <path d="M220,140 Q225,135 230,140 L228,150 L222,150 Z"/>
    <path d="M210,170 Q215,165 220,170 L218,180 L212,180 Z"/>
  </g>
  
  <!-- Neon lights -->
  <circle cx="150" cy="200" r="85" fill="none" stroke="#ff00ff" stroke-width="1" opacity="0.5"/>
  <circle cx="150" cy="200" r="90" fill="none" stroke="#00ffff" stroke-width="1" opacity="0.5"/>
  
  <!-- Glow effects -->
  <circle cx="185" cy="155" r="25" fill="none" stroke="#40ffff" stroke-width="1" opacity="0.3"/>
  <circle cx="185" cy="155" r="27" fill="none" stroke="#40ffff" stroke-width="1" opacity="0.2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt by incorporating the spacesuit and neon-lit elements clearly, with a visually appealing starry background that suggests a lunar environment.

    The composition is well-balanced and the colors are vibrant, enhancing the overall creativity and adherence to the theme.

    Player 1's image is more abstract and less recognizable in terms of the prompt's specifics.

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
16
Player 2
22
Rectangles

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

Player 1
Player 2
3
Circles

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

Player 1
4
Player 2
11
Ellipses

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
11

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
4
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
16
Player 2
24
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
4
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