Back

SVG Drawing Match #2271

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two flamingos ballroom dancing on a lilypad under a disco ball in the moonlight."

SVG by o3 high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Night sky gradient -->
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001033"/>
      <stop offset="100%" stop-color="#043457"/>
    </linearGradient>

    <!-- Moon glow -->
    <radialGradient id="moonGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.9"/>
      <stop offset="70%" stop-color="#dceaff" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#1e2a43" stop-opacity="0"/>
    </radialGradient>

    <!-- Disco-ball mirror pattern -->
    <pattern id="discoPattern" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
      <rect width="10" height="10" fill="#e0f7ff"/>
      <rect width="5" height="5" fill="#bfe2ff"/>
      <rect x="5" y="5" width="5" height="5" fill="#bfe2ff"/>
    </pattern>

    <!-- Lily-pad gradient -->
    <radialGradient id="lilyGrad" cx="0.4" cy="0.4" r="0.8">
      <stop offset="0%" stop-color="#5cb85c"/>
      <stop offset="100%" stop-color="#2f5e28"/>
    </radialGradient>

    <!-- Flamingo body gradient -->
    <linearGradient id="flamingoBody" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9bb8"/>
      <stop offset="50%" stop-color="#ff5fa2"/>
      <stop offset="100%" stop-color="#ff2a7f"/>
    </linearGradient>
  </defs>

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

  <!-- Stars -->
  <g fill="#ffffff" opacity="0.9">
    <circle cx="40" cy="30" r="1"/>
    <circle cx="80" cy="60" r="1.5"/>
    <circle cx="120" cy="40" r="1"/>
    <circle cx="160" cy="20" r="1.2"/>
    <circle cx="200" cy="55" r="1"/>
    <circle cx="260" cy="35" r="1.3"/>
    <circle cx="240" cy="80" r="0.9"/>
    <circle cx="30" cy="90" r="0.9"/>
    <circle cx="90" cy="100" r="1.1"/>
    <circle cx="150" cy="90" r="1"/>
  </g>

  <!-- Moon -->
  <circle cx="60" cy="60" r="28" fill="url(#moonGrad)"/>

  <!-- Disco ball + chain -->
  <line x1="230" y1="0" x2="230" y2="35" stroke="#d0e6ff" stroke-dasharray="3 3"/>
  <circle cx="230" cy="60" r="25" fill="url(#discoPattern)" stroke="#e0faff" stroke-width="1.2"/>
  <!-- Light rays -->
  <g stroke="#d0faff" stroke-width="0.7" stroke-linecap="round" opacity="0.6">
    <line x1="230" y1="60" x2="275" y2="60"/>
    <line x1="230" y1="60" x2="269" y2="37.5"/>
    <line x1="230" y1="60" x2="252.5" y2="21"/>
    <line x1="230" y1="60" x2="230" y2="15"/>
    <line x1="230" y1="60" x2="207.5" y2="21"/>
    <line x1="230" y1="60" x2="191" y2="37.5"/>
    <line x1="230" y1="60" x2="185" y2="60"/>
    <line x1="230" y1="60" x2="191" y2="82.5"/>
    <line x1="230" y1="60" x2="207.5" y2="99"/>
    <line x1="230" y1="60" x2="230" y2="105"/>
    <line x1="230" y1="60" x2="252.5" y2="99"/>
    <line x1="230" y1="60" x2="269" y2="82.5"/>
  </g>

  <!-- Lily-pad -->
  <ellipse cx="150" cy="240" rx="95" ry="28" fill="url(#lilyGrad)"/>
  <!-- Notch -->
  <path d="M150 240 L150 220 A95 28 0 0 0 180 239 Z" fill="url(#skyGrad)" opacity="0.8"/>

  <!-- Flamingo 1 -->
  <g transform="translate(120 175) rotate(-8)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="22" ry="16" fill="url(#flamingoBody)"/>
    <!-- Wing -->
    <path d="M-4 -4 Q6 -16 18 -4 Q6 6 -4 -4" fill="#ffb9d0" opacity="0.85"/>
    <!-- Neck -->
    <path d="M10 -10 C 30 -48 4 -70 -12 -55" fill="none" stroke="url(#flamingoBody)" stroke-width="6" stroke-linecap="round"/>
    <!-- Head -->
    <circle cx="-12" cy="-55" r="7" fill="url(#flamingoBody)"/>
    <!-- Eye -->
    <circle cx="-10" cy="-57" r="1.4" fill="#000"/>
    <!-- Beak -->
    <path d="M-17 -55 L-24 -53 L-24 -57 Z" fill="#ffdd55"/>
    <path d="M-24 -53 L-28 -54 L-24 -57 Z" fill="#000000"/>
    <!-- Legs -->
    <path d="M-5 16 l-6 32" stroke="#ff8eb0" stroke-width="4" stroke-linecap="round"/>
    <path d="M6 16 l16 32" stroke="#ff8eb0" stroke-width="4" stroke-linecap="round"/>
  </g>

  <!-- Flamingo 2 -->
  <g transform="translate(200 175) rotate(8)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="22" ry="16" fill="url(#flamingoBody)"/>
    <!-- Wing -->
    <path d="M4 -4 Q-6 -16 -18 -4 Q-6 6 4 -4" fill="#ffb9d0" opacity="0.85"/>
    <!-- Neck -->
    <path d="M-10 -10 C -30 -48 -4 -70 12 -55" fill="none" stroke="url(#flamingoBody)" stroke-width="6" stroke-linecap="round"/>
    <!-- Head -->
    <circle cx="12" cy="-55" r="7" fill="url(#flamingoBody)"/>
    <!-- Eye -->
    <circle cx="14" cy="-57" r="1.4" fill="#000"/>
    <!-- Beak -->
    <path d="M17 -55 L24 -53 L24 -57 Z" fill="#ffdd55"/>
    <path d="M24 -53 L28 -54 L24 -57 Z" fill="#000000"/>
    <!-- Legs (crossed for dancing pose) -->
    <path d="M5 16 l6 32" stroke="#ff8eb0" stroke-width="4" stroke-linecap="round"/>
    <path d="M-6 16 l-16 32" stroke="#ff8eb0" stroke-width="4" stroke-linecap="round"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonlight" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#e0e7ff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#a2b2e6;stop-opacity:0.6" />
    </radialGradient>
    <radialGradient id="discoBall" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:0.8" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="black" />
  <circle cx="150" cy="150" r="120" fill="url(#moonlight)" />
  
  <g transform="translate(100, 170)">
    <path d="M10-50 C-30-10 -30 30 10 20 C30 10 30 -10 10-50 Z" 
          fill="#ff6f61" />
    <path d="M-10-50 C-40-10 -40 30 -10 20 C10 10 10 -10 -10-50 Z" 
          fill="#ff6f61" transform="scale(-1, 1) translate(-20, 0)" />
    <circle cx="-15" cy="-50" r="5" fill="#ffd700" />
    <circle cx="15" cy="-50" r="5" fill="#ffd700" />
  </g>
  
  <ellipse cx="150" cy="250" rx="100" ry="20" fill="#77dd77" />
  <ellipse cx="150" cy="250" rx="90" ry="15" fill="url(#discoBall)" />
  
  <g transform="translate(150, 30)">
    <circle cx="0" cy="0" r="30" fill="silver" />
    <circle cx="-10" cy="-10" r="25" fill="url(#discoBall)" />
    <circle cx="10" cy="-10" r="25" fill="url(#discoBall)" />
    <circle cx="-10" cy="10" r="25" fill="url(#discoBall)" />
    <circle cx="10" cy="10" r="25" fill="url(#discoBall)" />
  </g>
  
  <text x="150" y="280" font-family="Arial" font-size="14" fill="white" text-anchor="middle">
    Dancing Under the Moonlight
  </text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 1

Judge's Analysis

    Player 1's image adheres more closely to the prompt by clearly depicting two flamingos on a lilypad under a disco ball, with the moon and stars in the background adding to the scene's ambiance.

    The composition is well-balanced, and the visual elements are easily recognizable.

    Player 2's submission is more abstract and lacks clarity in representing the flamingos or the lilypad, making it less aligned with 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
49
Player 2
13
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
16
Player 2
8
Ellipses

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

Player 1
3
Player 2
2
Lines

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

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

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

Player 1
4
Player 2
2

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
6

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
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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

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