Back

SVG Drawing Match #2078

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Iridescent squid playing chess on a floating lily pad"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1A3C6E" />
      <stop offset="50%" stop-color="#2A5CA3" />
      <stop offset="100%" stop-color="#4682B4" />
    </radialGradient>
    
    <linearGradient id="lily" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#2E8B57" />
      <stop offset="50%" stop-color="#3CB371" />
      <stop offset="100%" stop-color="#2E8B57" />
    </linearGradient>
    
    <linearGradient id="squidBody" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF69B4" />
      <stop offset="25%" stop-color="#9370DB" />
      <stop offset="50%" stop-color="#6495ED" />
      <stop offset="75%" stop-color="#00BFFF" />
      <stop offset="100%" stop-color="#FF69B4" />
    </linearGradient>
    
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <pattern id="chessboard" x="0" y="0" width="16" height="16" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="8" height="8" fill="#EAD7B7" />
      <rect x="8" y="0" width="8" height="8" fill="#7D5C3C" />
      <rect x="0" y="8" width="8" height="8" fill="#7D5C3C" />
      <rect x="8" y="8" width="8" height="8" fill="#EAD7B7" />
    </pattern>
  </defs>
  
  <!-- Water Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#water)" />
  
  <!-- Water Circles -->
  <circle cx="50" cy="250" r="15" fill="#4682B420" />
  <circle cx="90" cy="270" r="10" fill="#4682B420" />
  <circle cx="220" cy="260" r="20" fill="#4682B420" />
  <circle cx="260" cy="240" r="12" fill="#4682B420" />
  
  <!-- Lily Pad -->
  <ellipse cx="150" cy="170" rx="90" ry="70" fill="url(#lily)" />
  <ellipse cx="150" cy="170" rx="85" ry="65" fill="url(#lily)" stroke="#194D33" stroke-width="1" />
  <path d="M70,170 Q90,150 100,170 Q110,190 130,170 Q150,150 170,170 Q190,190 210,170 Q230,150 230,170" 
        fill="none" stroke="#194D33" stroke-width="1" />
  
  <!-- Chess Board -->
  <rect x="110" y="130" width="80" height="80" fill="url(#chessboard)" stroke="#5F4131" stroke-width="2" />
  
  <!-- Chess Pieces -->
  <circle cx="118" cy="138" r="5" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="134" cy="138" r="5" fill="#000000" />
  <circle cx="150" cy="138" r="5" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="166" cy="138" r="5" fill="#000000" />
  <circle cx="182" cy="138" r="5" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  
  <circle cx="118" cy="154" r="5" fill="#000000" />
  <path d="M138,154 L142,150 L138,146 L134,150 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="150" cy="154" r="5" fill="#000000" />
  <circle cx="166" cy="154" r="5" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="182" cy="154" r="5" fill="#000000" />
  
  <path d="M118,170 L114,174 L118,178 L122,174 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="134" cy="170" r="5" fill="#000000" />
  <path d="M146,170 L154,170 L150,178 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  <circle cx="166" cy="170" r="5" fill="#000000" />
  <path d="M182,170 L178,174 L182,178 L186,174 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5" />
  
  <!-- Squid -->
  <g filter="url(#glow)">
    <!-- Squid Body -->
    <ellipse cx="160" cy="80" rx="25" ry="35" fill="url(#squidBody)" />
    
    <!-- Squid Head -->
    <ellipse cx="160" cy="65" rx="20" ry="22" fill="url(#squidBody)" />
    
    <!-- Squid Eyes -->
    <circle cx="153" cy="60" r="5" fill="white" />
    <circle cx="167" cy="60" r="5" fill="white" />
    <circle cx="153" cy="60" r="2" fill="black" />
    <circle cx="167" cy="60" r="2" fill="black" />
    
    <!-- Squid Tentacles -->
    <path d="M140,95 Q130,110 120,150" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M145,100 Q140,120 135,145" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M155,105 Q155,125 155,140" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M165,105 Q170,125 170,145" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M175,100 Q185,120 190,150" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M180,95 Q195,110 200,140" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    
    <!-- Tentacle Suckers -->
    <circle cx="120" cy="150" r="3" fill="#FF69B480" />
    <circle cx="135" cy="145" r="3" fill="#9370DB80" />
    <circle cx="155" cy="140" r="3" fill="#6495ED80" />
    <circle cx="170" cy="145" r="3" fill="#00BFFF80" />
    <circle cx="190" cy="150" r="3" fill="#FF69B480" />
    <circle cx="200" cy="140" r="3" fill="#9370DB80" />
    
    <!-- Tentacle holding chess piece -->
    <path d="M138,95 Q115,115 118,138" fill="none" stroke="url(#squidBody)" stroke-width="4" />
    <path d="M178,95 Q200,115 182,154" fill="none" stroke="url(#squidBody)" stroke-width="4" />
  </g>
  
  <!-- Sparkles -->
  <circle cx="140" cy="60" r="1" fill="white" />
  <circle cx="180" cy="70" r="1" fill="white" />
  <circle cx="155" cy="40" r="1" fill="white" />
  <circle cx="170" cy="50" r="1" fill="white" />
  <circle cx="110" cy="160" r="1" fill="white" />
  <circle cx="190" cy="160" r="1" fill="white" />
  
  <!-- Water Reflections -->
  <ellipse cx="150" cy="245" rx="70" ry="20" fill="#4682B440" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">

  <!-- Background - Water -->
  <rect x="0" y="0" width="300" height="300" fill="#00A4E4" />

  <!-- Lily Pad -->
  <ellipse cx="150" cy="200" rx="100" ry="50" fill="#4CAF50" />

  <!-- Chessboard -->
  <rect x="50" y="50" width="200" height="200" fill="#FFF" />
  <rect x="50" y="50" width="25" height="25" fill="#333" />
  <rect x="75" y="75" width="25" height="25" fill="#333" />
  <rect x="100" y="50" width="25" height="25" fill="#333" />
  <rect x="125" y="75" width="25" height="25" fill="#333" />
  <rect x="150" y="50" width="25" height="25" fill="#333" />
  <rect x="175" y="75" width="25" height="25" fill="#333" />
  <rect x="200" y="50" width="25" height="25" fill="#333" />
  <rect x="50" y="100" width="25" height="25" fill="#333" />
  <rect x="75" y="125" width="25" height="25" fill="#333" />
  <rect x="100" y="100" width="25" height="25" fill="#333" />
  <rect x="125" y="125" width="25" height="25" fill="#333" />
  <rect x="150" y="100" width="25" height="25" fill="#333" />
  <rect x="175" y="125" width="25" height="25" fill="#333" />
  <rect x="200" y="100" width="25" height="25" fill="#333" />
  <rect x="50" y="150" width="25" height="25" fill="#333" />
  <rect x="75" y="175" width="25" height="25" fill="#333" />
  <rect x="100" y="150" width="25" height="25" fill="#333" />
  <rect x="125" y="175" width="25" height="25" fill="#333" />
  <rect x="150" y="150" width="25" height="25" fill="#333" />
  <rect x="175" y="175" width="25" height="25" fill="#333" />
  <rect x="200" y="150" width="25" height="25" fill="#333" />
  <rect x="50" y="200" width="25" height="25" fill="#333" />
  <rect x="75" y="225" width="25" height="25" fill="#333" />
  <rect x="100" y="200" width="25" height="25" fill="#333" />
  <rect x="125" y="225" width="25" height="25" fill="#333" />
  <rect x="150" y="200" width="25" height="25" fill="#333" />
  <rect x="175" y="225" width="25" height="25" fill="#333" />
  <rect x="200" y="200" width="25" height="25" fill="#333" />

  <!-- Iridescent Squid -->
  <circle cx="150" cy="100" r="30" fill="url(#gradient)" />
  <line x1="150" y1="100" x2="200" y2="60" stroke="#888" stroke-width="2" />
  <line x1="150" y1="100" x2="160" y2="150" stroke="#888" stroke-width="2" />
  <line x1="150" y1="100" x2="100" y2="60" stroke="#888" stroke-width="2" />
  <line x1="150" y1="100" x2="110" y2="150" stroke="#888" stroke-width="2" />

  <!-- Gradients -->
  <defs>
    <linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#f00;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#0f0;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00f;stop-opacity:1" />
    </linearGradient>
  </defs>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image captures the prompt more effectively by depicting an iridescent squid on a lily pad with a clear chessboard, adhering creatively to the theme.

    The visual appeal is enhanced by the squid's colorful glow and the detailed setting.

    Player 2's image lacks clear representation of a squid or lily pad, and the chess concept is more abstract, reducing adherence to 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
55
Player 2
36
Rectangles

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

Player 1
6
Player 2
30
Circles

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

Player 1
31
Player 2
1
Ellipses

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

Player 1
5
Player 2
1
Lines

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
5

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