Back

SVG Drawing Match #289

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat playing a violin on a crescent moon"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="moonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#ff8c00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff4500;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="catGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8a2be2;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="violinGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#d2691e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#cd5c5c;stop-opacity:1" />
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect width="40" height="40" fill="#000000" />
      <path d="M20,2 L30,19 25.5,22.5 34,31 20,27 6,31 14.5,22.5 0,19 z" fill="#ffffff" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#starPattern)" />
  <path d="M 200 50 C 200 100 250 150 250 100 C 250 50 200 0 200 50" fill="url(#moonGradient)" stroke="#ff8c00" stroke-width="2" />
  <g transform="translate(170, 60) scale(0.3)">
    <path d="M 0 0 L 100 0 L 70 200 L 0 200 Z" fill="url(#catGradient)" />
    <circle cx="50" cy="100" r="30" fill="white" />
    <circle cx="70" cy="100" r="30" fill="white" />
    <circle cx="50" cy="100" r="15" fill="#000000" />
    <circle cx="70" cy="100" r="15" fill="#000000" />
    <path d="M 50 130 L 70 130 L 65 160 L 55 160 Z" fill="white" />
    <path d="M 80 50 C 90 30 110 30 120 50" fill="none" stroke="#000000" stroke-width="5" />
  </g>
  <g transform="translate(180, 70) scale(0.2)">
    <rect x="0" y="0" width="100" height="50" fill="url(#violinGradient)" />
    <rect x="20" y="0" width="10" height="50" fill="black" />
    <rect x="70" y="0" width="10" height="50" fill="black" />
    <rect x="0" y="50" width="100" height="20" fill="url(#violinGradient)" />
    <path d="M 50 70 Q 40 100 50 130 Q 60 100 50 70" fill="none" stroke="black" stroke-width="5" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fdfcfb"/>
      <stop offset="100%" stop-color="#e2d1c3"/>
    </radialGradient>
    <linearGradient id="catGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffcc80"/>
      <stop offset="100%" stop-color="#ff9800"/>
    </linearGradient>
    <linearGradient id="violinGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#6d4c41"/>
      <stop offset="100%" stop-color="#3e2723"/>
    </linearGradient>
    <linearGradient id="backgroundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1e3c72"/>
      <stop offset="100%" stop-color="#2a5298"/>
    </linearGradient>
    <pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="2" fill="white" />
      <circle cx="10" cy="15" r="1.5" fill="white" />
      <circle cx="18" cy="5" r="1" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#backgroundGradient)" />
  <circle cx="250" cy="50" r="4" fill="white" />
  <circle cx="30" cy="80" r="3" fill="white" />
  <circle cx="200" cy="200" r="2" fill="white" />
  <circle cx="100" cy="150" r="2.5" fill="white" />
  <path d="M150,250 C180,220 220,220 250,250" fill="none" stroke="url(#moonGradient)" stroke-width="20" />
  <path d="M150,250 
           C140,200 160,200 150,150 
           C140,100 160,100 150,50 
           C130,80 130,120 150,150 
           C170,120 170,80 150,50 
           C150,100 150,200 150,250" fill="url(#moonGradient)" />
  <!-- Cat Body -->
  <g transform="translate(120, 80)">
    <ellipse cx="30" cy="30" rx="30" ry="20" fill="url(#catGradient)" />
    <!-- Ears -->
    <polygon points="15,15 25,5 35,15" fill="url(#catGradient)" />
    <polygon points="45,15 55,5 65,15" fill="url(#catGradient)" />
    <!-- Eyes -->
    <circle cx="20" cy="25" r="3" fill="black" />
    <circle cx="40" cy="25" r="3" fill="black" />
    <!-- Tail -->
    <path d="M60,30 Q80,20 70,50" stroke="url(#catGradient)" stroke-width="4" fill="none" />
    <!-- Violin -->
    <rect x="10" y="35" width="40" height="10" rx="5" ry="5" fill="url(#violinGradient)" />
    <line x1="10" y1="40" x2="50" y2="40" stroke="black" stroke-width="1" />
    <line x1="30" y1="35" x2="30" y2="45" stroke="black" stroke-width="1" />
    <!-- Bow -->
    <line x1="50" y1="40" x2="60" y2="35" stroke="brown" stroke-width="2" />
  </g>
  <!-- Musical Notes -->
  <path d="M180,60 Q190,50 200,60 T220,60" fill="none" stroke="yellow" stroke-width="2" />
  <circle cx="220" cy="60" r="2" fill="yellow" />
  <path d="M160,80 Q170,70 180,80 T200,80" fill="none" stroke="yellow" stroke-width="2" />
  <circle cx="200" cy="80" r="2" fill="yellow" />
  <!-- Crescent Moon Glow -->
  <radialGradient id="glow" cx="150" cy="150" r="100%" fx="150" fy="150">
    <stop offset="0%" stop-color="rgba(255, 255, 224,0.8)" />
    <stop offset="100%" stop-color="rgba(255, 255, 224,0)" />
  </radialGradient>
  <circle cx="150" cy="150" r="100" fill="none" stroke="url(#glow)" stroke-width="200" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission more clearly adheres to the prompt with a recognizable cat playing a violin on a crescent moon, depicted with a creative and visually appealing design.

    The composition is clear and the background adds to the celestial theme.

    Player 1's image is abstract and less recognizable in terms of the prompt, making it harder to interpret and less visually coherent.

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
16
Player 2
25
Rectangles

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

Player 1
6
Player 2
2
Circles

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

Player 1
4
Player 2
12
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
Player 2
3
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
6
Player 2
5
Groups

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
5
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
3
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
14

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
1

Complexity Metrics

Path Commands

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

Player 1
21
Player 2
16
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
4
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