Back

SVG Drawing Match #44

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin DJ spinning glowing neon records at an ice club under aurora lights"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradients for Aurora -->
    <linearGradient id="auroraGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#00c6ff"/>
      <stop offset="50%" stop-color="#0072ff"/>
      <stop offset="100%" stop-color="#2c3e50"/>
    </linearGradient>
    <!-- Gradient for Ice Floor -->
    <radialGradient id="iceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0f7fa"/>
      <stop offset="100%" stop-color="#81d4fa"/>
    </radialGradient>
    <!-- Glow Effect -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <!-- Neon Records Gradient -->
    <radialGradient id="recordGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6ec7"/>
      <stop offset="100%" stop-color="#b33771"/>
    </radialGradient>
  </defs>
  <!-- Aurora Background -->
  <rect width="300" height="300" fill="url(#auroraGradient)"/>
  <!-- Ice Floor -->
  <rect y="250" width="300" height="50" fill="url(#iceGradient)" />
  <!-- Club Lights -->
  <g>
    <line x1="50" y1="100" x2="250" y2="200" stroke="#ffeb3b" stroke-width="2" stroke-dasharray="5,5" opacity="0.5"/>
    <line x1="250" y1="100" x2="50" y2="200" stroke="#ffeb3b" stroke-width="2" stroke-dasharray="5,5" opacity="0.5"/>
    <circle cx="150" cy="150" r="80" stroke="#ff5722" stroke-width="4" fill="none" opacity="0.3"/>
  </g>
  <!-- DJ Booth -->
  <g transform="translate(100, 180)">
    <rect width="100" height="40" rx="10" ry="10" fill="#424242" stroke="#000" stroke-width="2"/>
    <circle cx="25" cy="20" r="8" fill="#ff6f61" filter="url(#glow)"/>
    <circle cx="75" cy="20" r="8" fill="#1de9b6" filter="url(#glow)"/>
    <rect x="45" y="10" width="10" height="20" fill="#fff"/>
  </g>
  <!-- Penguin DJ -->
  <g transform="translate(150, 170)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="20" ry="30" fill="#000" />
    <ellipse cx="0" cy="0" rx="15" ry="25" fill="#fff" />
    <!-- Wings -->
    <path d="M-20,0 Q-30,-10 -20,-20" fill="#000"/>
    <path d="M20,0 Q30,-10 20,-20" fill="#000"/>
    <!-- Feet -->
    <polygon points="-5,30 0,35 5,30" fill="#ffeb3b"/>
    <!-- Beak -->
    <polygon points="0,-5 5,0 0,5" fill="#ff6f61"/>
    <!-- Eyes -->
    <circle cx="-6, -10" cy="-10" r="3" fill="#fff"/>
    <circle cx="6, -10" cy="-10" r="3" fill="#fff"/>
    <circle cx="-6, -10" cy="-10" r="1" fill="#000"/>
    <circle cx="6, -10" cy="-10" r="1" fill="#000"/>
    <!-- Headphones -->
    <path d="M-10,-12 Q-15,-20 -10,-28" stroke="#fff" stroke-width="2" fill="none"/>
    <path d="M10,-12 Q15,-20 10,-28" stroke="#fff" stroke-width="2" fill="none"/>
    <circle cx="-10,-28" cy="-28" r="5" fill="#424242" stroke="#fff" stroke-width="1"/>
    <circle cx="10,-28" cy="-28" r="5" fill="#424242" stroke="#fff" stroke-width="1"/>
  </g>
  <!-- Glowing Neon Records -->
  <g transform="translate(150, 150)">
    <circle cx="-30" cy="0" r="15" fill="url(#recordGradient)" filter="url(#glow)"/>
    <circle cx="30" cy="0" r="15" fill="url(#recordGradient)" filter="url(#glow)"/>
    <line x1="-30" y1="0" x2="30" y2="0" stroke="#fff" stroke-width="2" stroke-dasharray="2,2"/>
    <line x1="0" y1="-15" x2="0" y2="15" stroke="#fff" stroke-width="2" stroke-dasharray="2,2"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="aurora" x1="0" y1="0" x2="1" y2="1">
    <stop offset="0" style="stop-color: #6a5acd"/>
    <stop offset="0.5" style="stop-color: #00ffff"/>
    <stop offset="1" style="stop-color: #ff00ff"/>
</linearGradient>
<pattern id="icePattern" patternUnits="userSpaceOnUse" width="20" height="20">
    <rect x="0" y="0" width="20" height="20" fill="#b0c4de"/>
    <rect x="5" y="5" width="10" height="10" fill="#e0ffff"/>
</pattern>
<linearGradient id="glowGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" style="stop-color: #ff69b4"/>
    <stop offset="1" style="stop-color: #1e90ff"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#icePattern)"/>
<rect x="100" y="100" width="100" height="100" fill="url(#glowGradient)"/>
<g transform="translate(100, 100)">
    <circle cx="50" cy="50" r="40" fill="url(#glowGradient)"/>
    <circle cx="50" cy="50" r="35" fill="white"/>
    <circle cx="50" cy="50" r="30" fill="url(#glowGradient)"/>
    <circle cx="50" cy="50" r="25" fill="white"/>
    <circle cx="50" cy="50" r="20" fill="url(#glowGradient)"/>
</g>
<g transform="translate(150, 150)">
    <path d="M 0 0 C 50 50, 100 50, 150 0" stroke="white" stroke-width="5" fill="none"/>
    <path d="M 150 0 C 200 -50, 250 0, 300 50" stroke="white" stroke-width="5" fill="none"/>
</g>
<g transform="translate(200, 150)">
    <rect x="-20" y="-20" width="40" height="40" fill="black"/>
    <rect x="-15" y="-15" width="30" height="30" fill="url(#glowGradient)"/>
</g>
<g transform="translate(100, 150)">
    <rect x="-20" y="-20" width="40" height="40" fill="black"/>
    <rect x="-15" y="-15" width="30" height="30" fill="url(#glowGradient)"/>
</g>
<g transform="translate(125, 100)">
    <path d="M 0 0 C 50 50, 100 50, 150 0" stroke="white" stroke-width="5" fill="none"/>
    <path d="M 150 0 C 200 -50, 250 0, 300 50" stroke="white" stroke-width="5" fill="none"/>
</g>
<g transform="translate(100, 100)">
    <rect x="0" y="0" width="50" height="100" fill="black"/>
    <rect x="5" y="5" width="40" height="90" fill="white"/>
    <rect x="10" y="10" width="30" height="80" fill="black"/>
    <rect x="15" y="15" width="20" height="70" fill="url(#glowGradient)"/>
</g>
<g transform="translate(50, 50)">
    <circle cx="50" cy="50" r="40" fill="white"/>
    <circle cx="50" cy="50" r="35" fill="black"/>
    <circle cx="50" cy="50" r="30" fill="white"/>
    <circle cx="50" cy="50" r="25" fill="black"/>
    <circle cx="50" cy="50" r="20" fill="url(#glowGradient)"/>
</g>
<g transform="translate(250, 50)">
    <circle cx="50" cy="50" r="40" fill="white"/>
    <circle cx="50" cy="50" r="35" fill="black"/>
    <circle cx="50" cy="50" r="30" fill="white"/>
    <circle cx="50" cy="50" r="25" fill="black"/>
    <circle cx="50" cy="50" r="20" fill="url(#glowGradient)"/>
</g>
<g transform="translate(150, 50)">
    <rect x="0" y="0" width="50" height="100" fill="black"/>
    <rect x="5" y="5" width="40" height="90" fill="white"/>
    <rect x="10" y="10" width="30" height="80" fill="black"/>
    <rect x="15" y="15" width="20" height="70" fill="url(#glowGradient)"/>
</g>
<g transform="translate(150, 250)">
    <rect x="0" y="0" width="100" height="50" fill="url(#aurora)"/>
</g>
</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 submission effectively captures the concept of a penguin DJ with a clear depiction of the penguin, DJ setup, and neon elements, set against a background resembling an ice club.

    The use of colors and composition aligns well with the prompt, making it visually appealing and coherent.

    Player 2's image, while creative and colorful, lacks clear elements that connect to the theme of a penguin DJ in an ice club environment.

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

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

Player 1
4
Player 2
17
Circles

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

Player 1
11
Player 2
15
Ellipses

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

Player 1
2
Player 2
Lines

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

Player 1
4
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
4
Player 2
4
Groups

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

Player 1
4
Player 2
10

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
4

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

Complexity Metrics

Path Commands

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

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