Back

SVG Drawing Match #1092

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin DJ spinning vinyl records in a snowy landscape"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#00587a"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.8" cy="0.2" r="0.3">
      <stop offset="0%" stop-color="#ffffe0"/>
      <stop offset="100%" stop-color="#ffe0b3"/>
    </radialGradient>
    <pattern id="snowflake" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="0.5" fill="white" />
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Moon -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGradient)" />
  
  <!-- Snowflakes -->
  <g fill="url(#snowflake)" opacity="0.8">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="80" cy="80" r="1"/>
    <circle cx="120" cy="40" r="1"/>
    <circle cx="200" cy="100" r="1"/>
    <circle cx="250" cy="70" r="1"/>
    <circle cx="280" cy="150" r="1"/>
    <circle cx="220" cy="200" r="1"/>
    <circle cx="160" cy="250" r="1"/>
    <circle cx="100" cy="220" r="1"/>
  </g>
  
  <!-- Snow Ground -->
  <rect y="220" width="300" height="80" fill="#ffffff" />
  
  <!-- DJ Booth -->
  <g>
    <rect x="70" y="180" width="160" height="40" rx="5" ry="5" fill="#333333" stroke="#222222" stroke-width="2"/>
    <!-- Turntables -->
    <g>
      <circle cx="110" cy="200" r="15" fill="#000000"/>
      <circle cx="190" cy="200" r="15" fill="#000000"/>
      <circle cx="110" cy="200" r="7" fill="#ff3f3f"/>
      <circle cx="190" cy="200" r="7" fill="#ff3f3f"/>
      <!-- Vinyl Records -->
      <circle cx="110" cy="200" r="14" fill="url(#recordGradient1)" stroke="#333" stroke-width="1"/>
      <circle cx="190" cy="200" r="14" fill="url(#recordGradient2)" stroke="#333" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Record Gradients -->
  <defs>
    <radialGradient id="recordGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#555555"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <radialGradient id="recordGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#555555"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
  </defs>
  
  <!-- Penguin -->
  <g transform="translate(150,150)">
    <!-- Body -->
    <ellipse cx="0" cy="50" rx="30" ry="40" fill="#000000"/>
    <ellipse cx="0" cy="50" rx="25" ry="35" fill="#ffffff"/>
    <!-- Wings -->
    <path d="M-25,40 Q-40,50 -25,60" fill="#000000"/>
    <path d="M25,40 Q40,50 25,60" fill="#000000"/>
    <!-- Belly -->
    <ellipse cx="0" cy="50" rx="10" ry="20" fill="#ffffff"/>
    <!-- Eyes -->
    <circle cx="-7" cy="35" r="3" fill="#ffffff"/>
    <circle cx="7" cy="35" r="3" fill="#ffffff"/>
    <circle cx="-7" cy="35" r="1.5" fill="#000000"/>
    <circle cx="7" cy="35" r="1.5" fill="#000000"/>
    <!-- Beak -->
    <polygon points="0,38 5,42 0,46" fill="#ffcc00"/>
    <!-- Feet -->
    <path d="M-15,80 Q-10,85 -15,90" fill="#ff9933"/>
    <path d="M15,80 Q10,85 15,90" fill="#ff9933"/>
    <!-- Headphones -->
    <path d="M-15,30 A15,15 0 0,1 -35,30" stroke="#ffcc00" stroke-width="3" fill="none"/>
    <path d="M15,30 A15,15 0 0,0 35,30" stroke="#ffcc00" stroke-width="3" fill="none"/>
    <circle cx="-35" cy="30" r="5" fill="#ffcc00" />
    <circle cx="35" cy="30" r="5" fill="#ffcc00" />
  </g>
  
  <!-- DJ Lights -->
  <g>
    <circle cx="150" cy="50" r="5" fill="#ff4081">
      <animate attributeName="r" from="5" to="10" dur="1s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="1s" repeatCount="indefinite" />
    </circle>
    <circle cx="180" cy="80" r="3" fill="#40c4ff">
      <animate attributeName="r" from="3" to="7" dur="0.8s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="0.8s" repeatCount="indefinite" />
    </circle>
    <circle cx="120" cy="90" r="4" fill="#66bb6a">
      <animate attributeName="r" from="4" to="8" dur="1.2s" repeatCount="indefinite" />
      <animate attributeName="opacity" from="1" to="0" dur="1.2s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient Definitions -->
  <defs>
    <linearGradient id="recordGrad" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop stop-color="#BLE4FA" offset="0%"/>
      <stop stop-color="#602873" offset="100%"/>
    </linearGradient>
    <linearGradient id="snowGrad" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop stop-color="#EFEFEF" offset="0%"/>
      <stop stop-color="#CCC" offset="50%"/>
      <stop stop-color="#999" offset="100%"/>
    </linearGradient>
  </defs>

  <!-- Snowy Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#snowGrad)"/>
  <path d="M150 0L250 50 150 100 50 50Z" fill="#FFF" opacity="0.5"/>
  <path d="M150 100L250 150 150 200 50 150Z" fill="#FFF" opacity="0.5"/>
  <path d="M150 200L250 250 150 300 50 250Z" fill="#FFF" opacity="0.5"/>

  <!-- DJ Booth -->
  <rect x="120" y="200" width="60" height="20" fill="#78909C"/>
  <rect x="120" y="220" width="60" height="20" fill="#E9D700"/>
  <rect x="130" y="240" width="40" height="30" fill="#transparent" stroke="#78909C" stroke-width="2"/>
  <path d="M140 250L160 280 140 260Z" fill="#E9D700" stroke="#78909C" stroke-width="2"/>

  <!-- Penguin DJ -->
  <ellipse cx="150" cy="175" rx="30" ry="50" fill="#F2F5A9"/>
  <ellipse cx="150" cy="145" rx="20" ry="30" fill="#FFF"/>
  <path d="M150 160L155 180 145 180Z" fill="#FFF"/>
  <path d="M150 190L155 205 145 205Z" fill="#FFF"/>
  <path d="M140 175L155 175Z" fill="#FFF" stroke="#78909C" stroke-width="2"/>

  <!-- Vinyl Records -->
  <circle cx="150" cy="50" r="40" fill="url(#recordGrad)"/>
  <circle cx="100" cy="100" r="40" fill="url(#recordGrad)"/>
  <circle cx="200" cy="100" r="40" fill="url(#recordGrad)"/>
  <path d="M150 30L150 70Z" fill="#transparent" stroke="#78909C" stroke-width="2"/>
  <path d="M100 80L100 120Z" fill="#transparent" stroke="#78909C" stroke-width="2"/>
  <path d="M200 80L200 120Z" fill="#transparent" stroke="#78909C" stroke-width="2"/>
  <path d="M100 100L125 120 150 100Z" fill="#FFF" stroke="#78909C" stroke-width="2"/>
  <path d="M200 100L175 120 150 100Z" fill="#FFF" stroke="#78909C" stroke-width="2"/>
</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 more clearly represents the concept of a penguin DJ in a snowy landscape.

    The penguin is visibly interacting with a DJ setup against a snowy backdrop, aligning with the prompt.

    Player 2's image is more abstract and doesn't clearly convey the penguin DJ theme or snowy setting as 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
39
Player 2
21
Rectangles

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

Player 1
3
Player 2
4
Circles

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

Player 1
26
Player 2
3
Ellipses

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

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

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

Player 1
6
Player 2
12
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
8

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
6
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
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
12
Player 2
36
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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