Back

SVG Drawing Match #2037

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Ice skate wearing flamingo juggling snowballs"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#ff6f61; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#ff4d3b; stop-opacity:1" />
        </linearGradient>
        <radialGradient id="snowballGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" style="stop-color:#fff; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#cce7ff; stop-opacity:1" />
        </radialGradient>
        <pattern id="iceTexture" patternUnits="userSpaceOnUse" width="10" height="10">
            <rect x="0" y="0" width="10" height="10" fill="#b2e0f2" />
            <path d="M0,0 L10,10 M10,0 L0,10" stroke="#87c7e5" stroke-width="1" />
        </pattern>
    </defs>
    <rect width="300" height="300" fill="#a0d3e8" />
    
    <ellipse cx="150" cy="250" rx="100" ry="10" fill="url(#iceTexture)" />

    <g transform="translate(180, 140)">
        <path d="M0,0 C-10,-30 -35,-30 -30,-5 C-25,25 -5,30 0,0" fill="url(#flamingoGradient)" />
        <ellipse cx="-20" cy=-5 r="10" fill="#FFC0CB" />
        <ellipse cx="-5" cy="10" rx="8" ry="4" fill="#ff69b4" />
        
        <path d="M0,0 L-15,8" stroke="#ff6f61" stroke-width="3" />
        <path d="M0,0 L15,8" stroke="#ff6f61" stroke-width="3" />
        
        <circle cx="-15" cy="25" r="6" fill="url(#snowballGradient)" />
        <circle cx="15" cy="25" r="6" fill="url(#snowballGradient)" />
        <circle cx="" cy="-15" r="6" fill="url(#snowballGradient)" />
        
        <path d="M0,0 L-20,-30" stroke="#ff4d3b" stroke-width="3" />
        <path d="M0,0 L20,-30" stroke="#ff4d3b" stroke-width="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="flamingoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,182,193);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,105,180);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="snowballGradient" cx="30%" cy="30%" r="70%">
      <stop offset="0%" style="stop-color:white;stop-opacity:1" />
      <stop offset="100%" style="stop-color:lightblue;stop-opacity:0.6" />
    </radialGradient>
    <pattern id="featherPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="purple" />
    </pattern>
  </defs>
  <!-- Flamingo Body -->
  <path d="M150 180 Q170 110, 140 80 T130 10" stroke="url(#flamingoGradient)" stroke-width="10" fill="none"/>
  <!-- Flamingo Head -->
  <circle cx="130" cy="10" r="10" fill="url(#flamingoGradient)" />
  <!-- Flamingo Beak -->
  <path d="M138 6 Q135 20, 125 12" fill="black"/>
  <!-- Flamingo Eye -->
  <circle cx="126" cy="5" r="2" fill="white" />
  <!-- Flamingo Feathers -->
  <path d="M150 140 C140 130, 170 120, 170 90" stroke="url(#flamingoGradient)" stroke-width="10" fill="none"/>
  <path d="M145 150 C135 140, 165 130, 165 95" stroke="url(#flamingoGradient)" stroke-width="10" fill="none"/>
  <circle cx="155" cy="135" r="5" fill="url(#featherPattern)"/>
  <!-- Ice Skate -->
  <path d="M130 180 L170 200 L180 198 L140 178 Z" fill="grey" />
  <path d="M140 178 L125 200 L118 197 L133 180 Z" fill="darkgrey"/>
  <path d="M170 200 L175 210 L150 210 L145 198 Z" fill="silver"/>
  <!-- Snowballs -->
  <circle cx="100" cy="130" r="12" fill="url(#snowballGradient)" />
  <circle cx="150" cy="50" r="12" fill="url(#snowballGradient)" />
  <circle cx="200" cy="100" r="12" fill="url(#snowballGradient)" />
  <!-- Juggling Arms -->
  <path d="M140 80 Q160 90, 100 130" stroke="url(#flamingoGradient)" stroke-width="8" fill="none"/>
  <path d="M140 80 Q160 60, 200 100" stroke="url(#flamingoGradient)" stroke-width="8" fill="none"/>
</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 submission clearly depicts a flamingo on ice skates juggling snowballs, effectively adhering to the prompt.

    The image is technically well-executed with clear shapes and vibrant colors, enhancing its visual appeal.

    Player 1's submission is unavailable, preventing evaluation.

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

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

Player 1
Player 2
Circles

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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