Back

SVG Drawing Match #1066

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Butterfly wings made of stained glass, catching sunlight through them"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunlight" x1="150" y1="0" x2="150" y2="300" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="#FFD700" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#FFA500" stop-opacity="0.6"/>
    </linearGradient>
    <pattern id="glassTexture" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="transparent"/>
      <path d="M5 0 L10 5 L5 10 L0 5 Z" fill="rgba(255,255,255,0.3)"/>
      <path d="M0 0 L10 10" stroke="rgba(255,255,255,0.2)" stroke-width="1"/>
      <path d="M10 0 L0 10" stroke="rgba(255,255,255,0.2)" stroke-width="1"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#sunlight)"/>
  <g transform="translate(50, 50)">
    <path d="M100 50 C150 0, 200 0, 250 50 C200 100, 150 100, 100 50 Z" fill="url(#glassTexture)" stroke="#000" stroke-width="2"/>
    <path d="M100 50 C50 100, 50 150, 100 200 C150 150, 200 150, 250 200 C200 250, 150 250, 100 200 Z" fill="url(#glassTexture)" stroke="#000" stroke-width="2"/>
    <path d="M100 50 L100 200 M250 50 L250 200" stroke="#000" stroke-width="2" stroke-dasharray="5,5"/>
    <circle cx="100" cy="50" r="5" fill="#FFD700"/>
    <circle cx="250" cy="50" r="5" fill="#FFD700"/>
    <circle cx="100" cy="200" r="5" fill="#FFA500"/>
    <circle cx="250" cy="200" r="5" fill="#FFA500"/>
    <path d="M175 125 C175 100, 200 100, 200 125 C200 150, 175 150, 175 125 Z" fill="rgba(255,255,255,0.5)" stroke="#000" stroke-width="1"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff7f50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff1493;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00bfff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1e90ff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad3" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#32cd32;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#adff2f;stop-opacity:1" />
    </linearGradient>
    <pattern id="glassPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect x="0" y="0" width="10" height="10" fill="url(#grad1)" />
      <circle cx="5" cy="5" r="2" fill="#ffffff" opacity="0.5" />
    </pattern>
    <radialGradient id="lightEffect" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.5" />
      <stop offset="100%" style="stop-color:#ff00ff;stop-opacity:0" />
    </radialGradient>
  </defs>
  
  <g transform="translate(150, 150)">
    <g id="wing-left">
      <path d="M-70,0 C-100,-30 -100,30 -70,0 Z" fill="url(#glassPattern)" />
      <path d="M-70,0 C-90,20 -90,-20 -70,0 Z" fill="url(#grad2)" opacity="0.7" />
    </g>
    
    <g id="wing-right" transform="scale(-1,1)">
      <path d="M-70,0 C-100,-30 -100,30 -70,0 Z" fill="url(#glassPattern)" />
      <path d="M-70,0 C-90,20 -90,-20 -70,0 Z" fill="url(#grad3)" opacity="0.7" />
    </g>
    
    <circle cx="0" cy="0" r="10" fill="#000000" />
    
    <circle cx="0" cy="0" r="70" fill="url(#lightEffect)" opacity="0.6" />
  </g>
  
  <ellipse cx="150" cy="150" rx="130" ry="70" fill="none" stroke="#ff69b4" stroke-width="2" />
  <ellipse cx="150" cy="150" rx="120" ry="60" fill="none" stroke="#48d1cc" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's submission more closely resembles butterfly wings with a stained glass effect, using a gradient background to suggest sunlight.

    The color palette and the geometric shapes evoke the sense of stained glass artistry.

    Player 2's design, while vibrant, does not clearly represent butterfly wings or stained glass, making it less aligned with 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
13
Player 2
10
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
4
Player 2
3
Ellipses

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

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

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

Player 1
7
Player 2
4
Groups

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

Player 1
1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
4

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