Back

SVG Drawing Match #402

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow-colored owl wearing space helmet on a moonlit branch"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Moonlit background -->
  <rect x="0" y="0" width="300" height="300" fill="#0c2340" />
  <circle cx="150" cy="150" r="120" fill="url(#moonGradient)" />
  
  <!-- Branch -->
  <path d="M100,200 Q150,250 200,200" stroke="brown" stroke-width="10" fill="none" />
  
  <!-- Owl body -->
  <circle cx="150" cy="160" r="30" fill="brown" />
  
  <!-- Owl eyes -->
  <circle cx="135" cy="150" r="5" fill="white" />
  <circle cx="165" cy="150" r="5" fill="white" />
  
  <!-- Owl wings -->
  <path d="M130,160 Q140,140 150,160 Q160,140 170,160" fill="brown" />
  
  <!-- Owl beak -->
  <polygon points="147,167 150,170 153,167" fill="yellow" />
  
  <!-- Space helmet -->
  <circle cx="150" cy="130" r="40" fill="url(#rainbowGradient)" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #FFFACD; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #F0E68C; stop-opacity: 0.5" />
    </radialGradient>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #FF0000;" />
      <stop offset="16.6%" style="stop-color: #FF7F00;" />
      <stop offset="33.3%" style="stop-color: #FFFF00;" />
      <stop offset="50%" style="stop-color: #00FF00;" />
      <stop offset="66.6%" style="stop-color: #0000FF;" />
      <stop offset="83.3%" style="stop-color: #4B0082;" />
      <stop offset="100%" style="stop-color: #8B00FF;" />
    </linearGradient>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #E6E6FA; stop-opacity: 0.8" />
      <stop offset="100%" style="stop-color: #B0C4DE; stop-opacity: 0.5" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="#1A1A40" />
  <circle cx="80" cy="80" r="40" fill="url(#moonGradient)" />
  <g transform="translate(150, 180)">
    <ellipse rx="40" ry="50" fill="url(#rainbowGradient)" />
    <circle cx="0" cy="-25" r="60" fill="url(#helmetGradient)" style="opacity:0.8;" />
    <path d="M -30 0 Q -40 40 0 50 Q 40 40 30 0 Z" fill="#8A2BE2" />
    <circle cx="-15" cy="-10" r="5" fill="#FFF" />
    <circle cx="15" cy="-10" r="5" fill="#FFF" />
    <circle cx="-15" cy="-10" r="2" fill="#000" />
    <circle cx="15" cy="-10" r="2" fill="#000" />
    <polygon points="-20,12 -4,24 0,18 4,24 20,12 0,0" fill="#FF69B4" />
  </g>
  <path d="M 200 220 Q 180 230 150 220 Q 120 210 50 240" fill="none" stroke="#8B4513" stroke-width="10" />
  <path d="M 260 275 Q 240 290 200 280 Q 170 270 120 270 Q 80 280 60 275" fill="none" stroke="#90EE90" 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 submission more effectively captures the concept of a 'rainbow-colored owl wearing a space helmet on a moonlit branch.' The use of a gradient to represent the rainbow colors and a visible space helmet add creativity and adherence to the prompt.

    Additionally, the inclusion of a moon enhances the thematic elements and visual appeal.

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
9
Player 2
12
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
5
Player 2
6
Ellipses

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
7

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
5
Player 2
11
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