Back

SVG Drawing Match #656

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat wearing a vintage diving helmet exploring an underwater library"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#004d73;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00334d;stop-opacity:1" />
    </radialGradient>
    <pattern id="bubblePattern" x="0" y="0" width=".1" height=".1" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="3" r="3" fill="rgba(255, 255, 255, 0.3)" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#oceanGradient)" />
  <g>
    <g id="cat-helmet" transform="translate(120, 80)">
      <circle cx="60" cy="60" r="60" fill="#A67C52" />
      <circle cx="60" cy="60" r="50" fill="#D9B084" />
      <circle cx="60" cy="60" r="30" fill="#F0E3C9" />
      <path d="M30,20 a40,40 0 0,1 60,0" fill="none" stroke="#704B2B" stroke-width="8" />
      <circle cx="60" cy="38" r="5" fill="#704B2B" />
      <circle cx="60" cy="60" r="18" stroke="#704B2B" stroke-width="8" fill="none" />
      <path d="M20,60 a40,40 0 0,1 80,0" fill="none" stroke="#704B2B" stroke-width="8" />
    </g>
    <path d="M50 120 C 70 110, 90 130, 110 120 S 150 130, 170 120" fill="#685D4B" stroke="#3B3429" stroke-width="2"/>
    <path d="M180 120 C 200 110, 220 130, 240 120 S 280 130, 300 120" fill="#685D4B" stroke="#3B3429" stroke-width="2"/>
    <g id="bookshelf" transform="translate(30, 160)">
      <rect x="0" y="0" width="240" height="20" fill="#8B5E3C" />
      <rect x="0" y="0" width="240" height="5" fill="#6E4628" />
      <g>
        <rect x="5" y="-20" width="20" height="18" fill="#D9B084" />
        <rect x="30" y="-20" width="20" height="15" fill="#F1C27D" />
        <rect x="55" y="-20" width="20" height="12" fill="#E0AC69" />
        <rect x="80" y="-20" width="20" height="16" fill="#6E4628" />
        <rect x="105" y="-20" width="20" height="14" fill="#8B5E3C" />
        <rect x="130" y="-20" width="20" height="17" fill="#7A4A3E" />
        <rect x="155" y="-20" width="20" height="12" fill="#C19A6B" />
        <rect x="180" y="-20" width="20" height="18" fill="#B87333" />
      </g>
    </g>
  </g>
  <rect width="300" height="300" fill="url(#bubblePattern)" />
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#70c5ff"/>
      <stop offset="100%" stop-color="#004e92"/>
    </linearGradient>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ccc"/>
      <stop offset="100%" stop-color="#888"/>
    </radialGradient>
    <pattern id="booksPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#f5f5f5"/>
      <path d="M0,0 L20,20 M20,0 L0,20" stroke="#ddd" stroke-width="1"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#waterGradient)" />

  <!-- Underwater Library Shelves -->
  <g opacity="0.8">
    <rect x="50" y="200" width="200" height="50" fill="url(#booksPattern)" stroke="#654321" stroke-width="2"/>
    <rect x="60" y="190" width="180" height="60" fill="url(#booksPattern)" stroke="#654321" stroke-width="2"/>
    <rect x="70" y="180" width="160" height="70" fill="url(#booksPattern)" stroke="#654321" stroke-width="2"/>
  </g>

  <!-- Cat with Vintage Diving Helmet -->
  <g transform="translate(150,150)">
    <!-- Helmet -->
    <ellipse cx="0" cy="-40" rx="30" ry="20" fill="url(#helmetGradient)" stroke="#555" stroke-width="2"/>
    <circle cx="0" cy="-40" r="25" fill="none" stroke="#333" stroke-width="2"/>
    <!-- Cat Head -->
    <circle cx="0" cy="-20" r="20" fill="#ffcc99" stroke="#333" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-8" cy="-22" r="3" fill="#000"/>
    <circle cx="8" cy="-22" r="3" fill="#000"/>
    <!-- Whiskers -->
    <path d="M-10,-20 H-20" stroke="#333" stroke-width="1"/>
    <path d="M-10,-18 H-20" stroke="#333" stroke-width="1"/>
    <path d="M-10,-22 H-20" stroke="#333" stroke-width="1"/>
    <path d="M10,-20 H20" stroke="#333" stroke-width="1"/>
    <path d="M10,-18 H20" stroke="#333" stroke-width="1"/>
    <path d="M10,-22 H20" stroke="#333" stroke-width="1"/>
    <!-- Body -->
    <ellipse cx="0" cy="10" rx="15" ry="20" fill="#ffcc99" stroke="#333" stroke-width="2"/>
    <!-- Fins -->
    <path d="M-15,0 Q-25,10 -15,20" fill="#ffcc99" stroke="#333" stroke-width="2"/>
    <path d="M15,0 Q25,10 15,20" fill="#ffcc99" stroke="#333" stroke-width="2"/>
    <!-- Tail -->
    <path d="M0,30 Q-10,40 0,50 Q10,40 0,30" fill="#ffcc99" stroke="#333" stroke-width="2"/>
  </g>

  <!-- Bubbles -->
  <circle cx="80" cy="60" r="5" fill="rgba(255,255,255,0.7)" />
  <circle cx="120" cy="80" r="3" fill="rgba(255,255,255,0.5)" />
  <circle cx="200" cy="50" r="4" fill="rgba(255,255,255,0.6)" />
  <circle cx="250" cy="90" r="6" fill="rgba(255,255,255,0.4)" />

  <!-- Light Rays -->
  <g opacity="0.3">
    <rect x="0" y="0" width="300" height="300" fill="url(#lightRay)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more clearly represents the concept of a cat wearing a vintage diving helmet and exploring an underwater library.

    The cat is visibly shown with a diving helmet in an underwater setting, with elements resembling bookshelves, enhancing adherence to the prompt.

    Player 1's image, while abstract and creative, lacks clear representation of the key elements, resulting in ambiguity regarding 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
22
Player 2
26
Rectangles

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

Player 1
12
Player 2
6
Circles

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

Player 1
6
Player 2
8
Ellipses

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

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

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

Player 1
4
Player 2
10
Groups

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
15

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

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

Player 1
2
Player 2
Defs Elements

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

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