Back

SVG Drawing Match #136

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flamingo in a tuxedo conducting an orchestra of floating jellyfish"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
  <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
    <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
  </linearGradient>
  <linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
    <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
  </linearGradient>
</defs>
<g id="flamingo">
  <path d="M150 50 C180 50, 210 70, 210 100 C210 130, 180 150, 150 150 C120 150, 90 130, 90 100 C90 70, 120 50, 150 50" fill="#F2A90C" stroke="#000" stroke-width="2"/>
  <circle cx="150" cy="80" r="15" fill="#000"/>
  <path d="M150 150 L175 175 L150 200 L125 175 Z" fill="#000"/>
  <path d="M150 150 L180 170 L150 190 L120 170 Z" fill="#000"/>
  <path d="M150 200 L180 220 L150 250 L120 220 Z" fill="#000"/>
</g>
<g id="jellyfish" transform="translate(50,120)">
  <circle cx="50" cy="50" r="30" fill="url(#grad1)"/>
  <path d="M20 50 C20 20, 80 20, 80 50 C80 80, 20 80, 20 50" stroke="#000" stroke-width="2" fill="none"/>
  <path d="M20 50 C20 30, 80 30, 80 50 C80 70, 20 70, 20 50" stroke="#000" stroke-width="2" fill="none"/>
  <path d="M20 50 C20 40, 80 40, 80 50 C80 60, 20 60, 20 50" stroke="#000" stroke-width="2" fill="none"/>
</g>
<g id="jellyfish" transform="translate(250,120)">
  <circle cx="50" cy="50" r="30" fill="url(#grad2)"/>
  <path d="M20 50 C20 20, 80 20, 80 50 C80 80, 20 80, 20 50" stroke="#000" stroke-width="2" fill="none"/>
  <path d="M20 50 C20 30, 80 30, 80 50 C80 70, 20 70, 20 50" stroke="#000" stroke-width="2" fill="none"/>
  <path d="M20 50 C20 40, 80 40, 80 50 C80 60, 20 60, 20 50" stroke="#000" stroke-width="2" fill="none"/>
</g>
<path d="M150 150 L150 250 Q130 230 150 210 Q170 230 150 250" stroke="#000" stroke-width="2" fill="none"/>
<path d="M150 250 L150 280 Q130 260 150 240 Q170 260 150 280" stroke="#000" stroke-width="2" fill="none"/>
<path d="M150 280 L150 300 Q130 280 150 260 Q170 280 150 300" stroke="#000" stroke-width="2" fill="none"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#89CFF0" />
      <stop offset="100%" stop-color="#1A5276" />
    </linearGradient>
    <radialGradient id="jellyGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF69B4" />
      <stop offset="100%" stop-color="#FF1493" />
    </radialGradient>
    <linearGradient id="flamingoGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFCCCB" />
      <stop offset="100%" stop-color="#FFB6C1" />
    </linearGradient>
  </defs>

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

  <!-- Flamingo body -->
  <ellipse cx="150" cy="200" rx="35" ry="80" fill="url(#flamingoGradient)" />

  <!-- Flamingo head -->
  <circle cx="150" cy="140" r="20" fill="url(#flamingoGradient)" />
  <circle cx="155" cy="135" r="3" fill="#000" /> <!-- Eye -->
  <path d="M150 160 Q140 150 125 170 Q135 165 150 160 Z" fill="#FFB6C1" /> <!-- Beak -->

  <!-- Tuxedo -->
  <path d="M135 170 L165 170 L150 240 L135 170 Z" fill="#000" />
  <path d="M140 180 L140 240"
        stroke="#FFF" stroke-width="5" />
  <path d="M160 180 L160 240"
        stroke="#FFF" stroke-width="5" />

  <!-- Jellyfish -->
  <g transform="translate(60, 60)">
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#jellyGradient)" />
    <path d="M-10 0 Q-15 20 0 20 Q15 20 10 0" fill="pink" />
    <path d="M-5 20 Q-10 30 0 30 Q10 30 5 20" fill="pink" />
  </g>

  <g transform="translate(240, 100)">
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#jellyGradient)" />
    <path d="M-10 0 Q-15 20 0 20 Q15 20 10 0" fill="pink" />
    <path d="M-5 20 Q-10 30 0 30 Q10 30 5 20" fill="pink" />
  </g>

  <g transform="translate(180, 160)">
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#jellyGradient)" />
    <path d="M-10 0 Q-15 20 0 20 Q15 20 10 0" fill="pink" />
    <path d="M-5 20 Q-10 30 0 30 Q10 30 5 20" fill="pink" />
  </g>

  <!-- Conductor's Stick -->
  <line x1="150" y1="140" x2="180" y2="100" stroke="#000" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image captures the whimsical concept of a flamingo in a tuxedo conducting an orchestra of floating jellyfish more effectively.

    The tuxedo is clearly depicted, and the jellyfish are identifiable, enhancing adherence to the prompt.

    The composition is clean and visually appealing, using a harmonious color palette that adds to the technical quality and creativity of the piece.

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
16
Player 2
18
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
3
Player 2
2
Ellipses

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

Player 1
Player 2
4
Lines

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

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

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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