Back

SVG Drawing Match #179

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin conducting an orchestra of musical instruments made of ice"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#A1C4FD" />
      <stop offset="100%" stop-color="#C2E9FB" />
    </linearGradient>
    <linearGradient id="iceGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#E0EAFC" />
      <stop offset="100%" stop-color="#CFDEF3" />
    </linearGradient>
    <radialGradient id="penguinGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#000000" />
      <stop offset="100%" stop-color="#2B2B2B" />
    </radialGradient>
    <pattern id="icePattern" x="0" y="0" width="0.1" height="0.1">
      <rect width="100%" height="100%" fill="none" stroke="#CFDEF3" stroke-width="1"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <ellipse cx="150" cy="250" rx="120" ry="40" fill="white"/>
  <ellipse cx="150" cy="250" rx="110" ry="30" fill="url(#iceGradient)"/>
  <circle cx="150" cy="80" r="50" fill="url(#penguinGradient)"/>
  <ellipse cx="150" cy="120" rx="40" ry="60" fill="url(#penguinGradient)"/>
  <ellipse cx="130" cy="70" rx="10" ry="15" fill="white"/>
  <ellipse cx="170" cy="70" rx="10" ry="15" fill="white"/>
  <circle cx="130" cy="70" r="5" fill="black"/>
  <circle cx="170" cy="70" r="5" fill="black"/>
  <path d="M140,100 Q150,90 160,100" stroke="orange" stroke-width="3" fill="none"/>
  <path d="M150,160 Q160,170 150,180 Q140,170 150,160" fill="white"/>
  <rect x="50" y="200" width="50" height="100" fill="url(#iceGradient)" transform="rotate(10)"/>
  <rect x="200" y="200" width="50" height="100" fill="url(#iceGradient)" transform="rotate(-10)"/>
  <circle cx="75" cy="230" r="20" fill="url(#icePattern)"/>
  <circle cx="225" cy="230" r="20" fill="url(#icePattern)"/>
  <path d="M100,210 Q90,220 80,230 Q100,240 120,230 Q110,220 100,210" fill="none" stroke="#CFDEF3" stroke-width="3"/>
  <path d="M250,210 Q240,220 230,230 Q250,240 270,230 Q260,220 250,210" fill="none" stroke="#CFDEF3" stroke-width="3"/>
  <line x1="150" y1="100" x2="130" y2="120" stroke="black" stroke-width="3"/>
  <line x1="150" y1="100" x2="170" y2="120" stroke="black" stroke-width="3"/>
  <path d="M150,250 Q160,260 170,250" fill="none" stroke="black" stroke-width="3"/>
  <path d="M150,250 Q140,260 130,250" fill="none" stroke="black" stroke-width="3"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#C2EDFC" />
  
  <!-- Ice instruments -->
  <circle cx="50" cy="150" r="40" fill="#D9EEF2" />
  <circle cx="150" cy="150" r="40" fill="#D9EEF2" />
  <circle cx="250" cy="150" r="40" fill="#D9EEF2" />
  
  <!-- Penguin conductor -->
  <path d="M100,230 C110,180 190,180 200,230 L165,230 L165,300 135,300 135,230 Z" fill="#E7E7E7" />
  <circle cx="150" cy="140" r="20" fill="#E7E7E7" />
  <circle cx="140" cy="135" r="4" fill="#000" />
  <circle cx="160" cy="135" r="4" fill="#000" />
  <ellipse cx="150" cy="145" rx="8" ry="5" fill="#FEE6A9" />
  
  <!-- Conductor's baton -->
  <line x1="138" y1="235" x2="120" y2="260" stroke="#907355" stroke-width="3" />
  
  <!-- Musical notes -->
  <text x="115" y="165" font-family="Arial" font-size="20" fill="#000">&#9835;</text>
  <text x="137" y="165" font-family="Arial" font-size="20" fill="#000">&#9833;</text>
  <text x="158" y="165" font-family="Arial" font-size="20" fill="#000">&#9834;</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt by depicting a penguin with clear musical notes, suggesting an orchestra setting.

    The technical quality is consistent throughout, and the simplicity of the ice-themed instruments aligns with the prompt.

    Player 1's image lacks clarity in presenting the concept of an orchestra with ice instruments, making Player 2's submission more visually coherent and appealing.

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

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

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

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
6

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

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