Back

SVG Drawing Match #206

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Singing cactus with headphones in a desert concert"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FF4500" />
    </linearGradient>
    <linearGradient id="sandGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#F4A460" />
      <stop offset="100%" stop-color="#8B4513" />
    </linearGradient>
    <pattern id="cactusPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#556B2F" />
      <circle cx="5" cy="5" r="2" fill="#8FBC8F" />
    </pattern>
    <radialGradient id="headphonesGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#A9A9A9" />
      <stop offset="100%" stop-color="#2F4F4F" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <rect y="200" width="300" height="100" fill="url(#sandGradient)" />
  <g transform="translate(100, 100)">
    <rect x="-20" y="-80" width="40" height="160" fill="url(#cactusPattern)" />
    <circle cx="0" cy="-90" r="20" fill="url(#cactusPattern)" />
    <circle cx="0" cy="-120" r="15" fill="url(#cactusPattern)" />
    <g transform="translate(-30, -140)">
      <circle cx="20" cy="20" r="30" fill="url(#headphonesGradient)" />
      <circle cx="80" cy="20" r="30" fill="url(#headphonesGradient)" />
      <rect x="20" y="10" width="60" height="20" fill="url(#headphonesGradient)" />
    </g>
    <path d="M -10 20 C 0 40, 20 40, 30 20" fill="none" stroke="#FF69B4" stroke-width="5" />
    <path d="M -10 40 C 0 60, 20 60, 30 40" fill="none" stroke="#FF69B4" stroke-width="5" />
    <path d="M -10 60 C 0 80, 20 80, 30 60" fill="none" stroke="#FF69B4" stroke-width="5" />
  </g>
  <circle cx="250" cy="50" r="20" fill="#FFD700" />
  <circle cx="260" cy="60" r="15" fill="#FF4500" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ff6b6b"/>
      <stop offset="100%" style="stop-color:#ffd93d"/>
    </linearGradient>
    <linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ffd089"/>
      <stop offset="100%" style="stop-color:#ffb84d"/>
    </linearGradient>
    <pattern id="musicNotes" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
      <path d="M15,5 Q25,15 15,25 M15,5 v15" stroke="#fff" fill="none" opacity="0.3"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#sandGradient)"/>

  <!-- Sound waves -->
  <circle cx="150" cy="150" r="80" fill="url(#musicNotes)" opacity="0.6"/>
  
  <!-- Main cactus body -->
  <path d="M130,240 C130,180 130,160 130,120 C130,80 170,80 170,120 C170,160 170,180 170,240 Z" 
        fill="#2ecc71"/>
  
  <!-- Cactus arms -->
  <path d="M130,180 C100,180 90,150 100,130" stroke="#2ecc71" stroke-width="20" fill="none"/>
  <path d="M170,160 C200,160 210,130 200,110" stroke="#2ecc71" stroke-width="20" fill="none"/>

  <!-- Headphones -->
  <path d="M110,140 C80,140 80,110 110,110" stroke="#333" stroke-width="8" fill="none"/>
  <path d="M190,140 C220,140 220,110 190,110" stroke="#333" stroke-width="8" fill="none"/>
  <path d="M110,110 L190,110" stroke="#333" stroke-width="8" fill="none"/>
  
  <!-- Cactus face -->
  <ellipse cx="140" cy="150" rx="3" ry="5" fill="#333"/>
  <ellipse cx="160" cy="150" rx="3" ry="5" fill="#333"/>
  <path d="M142,165 C148,170 152,170 158,165" stroke="#333" stroke-width="2" fill="none"/>

  <!-- Spikes -->
  <g stroke="#1d8348" stroke-width="2">
    <line x1="125" y1="130" x2="115" y2="125"/>
    <line x1="125" y1="150" x2="115" y2="145"/>
    <line x1="125" y1="170" x2="115" y2="165"/>
    <line x1="175" y1="130" x2="185" y2="125"/>
    <line x1="175" y1="150" x2="185" y2="145"/>
    <line x1="175" y1="170" x2="185" y2="165"/>
  </g>

  <!-- Musical notes floating -->
  <g fill="#fff">
    <path d="M80,80 Q90,70 80,60 M80,80 v-15" stroke="#fff" fill="none"/>
    <path d="M220,90 Q230,80 220,70 M220,90 v-15" stroke="#fff" fill="none"/>
    <path d="M150,40 Q160,30 150,20 M150,40 v-15" stroke="#fff" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission features a more complete and lively depiction of the concept, with a cactus wearing headphones and expressing joy, which aligns well with the theme of a 'desert concert.' The use of a cheerful face and musical notes enhances the creativity and visual appeal.

    Player 1's image, while colorful, lacks these expressive elements and is less visually engaging.

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
15
Player 2
22
Rectangles

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

Player 1
5
Player 2
2
Circles

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

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

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
2
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
6
Player 2
33
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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