Back

SVG Drawing Match #1814

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing flamingos with top hats in a desert at sunset"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunset" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="50%" stop-color="#fad0c4"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <linearGradient id="desert" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#fbc2eb"/>
      <stop offset="100%" stop-color="#a6c1ee"/>
    </linearGradient>
    <radialGradient id="flamingoBody" cx="50%" cy="40%" r="50%">
      <stop offset="0%" stop-color="#ff6b81"/>
      <stop offset="100%" stop-color="#ff4757"/>
    </radialGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2f3542"/>
      <stop offset="100%" stop-color="#57606f"/>
    </linearGradient>
  </defs>
  
  <!-- Background: sunset sky -->
  <rect width="300" height="300" fill="url(#sunset)"/>
  
  <!-- Desert dunes -->
  <path d="M0 220 Q75 200 150 220 T300 220 L300 300 L0 300 Z" fill="url(#desert)"/>
  
  <!-- Flamingo 1 -->
  <g id="flamingo1" transform="translate(70,180) rotate(-10)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="15" ry="25" fill="url(#flamingoBody)"/>
    <!-- Neck -->
    <path d="M5 0 Q10 -30 0 -50" stroke="url(#flamingoBody)" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Head -->
    <circle cx="-2" cy="-55" r="5" fill="url(#flamingoBody)"/>
    <!-- Beak -->
    <path d="M-2 -55 L2 -52" stroke="#000" stroke-width="1.5" />
    <!-- Leg -->
    <path d="M5 25 L5 45" stroke="url(#flamingoBody)" stroke-width="3" stroke-linecap="round"/>
    <!-- Top Hat -->
    <g id="hat1" transform="translate(-10,-70)">
      <rect x="-8" y="0" width="16" height="4" fill="url(#hatGradient)"/>
      <rect x="-5" y="-12" width="10" height="12" fill="url(#hatGradient)"/>
      <ellipse cx="0" cy="0" rx="8" ry="2" fill="rgba(0,0,0,0.3)"/>
    </g>
  </g>
  
  <!-- Flamingo 2 -->
  <g id="flamingo2" transform="translate(170,190) rotate(15)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="15" ry="25" fill="url(#flamingoBody)"/>
    <!-- Neck -->
    <path d="M-5 0 Q-10 -30 0 -50" stroke="url(#flamingoBody)" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Head -->
    <circle cx="2" cy="-55" r="5" fill="url(#flamingoBody)"/>
    <!-- Beak -->
    <path d="M2 -55 L-2 -52" stroke="#000" stroke-width="1.5" />
    <!-- Leg -->
    <path d="M-5 25 L-5 45" stroke="url(#flamingoBody)" stroke-width="3" stroke-linecap="round"/>
    <!-- Top Hat -->
    <g id="hat2" transform="translate(8,-70)">
      <rect x="-8" y="0" width="16" height="4" fill="url(#hatGradient)"/>
      <rect x="-5" y="-12" width="10" height="12" fill="url(#hatGradient)"/>
      <ellipse cx="0" cy="0" rx="8" ry="2" fill="rgba(0,0,0,0.3)"/>
    </g>
  </g>
  
  <!-- Additional decorative details: dancing effect -->
  <path d="M50 250 Q75 230 100 250 T150 250" fill="none" stroke="#ff6b81" stroke-dasharray="4,4" stroke-width="2" />
  <path d="M200 250 Q225 230 250 250 T290 250" fill="none" stroke="#ff6b81" stroke-dasharray="4,4" stroke-width="2" />
  
  <!-- Abstract musical notes to indicate dance rhythm -->
  <g fill="#ffffff" opacity="0.8">
    <circle cx="120" cy="80" r="3"/>
    <path d="M125 77 v-10 c0-5 5-5 5 0 v10" fill="none" stroke="#fff" stroke-width="1.5" stroke-linecap="round"/>
    <circle cx="140" cy="90" r="2.5"/>
    <path d="M143 87 v-8 c0-4 4-4 4 0 v8" fill="none" stroke="#fff" stroke-width="1.5" stroke-linecap="round"/>
    <circle cx="160" cy="70" r="3"/>
    <path d="M165 67 v-10 c0-5 5-5 5 0 v10" fill="none" stroke="#fff" stroke-width="1.5" stroke-linecap="round"/>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sunset" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" stop-color="#FF6F61" />
      <stop offset="50%" stop-color="#FFA500" />
      <stop offset="100%" stop-color="#FFD700" />
    </radialGradient>
    <linearGradient id="desert" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#F4A460" />
      <stop offset="100%" stop-color="#D2B48C" />
    </linearGradient>
    <pattern id="hatPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#000" />
      <rect x="5" y="5" width="10" height="10" fill="#fff" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#sunset)" />
  <rect y="200" width="300" height="100" fill="url(#desert)" />
  <g transform="translate(50, 100)">
    <path d="M0,100 C50,50 100,50 150,100 S250,150 300,100" fill="none" stroke="#FF69B4" stroke-width="10" />
    <ellipse cx="75" cy="50" rx="15" ry="30" fill="#FF69B4" />
    <rect x="60" y="20" width="30" height="30" fill="url(#hatPattern)" />
    <ellipse cx="225" cy="50" rx="15" ry="30" fill="#FF69B4" />
    <rect x="210" y="20" width="30" height="30" fill="url(#hatPattern)" />
  </g>
  <circle cx="150" cy="50" r="40" fill="#FFD700" />
  <path d="M150,10 Q175,25 200,10 S250,25 300,10" fill="none" stroke="#FF4500" stroke-width="5" />
</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 creatively captures the whimsical concept of dancing flamingos with top hats through a playful and stylized design.

    The use of musical notes adds to the dancing theme, and the gradient background effectively suggests a sunset.

    Player 2's image, while vibrant, lacks the clarity and compositional strength to fully convey the prompt's 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
26
Player 2
11
Rectangles

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

Player 1
5
Player 2
6
Circles

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

Player 1
5
Player 2
1
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
9

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
36
Player 2
6
Max Group Nesting

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

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