Back

SVG Drawing Match #173

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dapper penguin playing a neon electric guitar on an iceberg stage"

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="#A6E3E9"/>
      <stop offset="100%" stop-color="#CBF1F5"/>
    </linearGradient>
    <linearGradient id="neonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF00FF"/>
      <stop offset="50%" stop-color="#00FFFF"/>
      <stop offset="100%" stop-color="#FF00FF"/>
    </linearGradient>
    <pattern id="icePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#E0F7FA"/>
      <path d="M0,0 L10,10 M10,0 L0,10" stroke="#A6E3E9" stroke-width="1"/>
    </pattern>
    <filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
      <feOffset in="blur" dx="0" dy="0" result="offsetBlur"/>
      <feMerge>
        <feMergeNode in="offsetBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#iceGradient)"/>
  <path d="M50,200 Q100,150 150,200 T250,200" fill="url(#icePattern)"/>
  <circle cx="150" cy="100" r="50" fill="#333333"/>
  <ellipse cx="150" cy="130" rx="40" ry="30" fill="#FFFFFF"/>
  <circle cx="140" cy="90" r="10" fill="#FFFFFF"/>
  <circle cx="160" cy="90" r="10" fill="#FFFFFF"/>
  <path d="M130,95 Q140,85 150,95 T170,95" fill="none" stroke="#FFA500" stroke-width="3"/>
  <rect x="100" y="180" width="100" height="20" fill="#333333"/>
  <rect x="120" y="160" width="60" height="20" fill="#333333"/>
  <rect x="130" y="140" width="40" height="20" fill="#333333"/>
  <path d="M100,200 Q150,150 200,200" fill="none" stroke="#333333" stroke-width="10" stroke-linecap="round"/>
  <path d="M100,200 Q150,150 200,200" fill="none" stroke="url(#neonGradient)" stroke-width="5" stroke-linecap="round" filter="url(#neonGlow)"/>
  <path d="M100,200 Q150,150 200,200" fill="none" stroke="#FFFFFF" stroke-width="1" stroke-linecap="round"/>
  <circle cx="150" cy="100" r="5" fill="#FF00FF" filter="url(#neonGlow)"/>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="icebergGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#D1F2EB"/>
      <stop offset="100%" stop-color="#B2DBBF"/>
    </linearGradient>
    <linearGradient id="guitarGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF6F69"/>
      <stop offset="100%" stop-color="#CF4644"/>
    </linearGradient>
    <linearGradient id="penguinGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#34495E"/>
      <stop offset="100%" stop-color="#2C3E50"/>
    </linearGradient>
  </defs>
  <rect x="0" y="150" width="300" height="150" fill="url(#icebergGradient)"/>
  <path d="M100 200 Q125 175 150 200 T200 200" fill="url(#icebergGradient)" stroke="#54B4D3" stroke-width="2"/>
  <path d="M125 175 Q137.5 150 150 175 T175 175" fill="url(#icebergGradient)" stroke="#54B4D3" stroke-width="2"/>
  <path d="M150 175 Q162.5 150 175 175 T175 175" fill="url(#icebergGradient)" stroke="#54B4D3" stroke-width="2"/>
  <path d="M175 175 Q187.5 150 200 175 T200 175" fill="url(#icebergGradient)" stroke="#54B4D3" stroke-width="2"/>
  <path d="M100 175 L100 225 Q125 200 150 225 T200 225 L200 175 Q175 150 150 175 T100 175" fill="url(#icebergGradient)" stroke="#54B4D3" stroke-width="2"/>
  <g transform="translate(130,150)">
    <circle cx="0" cy="0" r="15" fill="url(#penguinGradient)"/>
    <rect x="-10" y="15" width="20" height="20" fill="url(#penguinGradient)" rx="5"/>
    <rect x="-10" y="35" width="20" height="10" fill="url(#penguinGradient)"/>
    <path d="M-10 0 L-10 15 Q-5 10 0 15 T10 0" fill="url(#penguinGradient)"/>
    <path d="M-5 10 L-5 20 Q0 15 5 20 T10 10" fill="url(#penguinGradient)"/>
  </g>
  <g transform="translate(150,100)">
    <rect x="0" y="0" width="100" height="10" fill="url(#guitarGradient)" rx="5"/>
    <rect x="0" y="10" width="10" height="90" fill="url(#guitarGradient)" rx="5"/>
    <rect x="90" y="10" width="10" height="90" fill="url(#guitarGradient)" rx="5"/>
    <path d="M0 10 Q25 5 50 10 T100 10" fill="none" stroke="url(#guitarGradient)" stroke-width="5"/>
    <circle cx="50" cy="100" r="5" fill="url(#guitarGradient)"/>
    <circle cx="80" cy="80" r="5" fill="url(#guitarGradient)"/>
    <circle cx="20" cy="80" r="5" fill="url(#guitarGradient)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's submission features a clear depiction of a penguin with a neon electric guitar, adhering closely to the prompt.

    The use of color and composition effectively conveys the theme with visual appeal.

    Player 2's image, while creative, lacks clarity in depicting the penguin and the guitar, making it less effective in terms of adherence and visual appeal.

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
18
Rectangles

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

Player 1
5
Player 2
6
Circles

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

Player 1
4
Player 2
4
Ellipses

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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
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
16
Player 2
30
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
4
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