Back

SVG Drawing Match #94

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A moonlit owl wearing a monocle, perched on a floating teacup amidst clouds"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonlight" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#f3e5ab" />
      <stop offset="100%" stop-color="#d9c58a" />
    </radialGradient>
    <linearGradient id="teacup-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f1c40f" />
      <stop offset="100%" stop-color="#e67e22" />
    </linearGradient>
    <pattern id="cloud-pattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <ellipse cx="10" cy="10" rx="10" ry="5" fill="#ffffff" opacity="0.8"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="#2c3e50" />
  <circle cx="150" cy="90" r="40" fill="url(#moonlight)" />
  <path d="M200 220 Q180 240, 150 220 Q120 240, 100 220 Q110 200, 140 200 Q170 200, 200 220" fill="url(#teacup-gradient)" />
  <rect x="130" y="190" width="40" height="15" fill="url(#teacup-gradient)" />
  <path d="M150 200 H160 V230 H150 Z" fill="#e67e22" />
  <ellipse cx="150" cy="225" rx="20" ry="5" fill="#e67e22" />
  <circle cx="220" cy="50" r="5" fill="#ffffff" opacity="0.6" />
  <circle cx="130" cy="70" r="5" fill="#ffffff" opacity="0.6" />
  <path d="M145 70 L165 70 L155 110 Z" fill="#7f8c8d" />
  <circle cx="155" cy="75" r="3" fill="#ecf0f1" />
  <circle cx="156" cy="78" r="3" fill="#bdc3c7" />
  <path d="M135 100 Q145 90, 155 100" stroke="#2980b9" stroke-width="2" fill="none" />
  <circle cx="150" cy="100" r="3" fill="#fff" />
  <path d="M180 85 Q175 95, 180 105 Q185 95, 180 85" fill="#7f8c8d" />
  <path d="M155 75 Q158 78, 162 75" fill="none" stroke="#7f8c8d" stroke-width="1" />
  <g transform="translate(5, 10)">
    <rect x="150" y="90" width="10" height="30" fill="#f39c12" />
    <circle cx="157" cy="120" r="5" fill="none" stroke="#000" stroke-width="1" />
    <line x1="165" y1="120" x2="175" y2="100" stroke="#000" stroke-width="1" />
  </g>
  <g fill="white" opacity="0.9">
    <path d="M120 175 L130 170 L125 180 Z" />
    <path d="M110 180 L115 175 L115 185 Z" />
  </g>
</svg>
SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <linearGradient id="cupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#fefefe"/>
      <stop offset="100%" stop-color="#dddddd"/>
    </linearGradient>
    <radialGradient id="owlGradient" cx="50%" cy="40%" r="50%">
      <stop offset="0%" stop-color="#a67c52"/>
      <stop offset="100%" stop-color="#5a3e2b"/>
    </radialGradient>
    <radialGradient id="owlBodyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#d2a679"/>
      <stop offset="100%" stop-color="#7f5a3e"/>
    </radialGradient>
  </defs>
  
  <!-- Moonlit sky background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Wispy clouds -->
  <g fill="white" opacity="0.7">
    <ellipse cx="60" cy="60" rx="30" ry="12"/>
    <ellipse cx="90" cy="55" rx="40" ry="15"/>
    <ellipse cx="130" cy="70" rx="25" ry="10"/>
    <ellipse cx="180" cy="50" rx="30" ry="10"/>
    <ellipse cx="220" cy="80" rx="35" ry="12"/>
    <ellipse cx="250" cy="60" rx="20" ry="8"/>
  </g>
  
  <!-- Floating teacup with a subtle shadow -->
  <g>
    <ellipse cx="150" cy="205" rx="30" ry="5" fill="black" opacity="0.1"/>
    <ellipse cx="150" cy="190" rx="40" ry="15" fill="url(#cupGradient)" stroke="#6b5b4d" stroke-width="2"/>
    <path d="M110,190 C110,210 190,210 190,190 L190,195 C190,215 110,215 110,195 Z" fill="url(#cupGradient)" stroke="#6b5b4d" stroke-width="2"/>
    <path d="M190,190 C210,195 210,205 190,210" fill="none" stroke="#6b5b4d" stroke-width="3"/>
  </g>
  
  <!-- Owl perched on the teacup -->
  <g transform="translate(150,160)">
    <!-- Owl head -->
    <circle cx="0" cy="0" r="20" fill="url(#owlGradient)" stroke="#5a3e2b" stroke-width="2"/>
    <!-- Left eye with monocle -->
    <circle cx="-8" cy="-5" r="4" fill="white"/>
    <circle cx="-8" cy="-5" r="2" fill="black"/>
    <circle cx="-8" cy="-5" r="6" fill="none" stroke="gold" stroke-width="1.5"/>
    <!-- Monocle chain in two links -->
    <path d="M -2,-5 Q -4,0 -6,0" stroke="gold" stroke-width="1" fill="none"/>
    <path d="M -6,0 Q -8,2 -10,2" stroke="gold" stroke-width="1" fill="none"/>
    <!-- Right eye -->
    <circle cx="8" cy="-5" r="4" fill="white"/>
    <circle cx="8" cy="-5" r="2" fill="black"/>
    <!-- Beak -->
    <path d="M -3,4 Q 0,7 3,4 Z" fill="#d99a73" stroke="#5a3e2b" stroke-width="1"/>
    <!-- Owl body -->
    <ellipse cx="0" cy="25" rx="15" ry="10" fill="url(#owlBodyGradient)" stroke="#5a3e2b" stroke-width="2"/>
    <!-- Wings -->
    <path d="M -15,25 Q -25,20 -15,15" fill="none" stroke="#5a3e2b" stroke-width="2"/>
    <path d="M 15,25 Q 25,20 15,15" fill="none" stroke="#5a3e2b" stroke-width="2"/>
    <!-- Feet -->
    <path d="M -5,35 L -5,40" stroke="#5a3e2b" stroke-width="2"/>
    <path d="M 5,35 L 5,40" stroke="#5a3e2b" stroke-width="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission captures the prompt more effectively by clearly depicting an owl with a monocle perched on a floating platform, resembling a teacup, amidst clouds.

    The composition is clear and the elements are well-defined, enhancing visual appeal.

    Player 1's image, while creative, lacks clarity in representing the owl and monocle, making it harder to interpret the scene accurately.

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
21
Player 2
25
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
7
Player 2
6
Ellipses

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

Player 1
2
Player 2
9
Lines

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

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

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
12

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
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
29
Player 2
22
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
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