Back

SVG Drawing Match #2030

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flying fish playing chess on floating lily pads"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#5F9EA0"/>
      <stop offset="100%" stop-color="#4682B4"/>
    </linearGradient>
    <pattern id="lilyPadPattern" width="30" height="30" patternUnits="userSpaceOnUse">
      <rect width="30" height="30" fill="#8FBC8F"/>
      <circle cx="15" cy="15" r="8" fill="#006400"/>
    </pattern>
  </defs>
  
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <rect x="0" y="150" width="300" height="150" fill="url(#waterGradient)"/>
  
  <circle cx="50" cy="100" r="40" fill="#F4A460"/>
  <circle cx="100" cy="90" r="30" fill="none" stroke="#F4A460" stroke-width="5"/>
  <circle cx="150" cy="80" r="20" fill="#F4A460"/>
  <path d="M120 80 L140 60 L160 80" fill="none" stroke="#F4A460" stroke-width="3"/>
  <path d="M130 70 Q140 75 150 70" fill="none" stroke="#F4A460" stroke-width="3"/>
  
  <path d="M210 110 Q220 100 230 110" fill="none" stroke="#FFC0CB" stroke-width="5"/>
  <path d="M210 130 Q220 120 230 130" fill="none" stroke="#FFC0CB" stroke-width="5"/>
  <path d="M210 150 Q220 140 230 150" fill="none" stroke="#FFC0CB" stroke-width="5"/>
  <circle cx="250" cy="120" r="40" fill="#FFC0CB"/>
  
  <rect x="30" y="180" width="240" height="20" fill="url(#lilyPadPattern)"/>
  <rect x="50" y="190" width="20" height="20" fill="url(#lilyPadPattern)"/>
  <rect x="200" y="200" width="60" height="30" fill="url(#lilyPadPattern)"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient sky and water -->
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#a1c4fd;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#85b4ff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="lilyPadGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#6c8f47;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4b6f44;stop-opacity:1" />
    </linearGradient>
    <pattern id="fishScales" width="6" height="6" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="3" r="1" fill="#fff" opacity="0.6"/>
    </pattern>
  </defs>

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

  <!-- Floating lily pads -->
  <g transform="translate(100,150)">
    <!-- Large lily pad -->
    <ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#lilyPadGradient)" opacity="0.8">
      <animateTransform attributeName="transform" type="translate" from="0 0" to="20 0" dur="4s" repeatCount="indefinite"/>
    </ellipse>
    <!-- Lily pad veins -->
    <path d="M-40,0 Q 0,5 40,0 Q 0,-5 -40,0" fill="none" stroke="#3b5a3a" stroke-width="2"/>
    
    <!-- Chessboard -->
    <g transform="translate(-30,-10)">
      <rect width="60" height="60" fill="url(#waterGradient)" opacity="0.4"/>
      <!-- Chessboard grid -->
      <g transform="translate(5,5)">
        <rect width="10" height="10" fill="#fff" x="0" y="0"/>
        <rect width="10" height="10" fill="#fff" x="20" y="0"/>
        <rect width="10" height="10" fill="#fff" x="40" y="0"/>
        <rect width="10" height="10" fill="#fff" x="0" y="20"/>
        <rect width="10" height="10" fill="#fff" x="20" y="20"/>
        <rect width="10" height="10" fill="#fff" x="40" y="20"/>
        <rect width="10" height="10" fill="#fff" x="0" y="40"/>
        <rect width="10" height="10" fill="#fff" x="20" y="40"/>
        <rect width="10" height="10" fill="#fff" x="40" y="40"/>
      </g>
      <!-- Chess pieces -->
      <g transform="translate(15,15)">
        <!-- White pieces -->
        <path d="M0,0 L10,10 L20,0" fill="#fff"/>
        <circle cx="15" cy="15" r="5" fill="#fff"/>
        <!-- Black pieces -->
        <path d="M10,10 L20,20 L30,10" fill="#333"/>
        <circle cx="25" cy="25" r="5" fill="#333"/>
      </g>
    </g>
  </g>

  <!-- Flying fish -->
  <g transform="translate(150,100)">
    <!-- Fish 1 -->
    <path d="M0,0 Q 20,10 40,0 Q 60,-10 80,0 L120,40 L160,0 L200,40 L240,0 Q220,-10 200,-20" fill="#ffd700" opacity="0.8">
      <animateTransform attributeName="transform" type="translate" from="0 0" to="40 0" dur="6s" repeatCount="indefinite"/>
    </path>
    <!-- Fish 2 -->
    <path d="M0,0 Q 20,-10 40,0 Q 60,10 80,0 L120,-40 L160,0 L200,40 L240,0 Q220,10 200,20" fill="#c0c0c0" opacity="0.8">
      <animateTransform attributeName="transform" type="translate" from="0 0" to="-40 0" dur="6s" repeatCount="indefinite"/>
    </path>
  </g>

  <!-- Water ripples -->
  <g transform="translate(100,150)" opacity="0.3">
    <circle r="10" fill="none" stroke="#fff" stroke-width="2"/>
    <circle r="20" fill="none" stroke="#fff" stroke-width="2"/>
    <circle r="30" fill="none" stroke="#fff" stroke-width="2"/>
  </g>

  <!-- Background stars -->
  <g transform="translate(0,0)">
    <path d="M50,50 L55,55 L60,52 L58,58 L55,55" fill="#fff"/>
    <path d="M200,100 L205,105 L210,102 L208,108 L205,105" fill="#fff"/>
    <path d="M100,200 L105,205 L110,202 L108,208 L105,205" fill="#fff"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission is more abstract and visually dynamic, capturing the surreal concept of flying fish playing chess on floating lily pads with an intriguing use of shapes and colors.

    While both images are abstract, Player 2's composition suggests movement and interaction, aligning more closely with the imaginative nature of the prompt, whereas Player 1's lacks clear elements of chess or lily pads.

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
16
Player 2
26
Rectangles

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

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

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

Player 1
5
Player 2
8
Groups

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

Player 1
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
11
Player 2
40
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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