Back

SVG Drawing Match #2016

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surrealist bird wearing a raincoat in a thunderstorm"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Thunderstorm -->
  <rect x="0" y="0" width="300" height="300" fill="#6E82FF" />
  
  <!-- Raindrops -->
  <g fill="#9C97F7">
    <circle cx="30" cy="20" r="1" />
    <circle cx="60" cy="40" r="1" />
    <circle cx="90" cy="30" r="1" />
    <circle cx="120" cy="10" r="1" />
    <circle cx="150" cy="50" r="1" />
    <circle cx="180" cy="20" r="1" />
    <circle cx="210" cy="30" r="1" />
    <circle cx="240" cy="60" r="1" />
    <circle cx="270" cy="35" r="1" />
  </g>
  
  <!-- Bird body - Surrealistic design -->
  <path d="M150 110 C75 110 120 200 150 200 C180 200 225 110 150 110" fill="#FFC0CB" />
  
  <!-- Bird head -->
  <circle cx="150" cy="100" r="20" fill="#FFC0CB" />
  
  <!-- Bird eye -->
  <circle cx="160" cy="95" r="2" fill="#000" />
  
  <!-- Beak -->
  <polygon points="150,105 140,115 160,115" fill="#FFD700" />
  
  <!-- Bird wings -->
  <ellipse cx="130" cy="130" rx="20" ry="40" fill="#FFC0CB" />
  <ellipse cx="170" cy="130" rx="20" ry="40" fill="#FFC0CB" />
  
  <!-- Raincoat for bird -->
  <path d="M130 110 L130 160 Q150 170 170 160 L170 110 Z" fill="#F0E68C" />
  
</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%" style="stop-color:rgb(0,0,50);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,100);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="coatGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:rgb(255,215,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="birdBodyGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:rgb(255,105,180);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(125,50,120);stop-opacity:1" />
    </radialGradient>
    <pattern id="raindrops" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="blue" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="-20" rx="60" ry="80" fill="url(#birdBodyGradient)" />
    <circle cx="-20" cy="-60" r="15" fill="white" />
    <circle cx="-25" cy="-60" r="5" fill="black" />
    <circle cx="20" cy="-60" r="15" fill="white" />
    <circle cx="25" cy="-60" r="5" fill="black" />
    <polygon points="-40,-15 0,10 40,-15" fill="black" />
    <path d="M-50,-20 Q0,-100 50,-20" fill="none" stroke="black" stroke-width="2" />
    <path d="M-50,80 C-70,60 -70,20 -50,0 Q0,40 50,0 C70,20 70,60 50,80 Z" fill="url(#coatGradient)" />
  </g>
  <g fill="url(#raindrops)">
    <circle cx="30" cy="50" r="20" />
    <circle cx="200" cy="100" r="10" />
    <circle cx="100" cy="150" r="15" />
    <circle cx="250" cy="70" r="25" />
    <circle cx="50" cy="200" r="10" />
    <circle cx="270" cy="230" r="15" />
  </g>
  <polyline points="60,20 70,50 50,70 70,90 50,110" fill="none" stroke="yellow" stroke-width="2" />
  <polyline points="180,80 190,110 170,130 190,150 170,170" fill="none" stroke="yellow" 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 exhibits greater creativity and adherence to the prompt by incorporating distinct surreal elements such as exaggerated facial features and dynamic lightning, enhancing the thematic impact of a thunderstorm.

    The use of color and composition in Player 2's submission is more visually engaging and technically refined compared to Player 1's simpler, less detailed depiction.

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

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

Player 1
1
Player 2
1
Circles

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

Player 1
11
Player 2
11
Ellipses

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

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

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

Player 1
2
Player 2
2
Groups

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
4

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