Back

SVG Drawing Match #326

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dragonfly wearing headphones on a neon record player"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="grad_record" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff00ff; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#800080; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="grad_glow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00ffff; stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#00008b; stop-opacity:0.2" />
    </linearGradient>
    <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>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="black"/>

  <!-- Record Player Base -->
  <circle cx="150" cy="150" r="100" fill="url(#grad_record)" filter="url(#glow)"/>
  <circle cx="150" cy="150" r="80" fill="url(#grad_glow)" opacity="0.6"/>
  
  <!-- Record Grooves -->
  <g stroke="#ffffff" stroke-width="0.5" opacity="0.3">
    <circle cx="150" cy="150" r="70" />
    <circle cx="150" cy="150" r="60" />
    <circle cx="150" cy="150" r="50" />
    <circle cx="150" cy="150" r="40" />
    <circle cx="150" cy="150" r="30" />
    <circle cx="150" cy="150" r="20" />
  </g>
  
  <!-- Dragonfly Body -->
  <g transform="translate(150, 100)" filter="url(#glow)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="10" ry="40" fill="#00ffea"/>
    <!-- Wings -->
    <path d="M0,-40 C-30,-80 -30,-80 0,-40" fill="none" stroke="#00ffff" stroke-width="4" />
    <path d="M0,-40 C30,-80 30,-80 0,-40" fill="none" stroke="#00ffff" stroke-width="4" />
    <path d="M0,40 C-30,80 -30,80 0,40" fill="none" stroke="#00ffff" stroke-width="4" />
    <path d="M0,40 C30,80 30,80 0,40" fill="none" stroke="#00ffff" stroke-width="4" />
  </g>
  
  <!-- Headphones -->
  <g transform="translate(150, 80)" filter="url(#glow)">
    <!-- Headband -->
    <path d="M-20,-20 Q0,-40 20,-20" stroke="#ff1493" stroke-width="4" fill="none"/>
    <!-- Left earcup -->
    <circle cx="-25,-20" cy="-20" r="10" fill="#ff69b4" stroke="#ff1493" stroke-width="2"/>
    <!-- Right earcup -->
    <circle cx="25,-20" cy="-20" r="10" fill="#ff69b4" stroke="#ff1493" stroke-width="2"/>
  </g>
  
  <!-- Neon Light Effects -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="url(#grad_glow)" stroke-width="10" filter="url(#glow)" opacity="0.5"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with animated circles -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#1a1a1a" />
      <stop offset="1" stop-color="#2d2d2d" />
    </linearGradient>
  </defs>

  <!-- Record Player Base -->
  <g transform="translate(100,100)">
    <!-- Turntable -->
    <circle r="80" fill="url(#turntableGrad)" stroke="#ffffff" stroke-width="2" />
    <defs>
      <linearGradient id="turntableGrad" x1="0" y1="0" x2="160" y2="160">
        <stop offset="0" stop-color="#4a4a4a" />
        <stop offset="1" stop-color="#6a6a6a" />
      </linearGradient>
    </defs>
    <!-- Center Hole -->
    <circle r="5" fill="#ffffff" />
  </g>

  <!-- Dragonfly -->
  <g transform="translate(150,120)">
    <!-- Dragonfly Body -->
    <path d="M0,0 Q50,-20 100,0 Q150,-20 200,0 Q250,-20 300,0 L300,100 Q250,120 200,100 Q150,80 100,100 Q50,120 0,100 L0,0" fill="url(#dragonflyGrad)" />
    <defs>
      <linearGradient id="dragonflyGrad" x1="0" y1="0" x2="300" y2="100">
        <stop offset="0" stop-color="#00ff00" />
        <stop offset="1" stop-color="#00cc00" />
      </linearGradient>
    </defs>
    <!-- Dragonfly Wings -->
    <path d="M50,50 Q60,40 70,50 Q80,60 70,70 L50,50" fill="url(#wingPattern)" />
    <path d="M250,50 Q240,40 230,50 Q220,60 230,70 L250,50" fill="url(#wingPattern)" />
    <defs>
      <pattern id="wingPattern" width="20" height="20" patternUnits="userSpaceOnUse">
        <circle cx="10" cy="10" r="8" fill="#88ff88" opacity="0.5" />
      </pattern>
    </defs>
    <!-- Dragonfly Eyes -->
    <circle cx="100" cy="80" r="15" fill="#ff0000" />
    <circle cx="100" cy="80" r="10" fill="url(#eyeGrad)" />
    <defs>
      <radialGradient id="eyeGrad" cx="100" cy="80" r="10">
        <stop offset="0" stop-color="#ffffff" />
        <stop offset="1" stop-color="#ff0000" />
      </radialGradient>
    </defs>
  </g>

  <!-- Headphones -->
  <g transform="translate(140,100)">
    <!-- Headband -->
    <path d="M0,0 Q50,-20 100,0 Q150,-20 200,0" fill="#333333" />
    <!-- Earcups -->
    <circle cx="50" cy="20" r="20" fill="#444444" />
    <circle cx="150" cy="20" r="20" fill="#444444" />
    <!-- Earcup Details -->
    <path d="M50,20 Q55,15 60,20 M60,20 Q65,25 60,30" fill="#ffffff" />
    <path d="M150,20 Q155,25 160,20 M160,20 Q155,15 150,20" fill="#ffffff" />
  </g>

  <!-- Neon Effects -->
  <g opacity="0.7">
    <circle cx="150" cy="120" r="90" fill="none" stroke="#0ff" stroke-width="2" filter="url(#glow)" />
    <circle cx="150" cy="80" r="10" fill="#0ff" filter="url(#glow)" />
    <circle cx="150" cy="160" r="10" fill="#0ff" filter="url(#glow)" />
    <defs>
      <filter id="glow">
        <feGaussianBlur stdDeviation="4" result="glow" />
        <feMerge>
          <feMergeNode in="glow" />
          <feMergeNode in="SourceGraphic" />
        </feMerge>
      </filter>
    </defs>
  </g>

  <!-- Musical Notes -->
  <path d="M200,100 Q220,90 200,80 Q180,90 200,100" fill="#ffffff" />
  <path d="M250,100 Q270,110 250,120 Q230,110 250,100" fill="#ffffff" />
  <path d="M300,100 Q310,90 300,80 Q290,90 300,100" fill="#ffffff" />
</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 clearly represents a dragonfly with headphones on a neon record player, utilizing vibrant colors and a clean, symmetrical design.

    The use of neon colors effectively captures the prompt's essence, and the image is visually appealing with a strong compositional focus.

    Player 2's submission, while abstract, lacks clarity in depicting the dragonfly and record player concept, making Player 1's entry more successful in meeting the prompt's requirements.

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
20
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
11
Player 2
10
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

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
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
10
Player 2
37
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
6
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