Back

SVG Drawing Match #2645

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two penguins fencing with spaghetti on an iceberg."

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#B0E0E6"/>
      <stop offset="100%" stop-color="#87CEEB"/>
    </linearGradient>
    <linearGradient id="ice" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#E6F4FF"/>
      <stop offset="100%" stop-color="#B0E0E6"/>
    </linearGradient>
    <linearGradient id="noodle" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>

  <!-- Iceberg -->
  <path d="M50 220 Q90 150 130 220 Q170 290 210 220 L250 250 L275 230 L225 300 H75 L50 250 Z" 
        fill="url(#ice)" stroke="#A4D4FF" stroke-width="2"/>

  <!-- Left Penguin -->
  <g transform="translate(90,180)">
    <path d="M0 0 Q0 -20 15 -20 Q30 -20 30 0 L30 40 Q15 50 0 40 Z" fill="black"/>
    <circle cx="15" cy="-25" r="12" fill="white"/>
    <circle cx="10" cy="-28" r="3" fill="black"/>
    <path d="M-5 15 L5 15 L10 25 L-10 25 Z" fill="orange"/>
    <path d="M15 35 L25 40 L15 45" stroke="#FF4500" stroke-width="3" stroke-linecap="round"/>
  </g>

  <!-- Right Penguin -->
  <g transform="translate(210,160)">
    <path d="M0 0 Q0 -20 -15 -20 Q-30 -20 -30 0 L-30 40 Q-15 50 0 40 Z" fill="black"/>
    <circle cx="-15" cy="-25" r="12" fill="white"/>
    <circle cx="-10" cy="-28" r="3" fill="black"/>
    <path d="M5 15 L-5 15 L-10 25 L10 25 Z" fill="orange"/>
    <path d="M-15 35 L-25 40 L-15 45" stroke="#FF4500" stroke-width="3" stroke-linecap="round"/>
  </g>

  <!-- Spaghetti Swords -->
  <path d="M120 110 C140 50 160 50 180 110" 
        stroke="url(#noodle)" stroke-width="8" stroke-linecap="round" stroke-dasharray="4 6"/>
  <path d="M180 140 C160 200 140 200 120 140" 
        stroke="url(#noodle)" stroke-width="8" stroke-linecap="round" stroke-dasharray="4 6"/>

  <!-- Splatter Effects -->
  <g fill="#FFA500" opacity="0.6">
    <circle cx="150" cy="100" r="3"/>
    <circle cx="160" cy="95" r="2"/>
    <circle cx="140" cy="105" r="2.5"/>
    <circle cx="155" cy="115" r="2"/>
  </g>
</svg>
SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="iceGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#d1f0f6"/>
      <stop offset="100%" stop-color="#a0d6e0"/>
    </linearGradient>
    <linearGradient id="penguinBlack" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#000000"/>
      <stop offset="100%" stop-color="#222"/>
    </linearGradient>
    <linearGradient id="penguinWhite" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ccc"/>
    </linearGradient>
    <linearGradient id="spaghettiGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#f4a261"/>
      <stop offset="100%" stop-color="#c7511b"/>
    </linearGradient>
    <radialGradient id="icebergGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#b0e0e6"/>
    </radialGradient>
  </defs>
  <!-- Iceberg -->
  <path d="M50,250 Q75,180 150,250 Q200,170 250,230 L250,300 L50,300 Z" fill="url(#icebergGradient)" stroke="#999" stroke-width="2"/>
  
  <!-- Penguins -->
  <!-- Left Penguin -->
  <g id="leftPenguin" transform="translate(100,180)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="20" ry="40" fill="url(#penguinBlack)" stroke="#333" stroke-width="2"/>
    <!-- Belly -->
    <ellipse cx="0" cy="10" rx="10" ry="25" fill="url(#penguinWhite)"/>
    <!-- Head -->
    <circle cx="0" cy="-35" r="10" fill="url(#penguinBlack)" stroke="#333" stroke-width="2"/>
    <!-- Beak -->
    <polygon points="0,-35 5,-30 -5,-30" fill="#ffb347"/>
    <!-- Eyes -->
    <circle cx="-3" cy="-37" r="1.5" fill="#000"/>
    <circle cx="3" cy="-37" r="1.5" fill="#000"/>
    <!-- Wings -->
    <ellipse cx="-15" cy="0" rx="5" ry="15" fill="url(#penguinBlack)" stroke="#333" stroke-width="1" transform="rotate(20 0 0)"/>
    <ellipse cx="15" cy="0" rx="5" ry="15" fill="url(#penguinBlack)" stroke="#333" stroke-width="1" transform="rotate(-20 0 0)"/>
  </g>
  
  <!-- Right Penguin -->
  <g id="rightPenguin" transform="translate(200,180)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="20" ry="40" fill="url(#penguinBlack)" stroke="#333" stroke-width="2"/>
    <!-- Belly -->
    <ellipse cx="0" cy="10" rx="10" ry="25" fill="url(#penguinWhite)"/>
    <!-- Head -->
    <circle cx="0" cy="-35" r="10" fill="url(#penguinBlack)" stroke="#333" stroke-width="2"/>
    <!-- Beak -->
    <polygon points="0,-35 5,-30 -5,-30" fill="#ffb347"/>
    <!-- Eyes -->
    <circle cx="-3" cy="-37" r="1.5" fill="#000"/>
    <circle cx="3" cy="-37" r="1.5" fill="#000"/>
    <!-- Wings -->
    <ellipse cx="-15" cy="0" rx="5" ry="15" fill="url(#penguinBlack)" stroke="#333" stroke-width="1" transform="rotate(20 0 0)"/>
    <ellipse cx="15" cy="0" rx="5" ry="15" fill="url(#penguinBlack)" stroke="#333" stroke-width="1" transform="rotate(-20 0 0)"/>
  </g>
  
  <!-- Spaghetti 1 (Left Penguin) -->
  <path d="M105,180 C115,170 125,180 115,190 C125,200 115,210 105,200 C95,210 105,200 115,190" fill="none" stroke="url(#spaghettiGradient)" stroke-width="2"/>
  <path d="M115,190 C125,180 135,190 125,200" fill="none" stroke="url(#spaghettiGradient)" stroke-width="2"/>
  
  <!-- Spaghetti 2 (Right Penguin) -->
  <path d="M195,180 C185,170 175,180 185,190 C175,200 185,210 195,200 C205,210 195,200" fill="none" stroke="url(#spaghettiGradient)" stroke-width="2"/>
  <path d="M185,190 C175,180 165,190 175,200" fill="none" stroke="url(#spaghettiGradient)" stroke-width="2"/>
  
  <!-- Fencing (Imaginary) -->
  <!-- Left Fencer -->
  <g stroke="#555" stroke-width="2">
    <line x1="100" y1="160" x2="130" y2="120"/>
    <line x1="130" y1="120" x2="170" y2="160"/>
    <line x1="130" y1="120" x2="140" y2="100"/>
  </g>
  <!-- Right Fencer -->
  <g stroke="#555" stroke-width="2">
    <line x1="200" y1="160" x2="170" y2="120"/>
    <line x1="170" y1="120" x2="130" y2="160"/>
    <line x1="170" y1="120" x2="160" y2="100"/>
  </g>
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 nano (2025-04-14) Player 2

Judge's Analysis

    Player 2's submission adheres more closely to the prompt by clearly depicting two penguins fencing with spaghetti on an iceberg.

    The imagery is detailed, with distinct spaghetti swords and a well-defined iceberg.

    Player 1's submission, while creative, is more abstract and lacks clarity in representing the theme effectively.

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
18
Player 2
27
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
8
Player 2
6
Ellipses

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

Player 1
Player 2
8
Lines

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

Player 1
Player 2
6
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
9
Player 2
5
Groups

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

Player 1
3
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
15

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
6

Complexity Metrics

Path Commands

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

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