Back

SVG Drawing Match #578

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin DJ spinning records on an iceberg under northern lights"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with Northern Lights -->
  <defs>
    <linearGradient id="northernLights" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0f2027"/>
      <stop offset="50%" stop-color="#203a43"/>
      <stop offset="100%" stop-color="#2c5364"/>
    </linearGradient>
    <radialGradient id="aurora" cx="50%" cy="50%" r="70%">
      <stop offset="0%" style="stop-color:rgba(0,255,255,0.3)" />
      <stop offset="50%" style="stop-color:rgba(0,255,255,0)" />
    </radialGradient>
    <linearGradient id="iceberg" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0c8f0"/>
      <stop offset="100%" stop-color="#0f4c81"/>
    </linearGradient>
    <linearGradient id="penguinBody" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#000"/>
      <stop offset="1" stop-color="#555"/>
    </linearGradient>
    <linearGradient id="penguinBelly" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ccc"/>
    </linearGradient>
    <radialGradient id="recordGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#333" />
      <stop offset="100%" stop-color="#111" />
    </radialGradient>
  </defs>
  
  <!-- Northern Lights -->
  <rect width="300" height="300" fill="url(#northernLights)" />
  <path d="M0,100 Q75,80 150,100 T300,100 L300,300 L0,300 Z" fill="url(#aurora)" opacity="0.6"/>
  
  <!-- Iceberg -->
  <path d="M50,200 C70,150 230,150 250,200 L250,300 L50,300 Z" fill="url(#iceberg)" />
  
  <!-- Record Turntable -->
  <circle cx="150" cy="220" r="40" fill="url(#recordGradient)" stroke="#222" stroke-width="2" />
  <circle cx="150" cy="220" r="5" fill="#fff" />
  <line x1="150" y1="220" x2="150" y2="180" stroke="#fff" stroke-width="2" stroke-dasharray="4"/>
  
  <!-- Penguin Body -->
  <ellipse cx="150" cy="180" rx="20" ry="30" fill="url(#penguinBody)" />
  <ellipse cx="150" cy="190" rx="15" ry="20" fill="url(#penguinBelly)" />
  
  <!-- Penguin Eyes -->
  <circle cx="140" cy="170" r="3" fill="#fff" />
  <circle cx="160" cy="170" r="3" fill="#fff" />
  <circle cx="140" cy="170" r="1" fill="#000" />
  <circle cx="160" cy="170" r="1" fill="#000" />
  
  <!-- Penguin Beak -->
  <polygon points="150,175 145,180 155,180" fill="#ffdb58" />
  
  <!-- Penguin Arms -->
  <path d="M130,190 Q125,200 130,210" stroke="#000" stroke-width="2" fill="none" />
  <path d="M170,190 Q175,200 170,210" stroke="#000" stroke-width="2" fill="none" />
  
  <!-- Headphones -->
  <circle cx="133" cy="165" r="10" stroke="#555" stroke-width="2" fill="none" />
  <circle cx="167" cy="165" r="10" stroke="#555" stroke-width="2" fill="none" />
  <path d="M143,165 Q150,160 157,165" stroke="#555" stroke-width="2" fill="none" />
  
  <!-- Glow lines for Northern Lights -->
  <path d="M0,120 Q50,80 100,120 T200,120 Q250,80 300,120" stroke="rgba(0,255,255,0.3)" stroke-width="2" fill="none" />
  <path d="M0,140 Q60,100 120,140 T240,140 Q300,100 300,140" stroke="rgba(0,255,255,0.2)" stroke-width="2" fill="none" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" preserveAspectRatio="xMidYMid" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#032B44" />
    <stop offset="100%" stop-color="#0A789A" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)" />

  <!-- Northern Lights -->
  <linearGradient id="auroraGrad" x1="40%" y1="0%" x2="60%" y2="100%">
    <stop offset="0%" stop-color="#66CCCC" />
    <stop offset="20%" stop-color="#A1C9F2" />
    <stop offset="40%" stop-color="#89F984" />
    <stop offset="60%" stop-color="#56EAF4" />
    <stop offset="100%" stop-color="#22CCC3" />
  </linearGradient>
  <path d="M 20 0 L 35 250 Q 40 290 60 280 L 100 0 Z" fill="none" stroke-width="5" stroke="url(#auroraGrad)" />
  <path d="M 140 0 L 155 250 Q 160 290 180 280 L 220 0 Z" fill="none" stroke-width="5" stroke="url(#auroraGrad)" />
  <path d="M 260 0 L 275 250 Q 280 290 300 280 L 280 0 Z" fill="none" stroke-width="5" stroke="url(#auroraGrad)" />

  <!-- Iceberg -->
  <linearGradient id="iceGrad" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#83D7F2" />
    <stop offset="100%" stop-color="#B2F5EA" />
  </linearGradient>
  <rect x="60" y="115" width="180" height="60" fill="url(#iceGrad)" rx="10" />
  <ellipse cx="150" cy="135" rx="60" ry="30" fill="url(#iceGrad)" />

  <!-- Penguin DJ -->
  <path d="M 120 200 L 120 230 Q 110 240 100 240 L 100 230 Q 90 220 80 200 L 80 170 Q 70 160 60 160 L 60 200 Z" fill="#404040" />
  <circle cx="90" cy="190" r="20" fill="#808080" />
  <circle cx="110" cy="190" r="10" fill="#404040" />
  <line x1="100" y1="170" x2="100" y2="160" stroke="#808080" stroke-width="2" />
  <line x1="110" y1="200" x2="110" y2="230" stroke="#404040" stroke-width="2" />

  <!-- Turntables -->
  <circle cx="80" cy="240" r="10" fill="#808080" />
  <circle cx="120" cy="240" r="10" fill="#808080" />
  <line x1="80" y1="250" x2="80" y2="270" stroke="#808080" stroke-width="2" />
  <line x1="120" y1="250" x2="120" y2="270" stroke="#808080" stroke-width="2" />
  <path d="M 90 245 L 100 255 Q 110 265 120 265 L 110 275 Q 100 285 90 285 L 90 245 Z" fill="#808080" />
  <path d="M 130 245 L 140 255 Q 150 265 160 265 L 150 275 Q 140 285 130 285 L 130 245 Z" fill="#808080" />

  <!-- Records -->
  <circle cx="80" cy="260" r="10" fill="#66CCCC" />
  <circle cx="120" cy="260" r="10" fill="#A1C9F2" />
  <line x1="80" y1="270" x2="80" y2="290" stroke="#808080" stroke-width="2" />
  <line x1="120" y1="270" x2="120" y2="290" stroke="#808080" stroke-width="2" />

  <!-- Tone Arm -->
  <line x1="120" y1="285" x2="140" y2="290" stroke="#808080" stroke-width="2" />
  <line x1="140" y1="290" x2="140" y2="280" stroke="#808080" stroke-width="2" />
  <circle cx="140" cy="285" r="5" fill="#808080" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image clearly depicts a penguin DJ on an iceberg, with the northern lights suggested by the flowing lines in the background.

    The composition effectively adheres to the prompt with a clear focus on the penguin.

    In contrast, Player 2's image is more abstract and less recognizable, making it difficult to discern the elements specified in the prompt.

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

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

Player 1
1
Player 2
2
Circles

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

Player 1
8
Player 2
7
Ellipses

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

Player 1
2
Player 2
1
Lines

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

Player 1
1
Player 2
8
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
7
Player 2
6
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
6
Player 2
3
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
9
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
11

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
25
Player 2
38
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
6
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