Back

SVG Drawing Match #7

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragonfly with stained glass wings over a moonlit pond"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="150" y1="0" x2="150" y2="300">
      <stop offset="0%" stop-color="#0b0d2e"/>
      <stop offset="100%" stop-color="#1a1f5e"/>
    </linearGradient>
    <radialGradient id="moon" cx="80" cy="70" r="35">
      <stop offset="90%" stop-color="#f8f3e6" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#1a1f5e" stop-opacity="0"/>
    </radialGradient>
    <filter id="glow">
      <feDropShadow dx="0" dy="0" stdDeviation="3" flood-color="#7df9ff" flood-opacity="0.6"/>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>
  <circle cx="80" cy="70" r="15" fill="#f8f3e6" filter="url(#glow)"/>
  <circle cx="80" cy="70" r="30" fill="url(#moon)"/>

  <!-- Water -->
  <path d="M0 220Q150 200 300 220L300 300 0 300Z" fill="#182747"/>
  <path d="M0 220Q150 240 300 220" stroke="#7df9ff" stroke-width="0.5" stroke-opacity="0.3" fill="none"/>

  <!-- Dragonfly Body -->
  <path d="M150 160Q145 90 150 60L150 240Q155 210 150 160Z" fill="url(#body)"/>
  <linearGradient id="body">
    <stop offset="0%" stop-color="#2d4263"/>
    <stop offset="100%" stop-color="#3a5b7d"/>
  </linearGradient>

  <!-- Stained Glass Wings -->
  <g transform="translate(150 140)">
    <clipPath id="wingShape">
      <path d="M-60-40Q0-100 60-40 40 60-40 60-60 0-60-40"/>
    </clipPath>
    
    <g clip-path="url(#wingShape)">
      <!-- Leading wing patterns -->
      <path d="M-60-40Q0-80 60-40L40 60Q0 20-40 60Z" fill="#6c3082" fill-opacity="0.8"/>
      <path d="M-40-20Q0-50 40-20L20 40Q0 10-20 40Z" fill="#1f6f8c" fill-opacity="0.7"/>
      <path d="M-30 0Q0-20 30 0L15 20Q0 10-15 20Z" fill="#e94584" fill-opacity="0.6"/>
    </g>
    
    <!-- Wing outlines -->
    <path d="M-60-40Q0-100 60-40 40 60-40 60-60 0-60-40" 
          fill="none" stroke="#000" stroke-width="0.8"/>
  </g>

  <!-- Reflected Light -->
  <circle cx="220" cy="250" r="40" fill="#7df9ff" fill-opacity="0.08"/>
  <path d="M120 240L180 260" stroke="#7df9ff" stroke-opacity="0.2" stroke-width="2" stroke-linecap="round"/>

  <!-- Water Ripples -->
  <g transform="translate(150 240)" opacity="0.4">
    <ellipse cx="0" cy="0" rx="80" ry="15" fill="#30475e"/>
    <ellipse cx="40" cy="20" rx="60" ry="10" fill="#30475e"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Moon glow effect -->
  <defs>
    <radialGradient id="moonGlow" cx="150" cy="100" r="100" fx="150" fy="100">
      <stop offset="0" stop-color="white" stop-opacity="0.8"/>
      <stop offset="1" stop-color="white" stop-opacity="0"/>
    </radialGradient>

    <linearGradient id="dragonflyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#4B0082"/>
      <stop offset="1" stop-color="#8A2BE2"/>
    </linearGradient>

    <pattern id="stainedGlass" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <path d="M0 0 L50 25 L0 50 L-25 25 L0 0" fill="#2196F3" opacity="0.8"/>
      <path d="50 0 L100 25 L50 50 L25 25 L50 0" fill="#33CC99" opacity="0.8"/>
      <path d="0 50 L25 75 L50 50 L25 25 L0 50" fill="#FFB300" opacity="0.8"/>
    </pattern>

    <clipPath id="wingClip">
      <rect x="50" y="0" width="200" height="150"/>
    </clipPath>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1A1A4F"/>

  <!-- Moon -->
  <circle cx="150" cy="100" r="80" fill="url(#moonGlow)"/>

  <!-- Dragonfly body -->
  <path d="M150 150 L170 160 Q175 165 170 170 L150 180 Q145 165 150 160 L130 160 Q135 165 130 170 L150 180" fill="url(#dragonflyGradient)"/>

  <!-- Dragonfly wings -->
  <g clip-path="url(#wingClip)">
    <rect x="0" y="0" width="300" height="300" fill="url(#stainedGlass)"/>
    <path d="M50 0 Q100 50 100 100 Q150 50 200 0 Q250 -50 250 -100 Q200 -50 150 -100" opacity="0.3" fill="white"/>
  </g>

  <!-- Water ripples -->
  <path d="M50 250 Q60 245 70 250 80 255 70 260 60 255" stroke="white" stroke-width="2" opacity="0.6"/>
  <path d="M100 250 Q110 245 120 250 130 255 120 260 110 255" stroke="white" stroke-width="2" opacity="0.6"/>
  <path d="M150 250 Q160 245 170 250 180 255 170 260 160 255" stroke="white" stroke-width="2" opacity="0.6"/>
  <path d="M200 250 Q210 245 220 250 230 255 220 260 210 255" stroke="white" stroke-width="2" opacity="0.6"/>
  <path d="M250 250 Q260 245 270 250 280 255 270 260 260 255" stroke="white" stroke-width="2" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's submission captures the essence of the prompt more effectively with a moonlit backdrop and a design suggesting stained glass wings.

    The composition is balanced and the use of colors contributes to the visual appeal.

    In contrast, Player 2's submission lacks clear depiction of the elements specified in the prompt, making it less effective in adherence and visual representation.

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
15
Player 2
14
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
3
Player 2
1

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

The number of elements with opacity attributes in the SVG.

Player 1
1
Player 2
9
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
7

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

Complexity Metrics

Path Commands

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

Player 1
32
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
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