Back

SVG Drawing Match #1032

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A koala playing chess with a penguin on a floating iceberg"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
        <stop offset="0%" style="stop-color:rgb(0,191,255);stop-opacity:1" />
        <stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    </linearGradient>
    <pattern id="icePattern" patternUnits="userSpaceOnUse" width="10" height="10">
        <circle cx="5" cy="5" r="3" fill="white" />
    </pattern>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
        <stop offset="0%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
        <stop offset="100%" style="stop-color:rgb(255,69,0);stop-opacity:1" />
    </linearGradient>
</defs>
<rect width="300" height="300" fill="url(#grad1)" />
<g transform="translate(50,100)">
    <path d="M150 0 C175 0 200 50 200 100 C200 150 175 200 150 200 C125 200 100 150 100 100 C100 50 125 0 150 0 Z" fill="url(#icePattern)" />
    <path d="M100 100 L150 150 L200 100 Z" fill="white" />
</g>
<g transform="translate(100,150)">
    <circle cx="50" cy="50" r="30" fill="url(#grad2)" />
    <ellipse cx="50" cy="40" rx="10" ry="5" fill="black" />
    <circle cx="40" cy="50" r="5" fill="white" />
    <circle cx="60" cy="50" r="5" fill="white" />
    <circle cx="40" cy="50" r="2" fill="black" />
    <circle cx="60" cy="50" r="2" fill="black" />
    <rect x="35" y="60" width="30" height="10" rx="5" fill="black" />
</g>
<g transform="translate(180,150)">
    <ellipse cx="50" cy="50" rx="30" ry="20" fill="#3498db" />
    <ellipse cx="50" cy="30" rx="15" ry="10" fill="white" />
    <ellipse cx="45" cy="30" rx="5" ry="3" fill="black" />
    <ellipse cx="55" cy="30" rx="5" ry="3" fill="black" />
    <rect x="35" y="50" width="30" height="10" rx="5" fill="black" />
</g>
<g transform="translate(150,170)">
    <rect x="0" y="0" width="30" height="30" fill="white" />
    <rect x="0" y="30" width="30" height="30" fill="black" />
    <rect x="30" y="0" width="30" height="30" fill="black" />
    <rect x="30" y="30" width="30" height="30" fill="white" />
    <rect x="60" y="0" width="30" height="30" fill="white" />
    <rect x="60" y="30" width="30" height="30" fill="black" />
    <rect x="90" y="0" width="30" height="30" fill="black" />
    <rect x="90" y="30" width="30" height="30" fill="white" />
</g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="icebergGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#b3e5fc"/>
      <stop offset="100%" stop-color="#81d4fa"/>
    </linearGradient>
    <linearGradient id="chessGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <radialGradient id="koalaGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#666"/>
      <stop offset="100%" stop-color="#333"/>
    </radialGradient>
    <radialGradient id="penguinGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#000"/>
      <stop offset="100%" stop-color="#fff"/>
    </radialGradient>
  </defs>
  
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#icebergGradient)" />

  <!-- Floating Iceberg -->
  <ellipse cx="150" cy="250" rx="100" ry="30" fill="url(#icebergGradient)" />
  <path d="M50,250 Q150,150 250,250 Z" fill="url(#icebergGradient)" stroke="#a0d8ef" stroke-width="2"/>

  <!-- Chess Board -->
  <rect x="100" y="180" width="100" height="100" fill="#654321" stroke="#000" stroke-width="2"/>
  <g id="chessSquares">
    <pattern id="chessPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="5" height="5" fill="#fff"/>
      <rect x="5" y="5" width="5" height="5" fill="#000"/>
    </pattern>
    <rect x="100" y="180" width="100" height="100" fill="url(#chessPattern)" />
  </g>

  <!-- Koala -->
  <g transform="translate(100,220)">
    <circle cx="20" cy="20" r="15" fill="url(#koalaGradient)" />
    <circle cx="12" cy="15" r="3" fill="#fff"/>
    <circle cx="28" cy="15" r="3" fill="#fff"/>
    <path d="M15,25 Q20,30 25,25" stroke="#000" stroke-width="2" fill="none"/>
    <ellipse cx="20" cy="35" rx="10" ry="5" fill="#8d6e63"/>
  </g>

  <!-- Penguin -->
  <g transform="translate(180,220)">
    <ellipse cx="20" cy="20" rx="15" ry="20" fill="url(#penguinGradient)" stroke="#000" stroke-width="2"/>
    <circle cx="14" cy="15" r="3" fill="#fff"/>
    <circle cx="26" cy="15" r="3" fill="#fff"/>
    <path d="M20,20 Q20,25 25,22" stroke="#ff5722" stroke-width="2" fill="none"/>
    <rect x="18" y="35" width="4" height="10" fill="#000"/>
  </g>

  <!-- Chess Pieces -->
  <circle cx="130" cy="230" r="3" fill="#000"/>
  <circle cx="170" cy="250" r="3" fill="#fff"/>
  <circle cx="150" cy="240" r="3" fill="#000"/>
  <circle cx="160" cy="220" r="3" fill="#fff"/>
  
  <!-- Iceberg Reflection -->
  <path d="M50,250 Q150,260 250,250" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none" />
</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 depicts the concept of a koala and a penguin interacting with a chessboard, adhering better to the prompt.

    The presence of recognizable animal features and the chessboard enhances its creativity and visual appeal.

    Player 1's image lacks clarity in representing both animals and the setting, making it less effective in conveying the intended idea.

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
24
Player 2
22
Rectangles

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

Player 1
11
Player 2
6
Circles

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

Player 1
6
Player 2
9
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
13

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