Back

SVG Drawing Match #563

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A moonlit cat with butterfly wings, perched on a floating teacup"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="moonlight" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#87CEFA"/>
      <stop offset="1" stop-color="#000080"/>
    </linearGradient>
    <pattern id="butterflyWings" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect x="0" y="0" width="100" height="100" fill="#FFD700"/>
      <path d="M50 0 L100 50 L50 100 L0 50 Z" fill="#FF69B4" stroke="#FFD700" stroke-width="2"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#moonlight)"/>
  <circle cx="150" cy="150" r="40" fill="#8B4513"/>
  <ellipse cx="150" cy="130" rx="25" ry="15" fill="#FFFFFF"/>
  <path d="M125 125 L125 145 Q140 155 150 150 Q160 145 175 145 L175 125 Z" fill="#FFFFFF"/>
  <path d="M125 125 L125 145 Q140 155 150 150 Q160 145 175 145 L175 125 Z" fill="url(#butterflyWings)" transform="rotate(30 150 150)"/>
  <path d="M125 125 L125 145 Q140 155 150 150 Q160 145 175 145 L175 125 Z" fill="url(#butterflyWings)" transform="rotate(-30 150 150)"/>
  <circle cx="150" cy="170" r="10" fill="#FFFFFF"/>
  <path d="M120 190 L150 170 L180 190" fill="none" stroke="#FFFFFF" stroke-width="2"/>
  <circle cx="150" cy="220" r="20" fill="#FFFFFF"/>
  <circle cx="150" cy="220" r="15" fill="#8B4513"/>
  <circle cx="135" cy="205" r="10" fill="#FFFFFF"/>
  <circle cx="165" cy="205" r="10" fill="#FFFFFF"/>
  <path d="M150 240 Q120 260 150 280 Q180 260 150 240" fill="none" stroke="#FFFFFF" stroke-width="2"/>
  <path d="M150 220 L150 240" fill="none" stroke="#FFFFFF" stroke-width="2"/>
  <ellipse cx="150" cy="240" rx="40" ry="10" fill="#FFD700"/>
  <ellipse cx="150" cy="240" rx="35" ry="8" fill="#8B4513"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and stars -->
  <defs>
    <linearGradient id="nightSky" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#1a3e6d;stop-opacity:1" />
      <stop offset="1" style="stop-color:#4a7cba;stop-opacity:1" />
    </linearGradient>
    <path id="star" d="M150 0l24 70L300 70l-50 150-100-40-100 40-50-150L0 70l50-70z"/>
    <linearGradient id="wingGradient" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" style="stop-color:#ff99cc;stop-opacity:1" />
      <stop offset="1" style="stop-color:#b300b3;stop-opacity:1" />
    </linearGradient>
    <pattern id="steamPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" style="fill:none;stroke:white;stroke-width:0.5"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#nightSky)"/>
  <!-- Stars -->
  <use href="#star" x="50" y="50" style="fill:none;stroke:white;stroke-width:1"/>
  <use href="#star" x="200" y="100" style="fill:none;stroke:white;stroke-width:1"/>
  <use href="#star" x="150" y="200" style="fill:none;stroke:white;stroke-width:1"/>

  <!-- Floating teacup -->
  <g transform="translate(150,150)">
    <!-- Teacup body -->
    <path d="M0,0 L60,0 Q90,0 90,30 L90,60 Q90,90 60,90 L0,90 Q0,90 0,60 L0,30 Z" 
          style="fill:url(#wingGradient);stroke:#666;stroke-width:2"/>
    <!-- Teacup handle -->
    <path d="M60,30 Q75,15 90,30" style="fill:none;stroke:#666;stroke-width:2"/>
    <!-- Steam -->
    <path d="M60,20 Q60,10 80,10" style="fill:none;stroke:url(#steamPattern);stroke-width:4"/>
  </g>

  <!-- Cat with wings -->
  <g transform="translate(150,150)">
    <!-- Cat body -->
    <path d="M0,20 Q-30,40 0,60 Q30,40 0,20" 
          style="fill:linear-gradient(45deg, #666, #999);stroke:#444;stroke-width:2"/>
    <!-- Cat head -->
    <path d="M-20,40 Q-40,20 -20,0 Q0,20 0,40 Q-20,60 -40,40 Q-20,20 0,0" 
          style="fill:linear-gradient(45deg, #666, #999);stroke:#444;stroke-width:2"/>
    <!-- Eyes -->
    <circle cx="-15" cy="30" r="5" style="fill:#ff0;stroke:#fff;stroke-width:2"/>
    <circle cx="15" cy="30" r="5" style="fill:#ff0;stroke:#fff;stroke-width:2"/>
    <!-- Whiskers -->
    <path d="M-40,35 L-20,40" style="stroke:white;stroke-width:1"/>
    <path d="M-40,25 L-20,20" style="stroke:white;stroke-width:1"/>
    <!-- Butterfly wings -->
    <path d="M-60,0 Q-30,-20 0,-40 Q30,-20 60,0 Q40,20 20,40 Q0,30 -20,20 Z" 
          style="fill:url(#wingGradient);stroke=#4a2a6a;stroke-width:2"/>
    <path d="M-60,0 Q-30,20 0,40 Q30,20 60,0 Q40,-20 20,-40 Q0,-30 -20,-20 Z" 
          style="fill:url(#wingGradient);stroke=#4a2a6a;stroke-width:2"/>
  </g>

  <!-- Floating elements -->
  <circle cx="100" cy="100" r="10" style="fill:none;stroke:#4a7cba;stroke-width:2"/>
  <path d="M200,200 Q250,150 300,200" style="stroke:#4a7cba;stroke-width:2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's submission adheres more closely to the prompt, with clear elements representing a cat and a teacup, despite being abstract.

    The composition is balanced with a distinct outline, providing a whimsical interpretation of the concept.

    Player 2's image, although creative, lacks clarity in depicting the specified elements, 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
18
Player 2
16
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
6
Player 2
4
Ellipses

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2

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
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
31
Player 2
46
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
2
Player 2
4
Use Elements

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

Player 1
Player 2
3

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