Back

SVG Drawing Match #2703

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragonfly wearing a vintage aviator helmet mid-flight over a glowing pond."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the glowing pond -->
    <radialGradient id="pondGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8ED6FF" />
      <stop offset="100%" stop-color="#004CB3" />
    </radialGradient>
    <!-- Gradient for the dragonfly's wings -->
    <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)" />
      <stop offset="100%" stop-color="rgba(200,200,255,0.3)" />
    </linearGradient>
    <!-- Gradient for the body -->
    <linearGradient id="bodyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#66cc66" />
      <stop offset="100%" stop-color="#339933" />
    </linearGradient>
    <!-- Gradient for the vintage aviator helmet -->
    <linearGradient id="helmetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#d4af37" />
      <stop offset="100%" stop-color="#8c6f30" />
    </linearGradient>
    <!-- Glow filter for the pond -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="8" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background: dark sky -->
  <rect width="300" height="300" fill="#1a1a2e" />

  <!-- Glowing Pond -->
  <ellipse cx="150" cy="250" rx="80" ry="25" fill="url(#pondGradient)" filter="url(#glow)"/>

  <!-- Dragonfly Body -->
  <g id="dragonfly" transform="translate(150,150) rotate(-20)">
    <!-- Body -->
    <path d="M0,0 C5,-20 5,-40 0,-60 C-5,-80 -5,-100 0,-120" stroke="url(#bodyGradient)" stroke-width="8" fill="none" stroke-linecap="round"/>
    <!-- Tail -->
    <path d="M0,0 C-10,10 -15,20 -20,30" stroke="url(#bodyGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
    
    <!-- Wing Group -->
    <g id="wings">
      <!-- Left Upper Wing -->
      <path d="M-2,-50 C-60,-70 -90,-10 -60,0" fill="url(#wingGradient)" stroke="white" stroke-width="0.5" opacity="0.8"/>
      <!-- Right Upper Wing -->
      <path d="M2,-50 C60,-70 90,-10 60,0" fill="url(#wingGradient)" stroke="white" stroke-width="0.5" opacity="0.8"/>
      <!-- Left Lower Wing -->
      <path d="M-2,-10 C-45,-5 -60,20 -40,30" fill="url(#wingGradient)" stroke="white" stroke-width="0.5" opacity="0.7"/>
      <!-- Right Lower Wing -->
      <path d="M2,-10 C45,-5 60,20 40,30" fill="url(#wingGradient)" stroke="white" stroke-width="0.5" opacity="0.7"/>
    </g>
    
    <!-- Head and Vintage Aviator Helmet -->
    <g id="helmet">
      <!-- Dragonfly head -->
      <circle cx="0" cy="-130" r="6" fill="#66cc66" stroke="#1a1a2e" stroke-width="1"/>
      <!-- Helmet outline -->
      <path d="M-12,-135 
               Q0,-150 12,-135 
               L10,-130 
               Q0,-142  -10,-130 Z" fill="url(#helmetGradient)" stroke="#5c4d2e" stroke-width="1"/>
      <!-- Helmet details (glass cover) -->
      <path d="M-10,-135 Q0,-140 10,-135" stroke="rgba(255,255,255,0.6)" stroke-width="1.5" fill="none"/>
    </g>
  </g>
  
  <!-- Artistic lines to suggest movement and magical light trails -->
  <g stroke="rgba(255,255,255,0.3)" stroke-width="1" fill="none">
    <path d="M160,100 C170,90 180,110 190,100"/>
    <path d="M140,80 C130,70 120,85 110,80"/>
    <path d="M170,120 C180,115 190,130 200,125"/>
  </g>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="pondGlow" cx="50%" cy="60%" r="50%">
      <stop offset="0%" stop-color="#88f" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#001f3f" stop-opacity="1"/>
    </radialGradient>
    <linearGradient id="wingGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#aaffff" stop-opacity="0.6"/>
      <stop offset="50%" stop-color="#88ddff" stop-opacity="0.4"/>
      <stop offset="100%" stop-color="#aaffff" stop-opacity="0.6"/>
    </linearGradient>
    <linearGradient id="bodyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffcc00"/>
      <stop offset="100%" stop-color="#ff8800"/>
    </linearGradient>
    <linearGradient id="helmetGrad" x1="0%" y1="0%" x2="1" y2="1">
      <stop offset="0%" stop-color="#664400"/>
      <stop offset="1" stop-color="#332200"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="waterRipples" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0,10 Q5,0 10,10 T20,10" fill="none" stroke="#44aaff" stroke-width="0.5" opacity="0.3"/>
    </pattern>
  </defs>

  <!-- Glowing pond -->
  <ellipse cx="150" cy="220" rx="120" ry="40" fill="url(#pondGlow)" filter="url(#glow)"/>
  <ellipse cx="150" cy="220" rx="120" ry="40" fill="url(#waterRipples)"/>

  <!-- Dragonfly body -->
  <g filter="url(#glow)">
    <path d="M150,140 c0,-30 0,-60 0,-60" stroke="none" fill="url(#bodyGrad)" transform="translate(-2,0) rotate(10,150,140) scale(1.2,1)" />
    <circle cx="150" cy="140" r="5" fill="#222"/>
  </g>

  <!-- Wings -->
  <g fill="url(#wingGrad)" stroke="#88ccff" stroke-width="0.5" opacity="0.8" filter="url(#glow)">
    <path d="M150,140 q-50,-30 -80,0 q50,30 80,0" />
    <path d="M150,140 q-50,30 -80,0 q50,-30 80,0" />
    <path d="M150,140 q50,-30 80,0 q-50,30 -80,0" />
    <path d="M150,140 q50,30 80,0 q-50,-30 -80,0" />
  </g>

  <!-- Helmet -->
  <g transform="translate(140,120) rotate(-10,10,10)" filter="url(#glow)">
    <path d="M0,10 a10,10 0 0,1 20,0 v5 a10,10 0 0,1 -20,0 z" fill="url(#helmetGrad)" stroke="#000" stroke-width="0.5"/>
    <rect x="3" y="8" width="14" height="8" rx="2" ry="2" fill="#445566"/>
    <line x1="0" y1="15" x2="5" y2="20" stroke="#333" stroke-width="1"/>
    <line x1="20" y1="15" x2="15" y2="20" stroke="#333" stroke-width="1"/>
  </g>

  <!-- Sparkles on pond -->
  <g fill="#aaffff" opacity="0.7">
    <circle cx="100" cy="210" r="2"/>
    <circle cx="180" cy="225" r="1.5"/>
    <circle cx="130" cy="230" r="1"/>
    <circle cx="170" cy="200" r="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission better incorporates the idea of a dragonfly in flight with a distinct body, wings, and a visible vintage aviator helmet.

    The glowing pond is effectively depicted, adding depth and context.

    Player 2's submission, while visually clean, lacks clarity in representing the dragonfly as a whole and does not convey the same level of detail or adherence to 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
14
Player 2
17
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
1
Player 2
5
Ellipses

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

Player 1
1
Player 2
2
Lines

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

Player 1
Player 2
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
11
Player 2
7
Groups

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
15

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
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
26
Player 2
22
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
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