Back

SVG Drawing Match #12

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing flamingos in space with disco helmets"

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="space" cx="50%" cy="50%" r="60%">
      <stop offset="0%" style="stop-color:#2a0054"/>
      <stop offset="100%" style="stop-color:#000012"/>
    </radialGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white" opacity="0.8"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#space)"/>
  <rect width="300" height="300" fill="url(#stars)"/>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="80" r="30" fill="#c0c0c0" filter="url(#glow)"/>
  <circle cx="150" cy="80" r="28" fill="#808080"/>
  
  <!-- First Flamingo -->
  <g transform="translate(120,150) rotate(-20)">
    <path d="M0,0 Q-20,-30 -10,-60 T0,-80" stroke="#ff69b4" fill="none" stroke-width="3"/>
    <path d="M-10,-60 Q-5,-40 10,-50" fill="#ff69b4"/>
    <circle cx="0" cy="-80" r="15" fill="#80ffff" opacity="0.8"/>
    <circle cx="0" cy="-80" r="12" fill="#ff69b4"/>
  </g>
  
  <!-- Second Flamingo -->
  <g transform="translate(180,160) rotate(20)">
    <path d="M0,0 Q20,-30 10,-60 T0,-80" stroke="#ff1493" fill="none" stroke-width="3"/>
    <path d="M10,-60 Q5,-40 -10,-50" fill="#ff1493"/>
    <circle cx="0" cy="-80" r="15" fill="#80ffff" opacity="0.8"/>
    <circle cx="0" cy="-80" r="12" fill="#ff1493"/>
  </g>
  
  <!-- Disco Lights -->
  <circle cx="50" cy="50" r="10" fill="#ff0" opacity="0.5" filter="url(#glow)"/>
  <circle cx="250" cy="50" r="10" fill="#0ff" opacity="0.5" filter="url(#glow)"/>
  <circle cx="50" cy="250" r="10" fill="#f0f" opacity="0.5" filter="url(#glow)"/>
  <circle cx="250" cy="250" r="10" fill="#0f0" opacity="0.5" filter="url(#glow)"/>
  
  <!-- Musical Notes -->
  <path d="M40,120 Q60,100 60,140 L60,160 Q60,170 50,170 T40,160 L40,140" fill="#fff"/>
  <path d="M240,140 Q260,120 260,160 L260,180 Q260,190 250,190 T240,180 L240,160" fill="#fff"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%">
      <stop offset="30%" stop-color="#0c0032" />
      <stop offset="100%" stop-color="#290066" />
    </radialGradient>
    <pattern id="starsPattern" x="0" y="0" width="5" height="5" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1" fill="white" />
      <circle cx="4" cy="4" r="0.5" fill="#ddddff" />
    </pattern>
    <linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff4e50" />
      <stop offset="100%" stop-color="#f9d423" />
    </linearGradient>
    <linearGradient id="helmetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ccf6c8" />
      <stop offset="100%" stop-color="#a3d5d3" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#spaceGradient)" />
  <rect width="100%" height="100%" fill="url(#starsPattern)" opacity="0.5" />
  
  <!-- Flamingo 1 -->
  <g transform="translate(80 150) scale(0.6)">
    <path d="M15 200 C45 200, 45 150, 75 150 S 95 200, 125 200" fill="url(#flamingoGradient)" />
    <circle cx="75" cy="130" r="45" fill="url(#helmetGradient)" />
    <circle cx="75" cy="130" r="40" fill="url(#flamingoGradient)" />
    <line x1="60" y1="150" x2="90" y2="150" stroke="#ff4e50" stroke-width="3" />
    <line x1="60" y1="150" x2="70" y2="180" stroke="#ff4e50" stroke-width="3" />
    <line x1="90" y1="150" x2="80" y2="180" stroke="#ff4e50" stroke-width="3" />
    <circle cx="60" cy="120" r="5" fill="#fff" />
    <circle cx="90" cy="120" r="5" fill="#fff" />
  </g>
  
  <!-- Flamingo 2 -->
  <g transform="translate(180 80) scale(0.6) rotate(10)">
    <path d="M15 200 C45 200, 45 150, 75 150 S 95 200, 125 200" fill="url(#flamingoGradient)" />
    <circle cx="75" cy="130" r="45" fill="url(#helmetGradient)" />
    <circle cx="75" cy="130" r="40" fill="url(#flamingoGradient)" />
    <line x1="60" y1="150" x2="90" y2="150" stroke="#ff4e50" stroke-width="3" />
    <line x1="60" y1="150" x2="70" y2="180" stroke="#ff4e50" stroke-width="3" />
    <line x1="90" y1="150" x2="80" y2="180" stroke="#ff4e50" stroke-width="3" />
    <circle cx="60" cy="120" r="5" fill="#fff" />
    <circle cx="90" cy="120" r="5" fill="#fff" />
  </g>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="40" r="30" fill="url(#helmetGradient)" />
  <circle cx="150" cy="40" r="28" fill="url(#flamingoGradient)" />
  <g fill="#fff" opacity="0.8">
    <rect x="145" y="25" width="4" height="4" />
    <rect x="151" y="30" width="4" height="4" />
    <rect x="158" y="35" width="4" height="4" />
    <rect x="140" y="40" width="4" height="4" />
    <rect x="150" y="50" width="4" height="4" />
    <rect x="145" y="45" width="4" height="4" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image features a more dynamic composition with two flamingos clearly depicted with disco helmets, set against a vibrant space background with colorful planets.

    This aligns well with the prompt by integrating both the flamingo and space elements effectively.

    In contrast, Player 2's image, while colorful, lacks clear depiction of flamingos or disco elements, making it less adherent to the 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
19
Player 2
28
Rectangles

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

Player 1
2
Player 2
8
Circles

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

Player 1
11
Player 2
12
Ellipses

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

Player 1
Player 2
Lines

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

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

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
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
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
22
Player 2
6
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
4
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