Back

SVG Drawing Match #2194

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat wearing a suit, sipping tea on a floating lily pad"

SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <radialGradient id="lilyPadGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#76b947"/>
      <stop offset="100%" style="stop-color:#4a7d3b"/>
    </radialGradient>
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#2c3e50"/>
      <stop offset="100%" style="stop-color:#34495e"/>
    </linearGradient>
    <linearGradient id="teaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#f39c12"/>
      <stop offset="100%" style="stop-color:#e67e22"/>
    </linearGradient>
    <radialGradient id="catGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#fffacd"/>
      <stop offset="100%" style="stop-color:#f5deb3"/>
    </radialGradient>
    <linearGradient id="shadowGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgba(0,0,0,0.2)"/>
      <stop offset="100%" style="stop-color:rgba(0,0,0,0)"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="#87ceeb"/>

  <!-- Lily Pad -->
  <ellipse cx="150" cy="200" rx="100" ry="30" fill="url(#lilyPadGradient)" />
  <ellipse cx="150" cy="200" rx="100" ry="30" fill="url(#shadowGradient)" />

  <!-- Cat Body -->
  <g id="cat">
    <!-- Body -->
    <ellipse cx="150" cy="180" rx="30" ry="20" fill="url(#catGradient)" stroke="#d2b48c" stroke-width="2"/>
    
    <!-- Head -->
    <circle cx="150" cy="150" r="15" fill="url(#catGradient)" stroke="#d2b48c" stroke-width="2"/>
    
    <!-- Ears -->
    <polygon points="140,145 135,135 145,140" fill="#f5deb3" stroke="#d2b48c" stroke-width="1"/>
    <polygon points="160,145 165,135 155,140" fill="#f5deb3" stroke="#d2b48c" stroke-width="1"/>

    <!-- Eyes -->
    <circle cx="145" cy="148" r="2" fill="#000"/>
    <circle cx="155" cy="148" r="2" fill="#000"/>

    <!-- Suit -->
    <path d="M135,165 Q150,175 165,165" fill="url(#suitGradient)" stroke="#2c3e50" stroke-width="1"/>
    <rect x="135" y="165" width="30" height="20" fill="url(#suitGradient)" stroke="#2c3e50" stroke-width="1"/>
    <line x1="150" y1="165" x2="150" y2="185" stroke="#2c3e50" stroke-width="1"/>

    <!-- Tie -->
    <polygon points="150,165 148,170 152,170" fill="#e74c3c"/>

    <!-- Arms -->
    <path d="M135,170 Q130,175 135,180" stroke="#f5deb3" stroke-width="2" fill="none"/>
    <path d="M165,170 Q170,175 165,180" stroke="#f5deb3" stroke-width="2" fill="none"/>

    <!-- Tea Cup -->
    <ellipse cx="130" cy="180" rx="5" ry="3" fill="url(#teaGradient)" stroke="#d35400" stroke-width="1"/>
    <path d="M130,180 Q132,182 130,184" stroke="#d35400" stroke-width="1" fill="none"/>
  </g>

  <!-- Shadow under Lily Pad -->
  <ellipse cx="150" cy="200" rx="100" ry="5" fill="rgba(0,0,0,0.1)"/>

  <!-- Decorative elements -->
  <g>
    <circle cx="50" cy="80" r="5" fill="#ff69b4"/>
    <circle cx="250" cy="120" r="3" fill="#ff69b4"/>
    <path d="M0,250 C50,220 250,220 300,250" fill="none" stroke="#2ecc71" stroke-width="2"/>
  </g>
</svg>
SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="lilyPadGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#76c893" />
      <stop offset="100%" stop-color="#2d6a4f" />
    </radialGradient>
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    <radialGradient id="catFurGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ecd9c6" />
      <stop offset="100%" stop-color="#a67b5b" />
    </radialGradient>
    <linearGradient id="teaCupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#cccccc" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#a8dadc" />
  <!-- Floating Lily Pad -->
  <g id="lilyPad">
    <ellipse cx="150" cy="220" rx="80" ry="40" fill="url(#lilyPadGradient)" stroke="#1b4332" stroke-width="2"/>
    <circle cx="130" cy="210" r="5" fill="#a8dadc"/>
    <circle cx="170" cy="215" r="4" fill="#a8dadc"/>
    <circle cx="150" cy="225" r="6" fill="#a8dadc"/>
  </g>
  <!-- Cat in Suit Sipping Tea -->
  <g id="cat">
    <!-- Cat's suit body -->
    <path d="M140,180 Q150,160 160,180 L160,230 Q150,240 140,230 Z" fill="url(#suitGradient)" stroke="#000" stroke-width="1"/>
    <!-- Cat's head -->
    <circle cx="150" cy="150" r="20" fill="url(#catFurGradient)" stroke="#000" stroke-width="1"/>
    <!-- Cat's ears -->
    <polygon points="140,130 135,110 150,130" fill="url(#catFurGradient)" stroke="#000" stroke-width="1"/>
    <polygon points="150,130 165,110 160,130" fill="url(#catFurGradient)" stroke="#000" stroke-width="1"/>
    <!-- Cat's eyes -->
    <circle cx="144" cy="145" r="2" fill="#000"/>
    <circle cx="156" cy="145" r="2" fill="#000"/>
    <!-- Cat's nose -->
    <polygon points="150,150 146,156 154,156" fill="#ff6b6b"/>
    <!-- Cat's whiskers -->
    <line x1="135" y1="150" x2="120" y2="148" stroke="#000" stroke-width="1"/>
    <line x1="135" y1="155" x2="120" y2="158" stroke="#000" stroke-width="1"/>
    <line x1="165" y1="150" x2="180" y2="148" stroke="#000" stroke-width="1"/>
    <line x1="165" y1="155" x2="180" y2="158" stroke="#000" stroke-width="1"/>
    <!-- Suit Tie -->
    <path d="M150,155 L150,175 L155,175 L150,155" fill="#ff6b6b"/>
    <!-- Cat's paw holding tea -->
    <path d="M155,210 Q160,205 165,210 Q165,215 155,215 Z" fill="url(#catFurGradient)" stroke="#000" stroke-width="1"/>
    <!-- Tea Cup -->
    <g id="teaCup">
      <ellipse cx="165" cy="208" rx="5" ry="3" fill="url(#teaCupGradient)" stroke="#000" stroke-width="0.5"/>
      <path d="M170,208 Q172,208 172,210 Q172,212 170,212" fill="none" stroke="#000" stroke-width="0.5"/>
      <path d="M160,210 Q159,208 160,206" fill="none" stroke="#000" stroke-width="0.5"/>
    </g>
  </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 image demonstrates a stronger adherence to the prompt with a clearer depiction of a cat wearing a suit and sipping tea.

    The composition is more balanced and visually appealing, with attention to detail in the suit and teacup.

    While Player 1's image is creative, it lacks clarity in conveying the theme and technical execution is less refined.

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
21
Rectangles

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

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

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

Player 1
1
Player 2
4
Polygons

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

Player 1
3
Player 2
3
Paths

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
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
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
10
Player 2
18
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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