Back

SVG Drawing Match #67

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flamingo on stilts in a snowy landscape"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="pinkGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFB3BA;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="snowGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#F0F0F0;stop-opacity:1" />
    </linearGradient>
    <pattern id="stiltPattern" patternUnits="userSpaceOnUse" width="5" height="5">
      <rect width="5" height="5" fill="#8B4513" />
      <line x1="0" y1="0" x2="5" y2="5" stroke="#A0522D" stroke-width="1" />
      <line x1="5" y1="0" x2="0" y2="5" stroke="#A0522D" stroke-width="1" />
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#snowGradient)" />

  <ellipse cx="150" cy="280" rx="150" ry="30" fill="#B0E0E6" />

  <g transform="translate(150, 150)">
    <path d="M0,-40 C-20,-100 20,-100 0,-40 Z" fill="url(#pinkGradient)" />
    <circle cx="0" cy="-60" r="12" fill="#FF1493" />
    <path d="M-10,-30 Q-30,-50 -30,-10 Q-10,0 0,0 Q10,0 30,-10 Q30,-50 10,-30" fill="url(#pinkGradient)" />
  </g>

  <line x1="150" y1="240" x2="150" y2="210" stroke="url(#stiltPattern)" stroke-width="8" />
  <line x1="130" y1="240" x2="130" y2="210" stroke="url(#stiltPattern)" stroke-width="8" />
  
  <path d="M130,210 Q150,250 170,210" fill="none" stroke="#FF69B4" stroke-width="3" />
  
  <g transform="translate(135, 250)">
    <path d="M0,0 C15,15 25,25 35,15 Q30,5 15,2 Z" fill="white" />
    <path d="M-5,0 C-10,10 -15,20 -25,15 Q-20,5 -15,3 Z" fill="#E0FFFF" />
    <circle cx="5" cy="0" r="10" fill="#A9A9A9" opacity="0.3" />
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
            <stop offset="0%" stop-color="#6DB3F2"/>
            <stop offset="100%" stop-color="#E2F0FB"/>
        </linearGradient>
        <linearGradient id="flamingoGradient" x1="0" y1="0" x2="1" y2="1">
            <stop offset="0%" stop-color="#FF88AA"/>
            <stop offset="100%" stop-color="#FF4375"/>
        </linearGradient>
    </defs>
    <rect width="300" height="300" fill="url(#skyGradient)" />
    <ellipse cx="150" cy="350" rx="180" ry="130" fill="#FFFFFF"/>
    <circle cx="100" cy="250" r="60" fill="url(#flamingoGradient)" />
    <circle cx="108" cy="200" r="40" fill="url(#flamingoGradient)" />
    <polygon points="108,250 120,270 110,290 100,290 90,265" fill="#893F57"/>
    <ellipse cx="112" cy="182" rx="10" ry="6" fill="#FFEBED"/>
    <circle cx="115" cy="180" r="2" fill="#000"/>
    <rect x="98" y="160" width="2" height="40" fill="#FFFFE0" transform="rotate(40 100 180)"/>
    <rect x="106" y="228" width="5" height="80" fill="#D2D2D2"/>
    <rect x="86" y="232" width="5" height="82" fill="#D2D2D2"/>
    <line x1="109" y1="290" x2="125" y2="305" stroke="#A52A2A" stroke-width="3"/>
    <line x1="91" y1="290" x2="80" y2="310" stroke="#A52A2A" stroke-width="3"/>
    <path d="M150,140 Q160,130 150,120" fill="none" stroke="#FF4375" stroke-width="4"/>
    <circle cx="100" cy="150" r="4" fill="#FF4375"/>
</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 better captures the concept of a flamingo on stilts in a snowy landscape with clear visual elements and a cohesive composition.

    The use of bright colors and distinct shapes effectively illustrates the whimsical nature of the prompt.

    Player 1's image is more abstract, making it harder to discern the flamingo and stilt elements, and the overall execution lacks clarity.

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
14
Player 2
14
Rectangles

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

Player 1
2
Player 2
4
Circles

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

Player 1
2
Player 2
4
Ellipses

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

Player 1
1
Player 2
2
Lines

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

Player 1
4
Player 2
2
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
5
Player 2
1
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

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