Back

SVG Drawing Match #310

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flamingo on a surfboard surfing a wave of musical notes"

SVG by o3-mini low (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#89cff0"/>
      <stop offset="100%" stop-color="#ffffff"/>
    </linearGradient>
    
    <!-- Musical note pattern -->
    <pattern id="notesPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <text x="0" y="16" font-size="20" fill="rgba(0,0,0,0.15)">♪</text>
    </pattern>
    
    <!-- Wave gradient -->
    <linearGradient id="waveGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#4fc3f7"/>
      <stop offset="50%" stop-color="#29b6f6"/>
      <stop offset="100%" stop-color="#0288d1"/>
    </linearGradient>
    
    <!-- Flamingo gradient -->
    <linearGradient id="flamingoGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff8a80"/>
      <stop offset="100%" stop-color="#ff1744"/>
    </linearGradient>
    
    <!-- Surfboard gradient -->
    <linearGradient id="boardGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffe082"/>
      <stop offset="100%" stop-color="#ffd54f"/>
    </linearGradient>
    
    <!-- Wave path mask to integrate musical notes -->
    <mask id="notesMask">
      <rect width="300" height="300" fill="white"/>
      <rect x="0" y="150" width="300" height="150" fill="black"/>
    </mask>
  </defs>
  
  <!-- Wave of musical notes -->
  <g transform="translate(0, 130)">
    <path d="M -50 50 C 50 100, 150 0, 250 50 Q 275 60, 300 40 L300 100 L-50 100 Z" fill="url(#waveGradient)"/>
    <rect x="0" y="0" width="300" height="100" fill="url(#notesPattern)" mask="url(#notesMask)"/>
  </g>
  
  <!-- Surfboard -->
  <g transform="translate(100, 60) rotate(-20,50,150)">
    <ellipse cx="50" cy="150" rx="15" ry="50" fill="url(#boardGradient)" stroke="#f57f17" stroke-width="2"/>
    <path d="M50 100 Q65 150, 50 200" stroke="#bf360c" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Flamingo -->
  <g transform="translate(140, 40) scale(0.8)">
    <!-- Flamingo body -->
    <path d="M65,100 Q80,70 110,70 Q140,70 140,100 Q140,130 110,140 Q80,150 65,130 Z" fill="url(#flamingoGradient)" stroke="#d50000" stroke-width="2"/>
    <!-- Flamingo neck -->
    <path d="M110,70 Q115,40 130,30" stroke="#d50000" stroke-width="4" fill="none"/>
    <!-- Flamingo head -->
    <circle cx="133" cy="25" r="7" fill="#ff5252"/>
    <!-- Flamingo beak -->
    <path d="M137,25 L145,28" stroke="#bf360c" stroke-width="2"/>
    <!-- Flamingo leg -->
    <path d="M90,140 Q85,160 95,180" stroke="#bf360c" stroke-width="4" fill="none"/>
    <!-- Flamingo wing -->
    <path d="M90,110 Q100,100 110,110" stroke="#bf360c" stroke-width="2" fill="none"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient background -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#ff69b4" stop-opacity="0.8"/>
      <stop offset="1" stop-color="#4b0082" stop-opacity="0.8"/>
    </linearGradient>
    
    <!-- Wave pattern with musical notes -->
    <pattern id="musicWave" patternUnits="userSpaceOnUse" width="100" height="20">
      <path d="M0 0 Q 50 5, 100 0 Q 120 0, 150 5, 200 0 Q 250 0, 300 5" fill="#ffffff" opacity="0.2"/>
      <path d="M10 3 L 15 8 L 20 3 L 25 8 L 30 3" fill="#ffffff"/>
      <path d="M40 5 L 45 10 L 50 5 L 55 10 L 60 5" fill="#ffffff"/>
    </pattern>
    
    <!-- Flamingo gradients -->
    <linearGradient id="flamingoPink" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#ff99cc"/>
      <stop offset="1" stop-color="#ff66b3"/>
    </linearGradient>
    
    <linearGradient id="beakGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#ffa500"/>
      <stop offset="1" stop-color="#ff6b35"/>
    </linearGradient>
    
    <!-- Wood texture for surfboard -->
    <linearGradient id="woodGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#8b4513"/>
      <stop offset="1" stop-color="#a0522d"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <!-- Wave with musical notes -->
  <path d="M50 150 Q 150 100, 250 150 Q 300 180, 200 200 Q 100 180, 50 150" fill="url(#musicWave)"/>

  <!-- Flamingo body -->
  <path d="M200 180 Q 220 160, 240 180 Q 260 200, 220 220 L 180 200 Q 160 180, 140 160, 120 180 Q 100 200, 80 220 L 100 240 L 120 260 L 140 240 L 160 260 L 180 240 L 200 220 L 220 240 L 240 220 L 260 240" fill="url(#flamingoPink)"/>

  <!-- Flamingo neck and head -->
  <path d="M220 160 Q 230 140, 240 130 Q 250 120, 240 110 L 235 105 L 230 100 L 225 105 L 220 100 L 215 105 L 210 100 L 205 105 L 200 100 L 195 105 L 190 100 L 185 105 L 180 100 L 175 105 L 170 100 L 165 105 L 160 100 L 155 105 L 150 100 L 145 105" fill="url(#flamingoPink)"/>

  <!-- Beak -->
  <path d="M175 105 Q 180 100, 185 105" fill="url(#beakGradient)"/>

  <!-- Legs and feet -->
  <path d="M200 240 L 200 260 L 205 265 L 200 270 L 195 265 L 200 260" fill="#ff6663"/>
  <path d="M240 220 L 240 230 L 235 235 L 240 240 L 245 235 L 240 230" fill="#ff6663"/>

  <!-- Surfboard -->
  <rect x="180" y="190" width="60" height="10" fill="url(#woodGradient)"/>
  <rect x="185" y="195" width="50" height="5" fill="#654321" opacity="0.5"/>

  <!-- Musical notes decoration -->
  <path d="M50 250 L 55 255 L 60 250 L 65 255 L 70 250" fill="white"/>
  <path d="M100 240 L 105 245 L 110 240 L 115 245 L 120 240" fill="white"/>
  <path d="M150 260 L 155 265 L 160 260 L 165 265 L 170 260" fill="white"/>
  <path d="M200 280 Q 210 270, 220 280 Q 230 290, 220 290" fill="white"/>
  <path d="M250 270 Q 260 260, 270 270 Q 280 280, 270 280" fill="white"/>
  <path d="M300 250 Q 310 240, 320 250 Q 330 260, 320 260" fill="white"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image clearly depicts a flamingo on a surfboard surfing a wave of musical notes, adhering closely to the prompt.

    The inclusion of musical notes on the wave adds a creative touch.

    Player 2's image is abstract and less clear in representing the flamingo and surfboard, making it less effective in fulfilling 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
13
Player 2
18
Rectangles

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

Player 1
4
Player 2
3
Circles

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
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
3
Player 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
22
Player 2
93
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
6
Player 2
5
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
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