Back

SVG Drawing Match #287

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat playing chess with a giant moon made of cheese"

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%" stop-color="#f9e79f" />
      <stop offset="100%" stop-color="#f7dc6f" />
    </radialGradient>
    <radialGradient id="catGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8e44ad" />
      <stop offset="100%" stop-color="#5b2c6f" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="#1C1F26"/>
  <circle cx="75" cy="75" r="60" fill="url(#moonGradient)" />
  <g>
    <circle cx="65" cy="65" r="8" fill="#f6c567" />
    <circle cx="95" cy="80" r="10" fill="#f6c567" />
    <circle cx="45" cy="95" r="7" fill="#f6c567" />
  </g>
  <rect x="100" y="180" width="100" height="100" fill="#3d3d3d" />
  <path d="M100 180 L200 280" stroke="#2d2d2d" stroke-width="8" />
  <path d="M200 180 L100 280" stroke="#2d2d2d" stroke-width="8" />
  <circle cx="140" cy="220" r="8" fill="#bdc3c7" />
  <circle cx="160" cy="240" r="8" fill="#bdc3c7" />
  <circle cx="180" cy="220" r="8" fill="#bdc3c7" />
  <g transform="translate(50,150)">
    <ellipse cx="80" cy="50" rx="40" ry="60" fill="url(#catGradient)" />
    <ellipse cx="66" cy="30" rx="8" ry="12" fill="#e8daef" />
    <ellipse cx="94" cy="30" rx="8" ry="12" fill="#e8daef" />
    <circle cx="66" cy="30" r="4" fill="#2c3e50" />
    <circle cx="94" cy="30" r="4" fill="#2c3e50" />
    <path d="M75 65 Q80 75, 85 65" stroke="#2c3e50" stroke-width="3" fill="none" />
    <path d="M40 90 Q80 130, 120 90" fill="none" stroke="#5b2c6f" stroke-width="6" />
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonCheeseGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff8b3" />
      <stop offset="100%" stop-color="#f0c040" />
    </radialGradient>
    <linearGradient id="catFur" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#d2a679"/>
      <stop offset="100%" stop-color="#8b5e3c"/>
    </linearGradient>
    <pattern id="cheeseHoles" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="3" fill="#f0c040" />
    </pattern>
    <linearGradient id="chessBoardGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#e6e6e6"/>
    </linearGradient>
  </defs>
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1a1a1a" />

  <!-- Giant Moon made of Cheese -->
  <circle cx="240" cy="60" r="45" fill="url(#moonCheeseGradient)" />
  <circle cx="240" cy="60" r="45" fill="url(#cheeseHoles)" fill-opacity="0.3" />

  <!-- Cat playing chess -->
  <!-- Cat Body -->
  <ellipse cx="95" cy="190" rx="30" ry="20" fill="url(#catFur)" stroke="#5a3e2b" stroke-width="2"/>

  <!-- Cat Head -->
  <circle cx="95" cy="155" r="18" fill="url(#catFur)" stroke="#5a3e2b" stroke-width="2"/>
  <!-- Cat Ears -->
  <polygon points="83,142 90,125 97,142" fill="url(#catFur)" stroke="#5a3e2b" stroke-width="2"/>
  <polygon points="107,142 100,125 93,142" fill="url(#catFur)" stroke="#5a3e2b" stroke-width="2"/>
  <!-- Cat Eyes -->
  <circle cx="89" cy="152" r="2.5" fill="#000" />
  <circle cx="101" cy="152" r="2.5" fill="#000" />
  <!-- Cat Smile -->
  <path d="M90,160 Q95,165 100,160" stroke="#000" stroke-width="1.5" fill="none" />

  <!-- Chessboard on a table -->
  <!-- Table -->
  <rect x="50" y="210" width="90" height="25" fill="#4a2511" rx="5" ry="5" />
  <!-- Chessboard -->
  <g transform="translate(55,215)">
    <rect width="80" height="80" fill="url(#chessBoardGradient)" stroke="#000" stroke-width="1"/>
    <!-- Draw chessboard squares -->
    <g fill="#000">
      <rect x="0" y="0" width="10" height="10"/>
      <rect x="20" y="0" width="10" height="10"/>
      <rect x="40" y="0" width="10" height="10"/>
      <rect x="60" y="0" width="10" height="10"/>
      <rect x="10" y="10" width="10" height="10"/>
      <rect x="30" y="10" width="10" height="10"/>
      <rect x="50" y="10" width="10" height="10"/>
      <rect x="70" y="10" width="10" height="10"/>
      <rect x="0" y="20" width="10" height="10"/>
      <rect x="20" y="20" width="10" height="10"/>
      <rect x="40" y="20" width="10" height="10"/>
      <rect x="60" y="20" width="10" height="10"/>
      <rect x="10" y="30" width="10" height="10"/>
      <rect x="30" y="30" width="10" height="10"/>
      <rect x="50" y="30" width="10" height="10"/>
      <rect x="70" y="30" width="10" height="10"/>
      <rect x="0" y="40" width="10" height="10"/>
      <rect x="20" y="40" width="10" height="10"/>
      <rect x="40" y="40" width="10" height="10"/>
      <rect x="60" y="40" width="10" height="10"/>
      <rect x="10" y="50" width="10" height="10"/>
      <rect x="30" y="50" width="10" height="10"/>
      <rect x="50" y="50" width="10" height="10"/>
      <rect x="70" y="50" width="10" height="10"/>
      <rect x="0" y="60" width="10" height="10"/>
      <rect x="20" y="60" width="10" height="10"/>
      <rect x="40" y="60" width="10" height="10"/>
      <rect x="60" y="60" width="10" height="10"/>
      <rect x="10" y="70" width="10" height="10"/>
      <rect x="30" y="70" width="10" height="10"/>
      <rect x="50" y="70" width="10" height="10"/>
      <rect x="70" y="70" width="10" height="10"/>
    </g>
  </g>

  <!-- Cat's paw touching the chessboard -->
  <path d="M110,205 Q120,210 115,220 Q110,230 100,225" fill="url(#catFur)" stroke="#5a3e2b" stroke-width="2"/>

  <!-- Extra whimsical elements: swirling art to tie the scene -->
  <path d="M240,60 m-40,0 a40,40 0 1,0 80,0 a40,40 0 1,0 -80,0" fill="none" stroke="url(#moonCheeseGradient)" stroke-width="2" stroke-dasharray="5,5"/>
  <path d="M95,155 Q140,130 190,180" fill="none" stroke="#f0c040" stroke-width="3" stroke-linecap="round"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image more clearly represents the concept of a cat playing chess, with a recognizable cat figure on a chessboard.

    The moon is also depicted in a cheese-like texture, adhering closely to the prompt.

    In contrast, Player 1's image lacks clear representation of a cat or a chessboard, making it less effective in fulfilling 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
18
Player 2
48
Rectangles

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

Player 1
2
Player 2
35
Circles

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

Player 1
9
Player 2
6
Ellipses

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

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

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

Player 1
4
Player 2
4
Groups

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
10

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