Back

SVG Drawing Match #681

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin DJ spinning vinyl records on an iceberg dance floor"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#1e88e5" />
      <stop offset="100%" stop-color="#90caf9" />
    </linearGradient>
    <radialGradient id="iceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#e0f7fa" />
      <stop offset="100%" stop-color="#b2ebf2" />
    </radialGradient>
    <pattern id="snowPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="white" opacity="0.5" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M50 200 C 50 150, 150 150, 250 200 Z" fill="url(#iceGradient)" stroke="#a7d6e3" stroke-width="3" />
  <rect x="0" y="200" width="300" height="100" fill="url(#snowPattern)" />
  <path d="M100 180 C 100 160, 120 140, 140 160 L 160 140 C 180 120, 200 140, 200 160 Z" fill="black" />
  <circle cx="150" cy="150" r="10" fill="white" />
  <circle cx="140" cy="160" r="5" fill="black" />
  <circle cx="160" cy="160" r="5" fill="black" />
  <ellipse cx="150" cy="175" rx="10" ry="5" fill="orange" />
  <path d="M80 170 C 70 150, 120 120, 130 140 L 170 100 C 180 80, 230 110, 240 130 Z" fill="#4caf50" transform="translate(10, -10)" />
  <circle cx="140" cy="100" r="20" fill="black" stroke="white" stroke-width="2" />
  <circle cx="200" cy="90" r="20" fill="black" stroke="white" stroke-width="2" />
  <path d="M145 165 L 145 190 L 155 190 L 155 165 Z" fill="white" />
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Background radial gradient -->
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#003366"/>
    </radialGradient>
    <!-- Ice gradient for the dance floor -->
    <linearGradient id="iceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#a2d9ff"/>
      <stop offset="100%" stop-color="#ffffff"/>
    </linearGradient>
    <!-- Vinyl record gradient -->
    <radialGradient id="recordGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#222"/>
      <stop offset="100%" stop-color="#666"/>
    </radialGradient>
    <!-- Pattern for LED lights -->
    <pattern id="ledPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="2" height="2" fill="#ff0066" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)" />

  <!-- Iceberg dance floor -->
  <g id="iceberg">
    <ellipse cx="150" cy="250" rx="110" ry="40" fill="url(#iceGradient)" stroke="#cceeff" stroke-width="2"/>
    <!-- LED light decorations on dance floor -->
    <rect x="50" y="245" width="200" height="10" fill="url(#ledPattern)" opacity="0.7"/>
  </g>

  <!-- DJ penguin -->
  <g id="penguin" transform="translate(130,140)">
    <!-- Body -->
    <ellipse cx="20" cy="30" rx="20" ry="30" fill="#000" />
    <!-- Belly -->
    <ellipse cx="20" cy="35" rx="12" ry="20" fill="#fff" />
    <!-- Head -->
    <circle cx="20" cy="10" r="10" fill="#000" />
    <!-- Beak -->
    <polygon points="24,13 32,16 24,19" fill="#ffcc00" />
    <!-- Eyes -->
    <circle cx="17" cy="8" r="1.5" fill="#fff" />
    <circle cx="23" cy="8" r="1.5" fill="#fff" />
    <!-- DJ Headphones -->
    <path d="M10,5 a10,10 0 0,1 20,0" fill="none" stroke="#999" stroke-width="2"/>
    <circle cx="10" cy="5" r="4" fill="#999"/>
    <circle cx="30" cy="5" r="4" fill="#999"/>
    <!-- Arms -->
    <path d="M8,40 q5,-10 12,-5" stroke="#000" stroke-width="3" fill="none"/>
    <path d="M32,40 q-5,-10 -12,-5" stroke="#000" stroke-width="3" fill="none"/>
  </g>

  <!-- Vinyl records on turntables -->
  <g id="turntables">
    <!-- Left Turntable -->
    <g transform="translate(30,200)">
      <circle cx="0" cy="0" r="20" fill="#333" />
      <circle cx="0" cy="0" r="14" fill="url(#recordGradient)" />
      <circle cx="0" cy="0" r="4" fill="#222" />
      <!-- Turntable arm -->
      <rect x="-1" y="-25" width="2" height="10" fill="#999"/>
    </g>
    <!-- Right Turntable -->
    <g transform="translate(240,200)">
      <circle cx="0" cy="0" r="20" fill="#333" />
      <circle cx="0" cy="0" r="14" fill="url(#recordGradient)" />
      <circle cx="0" cy="0" r="4" fill="#222" />
      <!-- Turntable arm -->
      <rect x="-1" y="-25" width="2" height="10" fill="#999"/>
    </g>
  </g>

  <!-- Sound waves emanating -->
  <g id="soundWaves">
    <path d="M150,250 c10,-20 30,-20 40,0" fill="none" stroke="#ffcc00" stroke-width="2" opacity="0.6"/>
    <path d="M150,250 c-10,-25 -30,-25 -40,0" fill="none" stroke="#ffcc00" stroke-width="2" opacity="0.6"/>
    <path d="M150,250 c15,-30 45,-30 60,0" fill="none" stroke="#ff0066" stroke-width="1.5" opacity="0.5"/>
    <path d="M150,250 c-15,-30 -45,-30 -60,0" fill="none" stroke="#ff0066" stroke-width="1.5" opacity="0.5"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image more clearly depicts the concept of a penguin DJ with headphones, a vinyl setup, and an iceberg dance floor, adhering closely to the prompt.

    The composition is well-balanced and visually appealing, with distinct elements that convey the theme effectively, compared to Player 1's more abstract and less recognizable design.

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

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

Player 1
2
Player 2
5
Circles

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

Player 1
6
Player 2
11
Ellipses

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

Player 1
1
Player 2
3
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
1
Paths

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

Player 1
4
Player 2
7
Groups

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

Player 1
Player 2
6

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
13

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

Complexity Metrics

Path Commands

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

Player 1
18
Player 2
14
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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