Back

SVG Drawing Match #259

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus playing a saxophone under a disco ball in the desert night"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cactusGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#70B642;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4A7C2C;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="saxGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#DAA520;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="discoBall" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF69B4;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#nightSky)"/>
  <g transform="translate(150,150)">
    <path d="M0,-50 Q -50,-70 -100,-50 T -200,-50 Q -150,-70 -100,-50 T 0,-50" fill="url(#cactusGradient)"/>
    <rect x="-20" y="-30" width="40" height="60" rx="10" fill="#FFD700"/>
    <rect x="-40" y="-40" width="80" height="10" rx="5" fill="#FFA500"/>
    <path d="M-30,-60 L -20,-80 L -10,-60" fill="#FFD700"/>
    <rect x="-40" y="-90" width="80" height="20" rx="10" fill="#FFA500"/>
    <rect x="-25" y="-100" width="50" height="15" rx="8" fill="#FFD700"/>
    <path d="M-20,-115 L -10,-135 L 0,-115" fill="#FFA500"/>
    <path d="M0,-100 Q -20,-120 -40,-100 T -80,-100 Q -60,-120 -40,-100 T 0,-100" fill="url(#cactusGradient)"/>
  </g>
  <g transform="translate(150,150)">
    <rect x="-15" y="-100" width="30" height="200" rx="10" fill="url(#saxGradient)"/>
    <rect x="-5" y="-150" width="10" height="100" rx="5" fill="#4B0082"/>
    <rect x="-25" y="-120" width="50" height="30" rx="15" fill="#FF69B4"/>
    <rect x="-20" y="-150" width="40" height="5" fill="#8B008B"/>
    <rect x="-10" y="-160" width="20" height="40" rx="10" fill="#8B008B"/>
  </g>
  <g transform="translate(150,100)">
    <circle r="50" fill="url(#discoBall)"/>
    <rect x="-25" y="-25" width="50" height="5" fill="#FF0000"/>
    <rect x="-20" y="-20" width="40" height="5" fill="#00FF00"/>
    <rect x="-15" y="-15" width="30" height="5" fill="#0000FF"/>
  </g>
  <g transform="translate(250,50)">
    <path d="M0,0 L 10,10 L 20,0" fill="#FFFFFF"/>
    <path d="M30,0 L 40,10 L 50,0" fill="#FFFFFF"/>
  </g>
  <g transform="translate(20,200)">
    <path d="M0,0 Q 50,-50 100,0 T 200,0 Q 150,50 100,0 T 0,0" fill="#4B0082"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Night sky background with starry gradient -->
  <defs>
    <linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1A0F3B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="1" fill="white"/>
      <circle cx="20" cy="80" r="1" fill="white"/>
      <circle cx="80" cy="30" r="1" fill="white"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#nightSky)"/>
  <rect width="300" height="300" fill="url(#stars)"/>

  <!-- Desert floor -->
  <path d="M0 220 C100 240 200 240 300 220 L300 300 L0 300 Z" fill="url(#desertFloor)"/>
  <defs>
    <linearGradient id="desertFloor" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#4A2B0F;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#6A3D1F;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Disco ball -->
  <g transform="translate(150 100)">
    <circle r="30" fill="url(#discoGrad)"/>
    <defs>
      <linearGradient id="discoGrad" x1="0%" y1="0%" x2="100%" y2="100%">
        <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
        <stop offset="100%" style="stop-color:#888888;stop-opacity:1" />
      </linearGradient>
    </defs>
    <!-- Disco rays -->
    <path d="M0 0 L30 30" stroke="white" stroke-width="1"/>
    <path d="M0 0 L-30 30" stroke="white" stroke-width="1"/>
    <path d="M0 0 L0 -30" stroke="white" stroke-width="1"/>
    <path d="M0 0 L30 -30" stroke="white" stroke-width="1"/>
    <path d="M0 0 L-30 -30" stroke="white" stroke-width="1"/>
  </g>

  <!-- Cactus -->
  <path d="M150 200 L130 220 L170 220 L150 250 L150 270" fill="#2F4F4F" stroke="#1A3A3A" stroke-width="2"/>
  <path d="M140 210 L140 230" stroke="#1A3A3A" stroke-width="2"/>
  <path d="M160 210 L160 230" stroke="#1A3A3A" stroke-width="2"/>

  <!-- Saxophone -->
  <path d="M220 250 Q230 260 240 250 L260 250 Q270 240 270 230 L270 190" fill="#CD5C5C" stroke="#8B0A0A" stroke-width="2"/>
  <circle cx="270" cy="190" r="10" fill="#FFD700" stroke="#8B0A0A" stroke-width="2"/>
  <path d="M270 180 Q275 185 280 180" fill="#FFD700"/>
  <path d="M270 200 Q275 205 280 200" fill="#FFD700"/>
  <path d="M270 220 Q275 225 280 220" fill="#FFD700"/>

  <!-- Music notes -->
  <path d="M280 230 Q300 240 280 250" fill="#FF69B4" stroke="#FF1493" stroke-width="2"/>
  <path d="M280 240 Q300 250 280 260" fill="#FF69B4" stroke="#FF1493" stroke-width="2"/>
  <path d="M280 250 Q300 260 280 270" fill="#FF69B4" stroke="#FF1493" stroke-width="2"/>

  <!-- Sparkles -->
  <circle cx="150" cy="100" r="2" fill="white"/>
  <circle cx="200" cy="150" r="2" fill="white"/>
  <circle cx="100" cy="200" r="2" fill="white"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt by depicting a cactus with a saxophone under a disco ball in a desert night setting.

    The composition includes clear elements of the night sky and desert environment, providing context and atmosphere.

    Player 1's image lacks clear representation of the prompt elements, making it less effective in conveying the idea.

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
21
Player 2
26
Rectangles

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

Player 1
13
Player 2
2
Circles

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

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

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

Player 1
5
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
8

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
5
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
27
Player 2
41
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
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