Back

SVG Drawing Match #1604

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Pirate parrot with a cybernetic eye"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#4CBB17" />
  <!-- Pirate Parrot Body -->
  <ellipse cx="150" cy="200" rx="60" ry="100" fill="#E69A05" />
  <!-- Pirate Parrot Head -->
  <ellipse cx="150" cy="100" rx="40" ry="50" fill="#E69A05" />
  <!-- Pirate Parrot Eye Patch -->
  <path d="M130,90 L170,90 Q180,100 170,110 L130,110 Q120,100 130,90 Z" fill="#000" />
  <!-- Cybernetic Eye -->
  <circle cx="150" cy="100" r="20" fill="#333" />
  <circle cx="150" cy="100" r="16" fill="#777" />
  <circle cx="145" cy="95" r="6" fill="#FFF" />
  <!-- Pirate Parrot Beak -->
  <polygon points="140,100 160,100 150,120" fill="#FFD700" />
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff9900;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="eyeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00ccff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0055ff;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="beakGradient" cx="50%" cy="50%" r="45%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff6600;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#cc3300;stop-opacity:1" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="blur" />
      </feMerge>
    </filter>
  </defs>
  <g filter="url(#glow)">
    <path d="M150 200 Q120 150 90 130 Q70 120 55 150 Q0 200 70 230 Q150 250 150 200" fill="url(#bodyGradient)" />
    <path d="M90 130 Q100 110 120 100 Q140 90 140 130 Q120 120 100 130 Q90 120 90 130" fill="green" />
    <path d="M180 150 Q210 130 230 150 Q250 170 240 200 Q220 220 190 210 Q180 190 180 150" fill="url(#bodyGradient)" />
    <path d="M210 150 Q220 140 230 150 Q240 160 230 170 Q210 160 210 150" fill="green" />
    <path d="M120 110 Q115 115 110 110 Q105 105 105 100 Q115 95 120 100 Q125 105 120 110" fill="url(#beakGradient)" />
    <circle cx="180" cy="120" r="15" fill="url(#eyeGradient)" />
    <circle cx="180" cy="120" r="6" fill="black" />
    <circle cx="177" cy="118" r="3" fill="white" />
  </g>
  <path d="M150 220 L140 240 M150 220 L160 240" stroke="saddlebrown" stroke-width="2" />
  <path d="M90 150 Q70 160 70 170 M210 150 Q230 160 230 170" stroke="saddlebrown" stroke-width="2" />
  <text x="50%" y="290" dominant-baseline="middle" text-anchor="middle" font-size="18" fill="black">Cyber Parrot</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1 effectively captures the concept of a pirate parrot with a cybernetic eye through a clear and simple design.

    The use of a prominent eye design immediately communicates the cybernetic element.

    While Player 2's submission is more abstract and colorful, it lacks clear representation of the prompt's 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
8
Player 2
10
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
3
Player 2
3
Ellipses

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

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

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

Player 1
1
Player 2
7
Groups

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

Player 1
Player 2
1

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
Filters

The number of filter definitions (filter) in the SVG.

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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

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