Back

SVG Drawing Match #621

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flamingo playing a saxophone under a starry night sky"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0a1a3f"/>
      <stop offset="100%" style="stop-color:#1f3b8d"/>
    </linearGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:white;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:white;stop-opacity:0"/>
    </radialGradient>
    <linearGradient id="saxGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ffd700"/>
      <stop offset="100%" style="stop-color:#ff8c00"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Stars -->
  <g class="stars">
    <circle cx="50" cy="30" r="1" fill="white"/>
    <circle cx="80" cy="50" r="1.5" fill="white"/>
    <circle cx="150" cy="20" r="1" fill="white"/>
    <circle cx="200" cy="40" r="1.2" fill="white"/>
    <circle cx="250" cy="60" r="1" fill="white"/>
    <circle cx="40" cy="80" r="1.3" fill="white"/>
    <circle cx="280" cy="30" r="1" fill="white"/>
    <circle cx="120" cy="70" r="1.5" fill="white"/>
  </g>

  <!-- Glowing stars -->
  <circle cx="180" cy="50" r="3" fill="url(#starGlow)">
    <animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/>
  </circle>
  <circle cx="70" cy="40" r="4" fill="url(#starGlow)">
    <animate attributeName="opacity" values="1;0.3;1" dur="2s" repeatCount="indefinite"/>
  </circle>

  <!-- Flamingo -->
  <g transform="translate(100,80)">
    <!-- Body -->
    <path d="M 100 100 C 130 80, 150 90, 160 120 C 170 150, 160 170, 140 180 C 120 190, 90 180, 80 160 C 70 140, 80 120, 100 100" 
          fill="#ff69b4"/>
    
    <!-- Neck -->
    <path d="M 110 110 C 90 90, 80 60, 90 40 C 100 20, 120 10, 130 30 S 120 80, 110 110" 
          fill="#ff69b4" stroke="#ff1493" stroke-width="1"/>
    
    <!-- Head -->
    <ellipse cx="130" cy="30" rx="15" ry="10" fill="#ff69b4"/>
    
    <!-- Beak -->
    <path d="M 140 30 C 150 28, 160 32, 165 35" 
          fill="none" stroke="#333" stroke-width="3"/>
    
    <!-- Legs -->
    <line x1="100" y1="180" x2="90" y2="220" stroke="#ff69b4" stroke-width="3"/>
    <line x1="120" y1="180" x2="130" y2="220" stroke="#ff69b4" stroke-width="3"/>
  </g>

  <!-- Saxophone -->
  <g transform="translate(160,110) rotate(-20)">
    <path d="M 0 0 C 20 -10, 40 -15, 60 -5 C 70 0, 75 10, 70 20 C 60 30, 40 35, 20 25 C 10 20, 5 10, 0 0" 
          fill="url(#saxGradient)"/>
    <circle cx="10" cy="5" r="3" fill="#333"/>
    <circle cx="20" cy="8" r="3" fill="#333"/>
    <circle cx="30" cy="10" r="3" fill="#333"/>
  </g>

  <!-- Musical notes -->
  <g fill="#fff" opacity="0.8">
    <path d="M 200 60 C 205 55, 210 58, 208 65 L 205 80 L 200 78 L 203 63 C 204 60, 200 58, 198 60">
      <animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
    </path>
    <path d="M 220 70 C 225 65, 230 68, 228 75 L 225 90 L 220 88 L 223 73 C 224 70, 220 68, 218 70">
      <animate attributeName="opacity" values="0;1;0" dur="3s" begin="1s" repeatCount="indefinite"/>
    </path>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#0b0f3c"/>
      <stop offset="100%" stop-color="#2a194d"/>
    </radialGradient>
    <linearGradient id="flamingoGrad" x1="50%" y1="100%" x2="50%" y2="0%">
      <stop offset="0%" stop-color="#ff69d2"/>
      <stop offset="100%" stop-color="#ff389a"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Stars -->
  <g filter="url(#glow)" opacity="0.9">
    <circle cx="45" cy="60" r="1.2" fill="#fff" opacity="0.8"/>
    <circle cx="120" cy="30" r="1.5" fill="#aaf"/>
    <circle cx="250" cy="80" r="1.8" fill="#fff"/>
    <circle cx="180" cy="150" r="1.2" fill="#aaf"/>
    <circle cx="280" cy="200" r="2" fill="#fff"/>
  </g>

  <!-- Flamingo Body -->
  <path d="M150 250 Q160 180 200 150 Q170 130 140 180 L130 250 Z" 
        fill="url(#flamingoGrad)" stroke="#d4126f" stroke-width="1.5"/>

  <!-- Neck & Head -->
  <path d="M200 150 Q220 100 240 80 Q235 60 210 70 Q200 85 190 100 L185 130 Z" 
        fill="url(#flamingoGrad)" stroke="#d4126f" stroke-width="1.5"/>

  <!-- Saxophone -->
  <g transform="translate(160 130) rotate(30)">
    <path d="M0 0 Q20 -30 50 -40 L60 -35 Q40 -25 30 -5 L0 0 Z" fill="#gold"/>
    <rect x="35" y="-40" width="15" height="80" fill="#b8860b" rx="3"/>
    <circle cx="45" cy="15" r="8" fill="#654321"/>
    <path d="M45 15 Q60 30 75 20" stroke="#654321" stroke-width="3"/>
  </g>

  <!-- Musical Sparkles -->
  <g transform="translate(200 100)" opacity="0.7">
    <path d="M0 0 L5 5 M0 5 L5 0" stroke="#ff69b4" stroke-width="1"/>
    <path d="M10 -5 L15 0 M10 0 L15 -5" stroke="#aaf" stroke-width="1"/>
    <circle cx="20" cy="-10" r="1.5" fill="#fff"/>
  </g>

  <!-- Legs -->
  <path d="M145 250 L135 290 M155 250 L165 290" 
        stroke="#ff389a" stroke-width="4" stroke-linecap="round"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission more effectively captures the idea of a flamingo playing a saxophone under a starry night sky.

    The flamingo's posture and the clear depiction of the saxophone enhance the narrative aspect of the prompt.

    Additionally, the composition is cleaner and more visually appealing, with a well-balanced use of color and space.

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
23
Player 2
16
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
13
Player 2
7
Ellipses

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

Player 1
1
Player 2
Lines

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

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

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
10

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
4
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
28
Player 2
31
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
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