Back

SVG Drawing Match #1965

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Penguin in a top hat riding a unicycle on icy terrain"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="iceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#80bfff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00bfff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="penguinGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a2b4d;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="hatGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#9e9e9e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#5c5c5c;stop-opacity:1" />
    </radialGradient>
  </defs>
  <!-- Ice Terrain -->
  <rect x="0" y="200" width="300" height="100" fill="url(#iceGradient)"/>
  <path d="M 0 200 Q 75 180 150 200 T 300 200" fill="url(#iceGradient)" />
  <!-- Penguin -->
  <ellipse cx="150" cy="170" rx="20" ry="10" fill="url(#penguinGradient)"/>
  <ellipse cx="150" cy="185" rx="25" ry="15" fill="url(#penguinGradient)"/>
  <ellipse cx="150" cy="200" rx="30" ry="20" fill="url(#penguinGradient)"/>
  <ellipse cx="150" cy="215" rx="35" ry="25" fill="url(#penguinGradient)"/>
  <ellipse cx="150" cy="150" rx="5" ry="5" fill="#ffffff"/>
  <ellipse cx="145" cy="150" rx="5" ry="5" fill="#ffffff"/>
  <circle cx="150" cy="155" r="2" fill="#000000"/>
  <circle cx="145" cy="155" r="2" fill="#000000"/>
  <path d="M 140 165 Q 150 175 160 165" stroke="#000000" stroke-width="2" fill="none"/>
  <!-- Top Hat -->
  <rect x="140" y="130" width="20" height="30" fill="url(#hatGradient)" />
  <rect x="143" y="160" width="14" height="10" fill="#000000" />
  <!-- Unicycle -->
  <circle cx="150" cy="230" r="20" fill="#ff6347"/>
  <line x1="150" y1="190" x2="150" y2="230" stroke="#ff6347" stroke-width="5"/>
  <circle cx="150" cy="230" r="2" fill="#ff6347"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="iceGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#a0d9e9" />
      <stop offset="100%" stop-color="#c2e9fb" />
    </linearGradient>
    <linearGradient id="topHatGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#666666" />
    </linearGradient>
    <radialGradient id="sunGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ffdd55" />
      <stop offset="100%" stop-color="#ffbb00" />
    </radialGradient>
    <pattern id="icePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="none" stroke="#a0d9e9" stroke-width="2" />
      <path d="M10 0 L10 20 M0 10 L20 10" stroke="#c2e9fb" stroke-width="1" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#iceGradient)" />
  <rect x="0" y="200" width="300" height="100" fill="url(#icePattern)" />
  <circle cx="150" cy="80" r="40" fill="url(#sunGradient)" />
  <ellipse cx="150" cy="180" rx="100" ry="30" fill="#ffffff" opacity="0.8" />
  <circle cx="150" cy="130" r="30" fill="#000000" />
  <circle cx="140" cy="120" r="5" fill="#ffffff" />
  <circle cx="160" cy="120" r="5" fill="#ffffff" />
  <path d="M150 140 Q160 150 150 160" stroke="#ff6666" stroke-width="3" fill="none" />
  <rect x="130" cy="100" width="40" height="20" fill="url(#topHatGradient)" />
  <rect x="135" cy="90" width="30" height="10" fill="url(#topHatGradient)" />
  <circle cx="150" cy="175" r="20" fill="#ff6666" />
  <ellipse cx="150" cy="190" rx="15" ry="5" fill="#ff6666" />
  <line x1="130" y1="175" x2="170" y1="175" stroke="#000000" stroke-width="3" />
  <circle cx="150" cy="225" r="10" fill="#000000" />
  <circle cx="150" cy="225" r="7" fill="#ffffff" />
  <rect x="145" y="230" width="10" height="30" fill="#000000" />
  <circle cx="150" cy="260" r="15" fill="#000000" />
  <circle cx="150" cy="260" r="10" fill="#ffffff" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's image successfully depicts a penguin wearing a top hat on icy terrain, capturing the whimsical idea with clear visual elements.

    The composition is straightforward, and the color contrast is effective in highlighting the key features.

    Player 2's submission could not be evaluated due to an error loading the SVG.

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
Rectangles

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

Player 1
3
Player 2
Circles

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

Player 1
4
Player 2
Ellipses

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

Player 1
6
Player 2
Lines

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2

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