Back

SVG Drawing Match #1990

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat wearing a pirate hat rowing a leaf boat on a pond"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#4FC3F7"/>
      <stop offset="100%" style="stop-color:#0288D1"/>
    </radialGradient>
    <pattern id="ripple" width="30" height="30" patternUnits="userSpaceOnUse">
      <path d="M0 15 Q7.5 10, 15 15 Q22.5 20, 30 15" fill="none" stroke="#81D4FA" stroke-width="1"/>
    </pattern>
  </defs>

  <!-- Background -->
  <circle cx="150" cy="150" r="150" fill="#B3E5FC"/>
  <circle cx="150" cy="170" r="120" fill="url(#water)"/>
  <circle cx="150" cy="170" r="120" fill="url(#ripple)" opacity="0.3"/>

  <!-- Leaf boat -->
  <path d="M120 160 Q150 130 180 160" fill="#2E7D32" stroke="#1B5E20" stroke-width="2"/>
  <path d="M110 160 Q150 180 190 160" fill="#388E3C"/>

  <!-- Cat -->
  <g transform="translate(135,140)">
    <!-- Body -->
    <ellipse cx="15" cy="15" rx="20" ry="15" fill="#777"/>
    <!-- Head -->
    <circle cx="15" cy="0" r="12" fill="#888"/>
    <!-- Ears -->
    <path d="M5 -8 L3 -15 L10 -10 Z" fill="#888"/>
    <path d="M25 -8 L27 -15 L20 -10 Z" fill="#888"/>
    <!-- Face -->
    <circle cx="11" cy="-2" r="2" fill="black"/>
    <circle cx="19" cy="-2" r="2" fill="black"/>
    <path d="M12 3 Q15 5 18 3" fill="none" stroke="black" stroke-width="1"/>
    <path d="M10 0 Q15 2 20 0" fill="none" stroke="white" stroke-width="0.5"/>
    <!-- Whiskers -->
    <line x1="5" y1="2" x2="0" y2="0" stroke="white" stroke-width="0.5"/>
    <line x1="5" y1="4" x2="0" y2="4" stroke="white" stroke-width="0.5"/>
    <line x1="25" y1="2" x2="30" y2="0" stroke="white" stroke-width="0.5"/>
    <line x1="25" y1="4" x2="30" y2="4" stroke="white" stroke-width="0.5"/>
  </g>

  <!-- Pirate Hat -->
  <path d="M125 125 L165 125 L145 105 Z" fill="#000"/>
  <path d="M120 125 L170 125 L165 135 L125 135 Z" fill="#333"/>
  <circle cx="145" cy="130" r="3" fill="#FFD700"/>

  <!-- Oars -->
  <line x1="110" y1="160" x2="90" y2="140" stroke="#8D6E63" stroke-width="2"/>
  <ellipse cx="85" cy="135" rx="8" ry="3" fill="#A1887F"/>
  <line x1="190" y1="160" x2="210" y2="140" stroke="#8D6E63" stroke-width="2"/>
  <ellipse cx="215" cy="135" rx="8" ry="3" fill="#A1887F"/>

  <!-- Water lilies -->
  <circle cx="50" cy="200" r="15" fill="#4CAF50"/>
  <circle cx="250" cy="180" r="12" fill="#4CAF50"/>
  <circle cx="45" cy="200" r="5" fill="#FFF59D"/>
  <circle cx="245" cy="180" r="4" fill="#FFF59D"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0F6FF;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0066CC;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#008000;stop-opacity:0.8" />
    </linearGradient>
    <path id="wave" d="M0,150 Q 50,145 100,150 Q 150,155 200,150 Q 250,145 300,150 L300,300 L0,300 Z" />
    <linearGradient id="waveGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#0066CC;stop-opacity:0.6" />
      <stop offset="100%" style="stop-color:#0066CC;stop-opacity:0" />
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Water with wave effect -->
  <rect x="0" y="150" width="300" height="150" fill="url(#waterGradient)" />
  <use href="#wave" fill="url(#waveGradient)" opacity="0.5" />
  
  <!-- Leaf boat -->
  <path d="M100,200 L150,180 Q160,170 170,180 L220,200 L200,220 Q190,210 180,220 L100,200 Z" fill="url(#waterGradient)" opacity="0.8">
    <animateTransform attributeName="transform" type="translate" from="0 0" to="20 0" dur="2s" repeatCount="indefinite" />
  </path>
  
  <!-- Cat -->
  <path d="M120,170 L130,160 Q140,155 150,160 L160,170 L140,180 Q130,175 120,180 L100,170 Z" fill="#FFA500" />
  <path d="M130,160 L140,150 L140,160 L130,160 Z" fill="#FFA500" />
  <path d="M140,150 Q142,148 145,150 142,148" fill="#000" />
  <path d="M135,165 Q137,167 135,165 137,163" fill="#000" />
  <path d="M125,170 Q127,168 125,170 127,172" fill="#000" />
  
  <!-- Pirate hat -->
  <path d="M140,130 L160,140 Q165,145 160,150 L140,150 L130,140 Q135,135 140,140 L140,130 Z" fill="#8B0000">
    <path d="M145,138 Q147,136 150,138 147,136" fill="#fff" />
    <path d="M148,134 Q149,133 150,134 149,133" fill="#fff" />
  </path>
  <path d="M155,132 Q160,130 165,132 160,130" fill="#8B0000" />
  
  <!-- Oars -->
  <path d="M90,200 L110,205 Q115,210 110,215 L90,220 Z" fill="#8B4513" />
  <path d="M210,200 L190,205 Q185,210 190,215 L210,220 Z" fill="#8B4513" />
  
  <!-- Fish -->
  <path d="M250,180 Q260,170 270,180 260,190 Z" fill="#0000FF" opacity="0.5" />
  <path d="M280,190 Q290,180 300,190 290,200 Z" fill="#0000FF" opacity="0.5" />
  
  <!-- Butterflies -->
  <path d="M200,150 Q210,140 220,150 Q230,140 220,150 Z" fill="url(#waterGradient)" opacity="0.7">
    <animateTransform attributeName="transform" type="translate" from="0 0" to="-20 0" dur="2s" repeatCount="indefinite" />
  </path>
  <path d="M250,160 Q260,150 270,160 Q280,150 270,160 Z" fill="#FF69B4" opacity="0.7" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#FDB813">
    <animate attributeName="opacity" from="1" to="0.5" dur="2s" repeatCount="indefinite" />
  </circle>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image clearly depicts a cat wearing a pirate hat, rowing a leaf boat on a pond, adhering closely to the prompt.

    The composition is simple but effective, with clear visual elements like the hat and oars.

    Player 2's image is less clear and lacks the distinctive elements of the prompt, making Player 1's submission more successful overall.

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
29
Player 2
20
Rectangles

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

Player 1
Player 2
2
Circles

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

Player 1
11
Player 2
1
Ellipses

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

Player 1
3
Player 2
Lines

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
8

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
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
28
Player 2
72
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
2
Player 2
4
Use Elements

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

Player 1
Player 2
1

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