Back

SVG Drawing Match #291

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus playing a saxophone under a full 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" stop-color="#ffcc00" />
      <stop offset="1" stop-color="#ffffcc" />
    </linearGradient>
    <radialGradient id="cactusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4c8c4c" />
      <stop offset="100%" stop-color="#224422" />
    </radialGradient>
    <linearGradient id="saxophoneGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#b8b8b8" />
      <stop offset="1" stop-color="#5a5a5a" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="#000000" />
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  <path d="M150 200 q0 -50 25 -100 t50 0 q25 50 50 0 t25 100 q25 -50 50 0 t25 -100 q25 50 50 0 t25 100" fill="url(#cactusGradient)" />
  <path d="M150 150 l0 -40 q0 -15 10 -20 t20 -10 h40 q10 0 20 10 t10 20 l0 40" fill="url(#saxophoneGradient)" />
  <path d="M190 130 l20 0 q10 0 20 10 t10 20 l0 20 q0 10 -10 20 t-20 10 l-20 0 q-10 0 -20 -10 t-10 -20 l0 -20 q0 -10 10 -20 t20 -10" fill="url(#saxophoneGradient)" />
  <path d="M210 150 l0 -20 q0 -10 10 -15 t20 -5 l20 0 q10 0 20 5 t10 15 l0 20 q0 10 -10 15 t-20 5 l-20 0 q-10 0 -20 -5 t-10 -15" fill="url(#saxophoneGradient)" />
  <path d="M240 130 l0 -20 q0 -10 10 -15 t20 -5 l20 0 q10 0 20 5 t10 15 l0 20 q0 10 -10 15 t-20 5 l-20 0 q-10 0 -20 -5 t-10 -15" fill="url(#saxophoneGradient)" />
  <path d="M170 150 l0 -40 q0 -15 10 -20 t20 -10 h40 q10 0 20 10 t10 20 l0 40" fill="url(#saxophoneGradient)" />
  <path d="M150 150 l0 -40 q0 -15 10 -20 t20 -10 h40 q10 0 20 10 t10 20 l0 40" fill="url(#saxophoneGradient)" />
  <path d="M200 150 l0 -40 q0 -15 10 -20 t20 -10 h40 q10 0 20 10 t10 20 l0 40" fill="url(#saxophoneGradient)" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Full moon -->
  <circle cx="150" cy="150" r="120" fill="#FBE7C6" />
  
  <!-- Cactus body -->
  <rect x="130" y="120" width="40" height="90" fill="#8CB369" />
  
  <!-- Cactus arms -->
  <path d="M110,130 L150,100 L190,130" fill="#8CB369" />
  <path d="M110,160 L150,130 L190,160" fill="#8CB369" />
  
  <!-- Cactus spikes -->
  <circle cx="150" cy="135" r="5" fill="#5E784B" />
  <circle cx="140" cy="165" r="5" fill="#5E784B" />
  <circle cx="160" cy="165" r="5" fill="#5E784B" />
  
  <!-- Saxophone -->
  <path d="M100,200 Q80,210 80,250 Q100,260 120,250 L120,230 L100,220 Z" fill="#AFAFAF" />
  <path d="M120,250 Q140,260 160,250 L160,230 L120,230 Z" fill="#AFAFAF" />
  <circle cx="110" cy="250" r="10" fill="#AFAFAF" />
  
  <!-- Saxophone details -->
  <circle cx="115" cy="250" r="2" fill="#333" />
  <circle cx="155" cy="250" r="2" fill="#333" />
  <rect x="120" y="220" width="10" height="10" fill="#333" />
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's image more clearly represents the prompt with a cactus shape and a saxophone-like object, even though the depiction is abstract.

    The full moon is clearly visible in the background, enhancing the scene.

    Player 1's image lacks clarity and does not effectively convey the idea of a cactus playing a saxophone under a full moon.

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
10
Player 2
13
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
1
Player 2
7
Ellipses

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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
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
80
Player 2
17
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
3
Player 2
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