Back

SVG Drawing Match #1951

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An owl wearing a monocle, reading a newspaper under a mushroom umbrella"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#F2EAD8" />
  
  <!-- Mushroom umbrella -->
  <path d="M112,150 Q150,50 188,150 L112,150" fill="#734026" />
  <circle cx="150" cy="150" r="38" fill="#734026" />
  
  <!-- Owl body -->
  <circle cx="150" cy="130" r="40" fill="#4D3319" />
  
  <!-- Owl head -->
  <circle cx="150" cy="100" r="30" fill="#5C4026" />
  
  <!-- Owl eyes -->
  <circle cx="135" cy="90" r="5" fill="#000" />
  <circle cx="165" cy="90" r="5" fill="#000" />
  
  <!-- Owl monocle -->
  <circle cx="165" cy="90" r="10" stroke="#000" stroke-width="2" fill="none" />
  
  <!-- Owl beak -->
  <polygon points="145,105 155,105 150,115" fill="#FFD700" />
  
  <!-- Owl eyebrows -->
  <polyline points="130,80 140,85" stroke="#000" stroke-width="1" />
  <polyline points="160,85 170,80" stroke="#000" stroke-width="1" />
  
  <!-- Newspaper -->
  <rect x="120" y="155" width="60" height="40" fill="#FFF" />
  <text x="150" y="185" font-family="Arial" font-size="10" fill="#000" text-anchor="middle">NEWS</text>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="mushroomGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="50%" stop-color="#E73C7E"/>
      <stop offset="100%" stop-color="#950740"/>
    </radialGradient>
    <pattern id="newspaperPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#F7F3E3"/>
      <path d="M0 0h5v5H0zM10 0h5v5h-5zM0 10h5v5H0zM10 10h5v5h-5z" fill="#000"/>
    </pattern>
  </defs>

  <path d="M100 50c0-40 60-40 60 0c0 40-60 70-60 70" fill="url(#mushroomGradient)" stroke="#A04443" stroke-width="3"/>
  <ellipse cx="130" cy="50" rx="70" ry="20" fill="url(#mushroomGradient)" stroke="#A04443" stroke-width="3"/>

  <circle cx="150" cy="180" r="50" fill="#B8860B"/>
  <circle cx="130" cy="170" r="15" fill="white"/>
  <circle cx="130" cy="170" r="7" fill="black"/>
  <circle cx="170" cy="170" r="15" fill="white"/>
  <circle cx="170" cy="170" r="7" fill="black"/>
  <path d="M140 190c10 0 10 10 0 10l-20 0c-10 0-10-10 0-10z" fill="orange"/>

  <circle cx="195" cy="175" r="10" fill="gold" stroke="black" stroke-width="1"/>
  <path d="M195 175l15 -5" stroke="black" stroke-width="1"/>

  <rect x="110" y="220" width="80" height="60" fill="url(#newspaperPattern)" rx="5" ry="5"/>
  <path d="M130 240l10 0l0 10l-10 0zM170 240l10 0l0 10l-10 0zM130 260l10 0l0 10l-10 0zM170 260l10 0l0 10l-10 0z" fill="black" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's image includes all elements of the prompt: an owl with a monocle, reading a newspaper, under a mushroom umbrella.

    The use of gradients adds depth and creativity, enhancing the visual appeal.

    Player 1's image, while clean, lacks the mushroom umbrella and overall complexity desired in the prompt.

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
12
Player 2
14
Rectangles

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

Player 1
2
Player 2
2
Circles

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

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

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
11

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