Back

SVG Drawing Match #1523

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Chameleon playing a tiny saxophone under a psychedelic mushroom"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#631D95" />
      <stop offset="100%" stop-color="#9C27B0" />
    </linearGradient>
    <radialGradient id="grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#F44336" />
      <stop offset="100%" stop-color="#FFC107" />
    </radialGradient>
    <pattern id="pat1" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#3E5151" />
      <path d="M 0,10 L 20,10" stroke="#FF69B4" stroke-width="2" />
      <path d="M 10,0 L 10,20" stroke="#FF69B4" stroke-width="2" />
    </pattern>
  </defs>

  <!-- Psychedelic Mushroom -->
  <g transform="translate(130, 50)">
    <path d="M 0,50 C 50,150 100,250 0,250Z" fill="url(#grad1)" />
    <circle cx="0" cy="150" r="50" fill="url(#grad2)" />
    <path d="M 0,200 C -50,250 -100,300 0,300Z" fill="#3E5151" />
    <path d="M 0,250 C 50,300 100,350 0,350Z" fill="#4C5154" />
    <g transform="translate(-20, 240)">
      <path d="M 10,10 C 15,15 20,20 10,20Z" fill="#60138C" />
      <path d="M 10,20 C 15,15 20,10 10,10Z" fill="#60138C" />
    </g>
    <g transform="translate(20, 240)">
      <path d="M 10,10 C 15,15 20,20 10,20Z" fill="#60138C" />
      <path d="M 10,20 C 15,15 20,10 10,10Z" fill="#60138C" />
    </g>
  </g>

  <!-- Chameleon -->
  <g transform="translate(110, 220)">
    <path d="M 0,0 C 20,50 40,100 60,120" fill="#4CAF50" />
    <path d="M 0,50 C -20,20 40,80 60,100" fill="#3E8E41" />
    <path d="M 40,150 C 30,180 20,210 40,240" fill="#8BC34A" />
    <path d="M 60,120 C 50,150 40,180 60,210" fill="#388E3C" />
    <circle cx="30" cy="90" r="10" fill="#263238" />
    <path d="M 30,100 C 15,120 0,140 15,160Z" fill="#455A64" />
    <path d="M 30,110 C 15,130 0,150 15,170Z" fill="#5677FC" />
  </g>

  <!-- Saxophone -->
  <g transform="translate(70, 200)">
    <rect x="0" y="0" width="50" height="10" fill="#956175" />
    <rect x="5" y="5" width="10" height="50" fill="#72646F" />
    <path d="M 20,15 C 25,20 30,25 20,25Z" fill="#317589" />
    <path d="M 20,30 C 25,35 30,40 20,40Z" fill="#38863E" />
    <path d="M 30,45 C 25,50 20,55 30,55Z" fill="#47B784" />
    <path d="M 30,50 C 25,45 20,40 30,40Z" fill="#37C75A" />
  </g>

  <!-- Ground -->
  <rect x="0" y="280" width="300" height="20" fill="url(#pat1)" />
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="mushroom-cap" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff3d8b" />
      <stop offset="50%" stop-color="#ff6f3a" />
      <stop offset="100%" stop-color="#f9e53e" />
    </linearGradient>
    <linearGradient id="mushroom-stem" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#f0f0f0" />
      <stop offset="100%" stop-color="#d6d6d6" />
    </linearGradient>
    <linearGradient id="ground" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#3a7a50" />
      <stop offset="100%" stop-color "#4a8a60" />
    </linearGradient>
    <linearGradient id="chameleon-body" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#5aff83" />
      <stop offset="50%" stop-color="#3ec76e" />
      <stop offset="100%" stop-color="#2a9a4d" />
    </linearGradient>
    <radialGradient id="glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)" />
      <stop offset="100%" stop-color="rgba(255,255,255,0)" />
    </radialGradient>
    <filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="5" />
    </filter>
    <pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#ff9ef0" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1a1a3a" />
  
  <!-- Glowing particles -->
  <g>
    <circle cx="50" cy="70" r="15" fill="url(#glow)" filter="url(#blur)" opacity="0.6" />
    <circle cx="210" cy="90" r="10" fill="url(#glow)" filter="url(#blur)" opacity="0.4" />
    <circle cx="250" cy="150" r="20" fill="url(#glow)" filter="url(#blur)" opacity="0.5" />
    <circle cx="70" cy="200" r="12" fill="url(#glow)" filter="url(#blur)" opacity="0.7" />
  </g>
  
  <!-- Ground -->
  <ellipse cx="150" cy="260" rx="150" ry="30" fill="url(#ground)" />
  
  <!-- Mushroom -->
  <g id="mushroom">
    <!-- Stem -->
    <path d="M140 240 C140 240, 130 170, 150 170 C170 170, 160 240, 160 240 Z" fill="url(#mushroom-stem)" stroke="#d0d0d0" stroke-width="1" />
    
    <!-- Cap -->
    <path d="M80 170 C80 130, 220 130, 220 170 C220 140, 80 140, 80 170 Z" fill="url(#mushroom-cap)" stroke="#ff3d8b" stroke-width="2" />
    
    <!-- Spots -->
    <circle cx="110" cy="155" r="8" fill="#ffee88" />
    <circle cx="150" cy="145" r="10" fill="#ffee88" />
    <circle cx="185" cy="155" r="7" fill="#ffee88" />
    <circle cx="130" cy="160" r="5" fill="#ffee88" />
    <circle cx="170" cy="160" r="6" fill="#ffee88" />
    
    <!-- Pattern overlay -->
    <path d="M80 170 C80 130, 220 130, 220 170 C220 140, 80 140, 80 170 Z" fill="url(#dots)" fill-opacity="0.5" />
  </g>
  
  <!-- Chameleon -->
  <g id="chameleon">
    <!-- Tail -->
    <path d="M60 240 C40 220, 40 200, 60 190 C70 185, 80 190, 90 200" fill="none" stroke="url(#chameleon-body)" stroke-width="10" stroke-linecap="round" />
    
    <!-- Body -->
    <ellipse cx="120" cy="220" rx="35" ry="15" fill="url(#chameleon-body)" stroke="#2a7a4d" stroke-width="1" />
    
    <!-- Head -->
    <path d="M150 215 C170 205, 170 225, 150 225 Z" fill="url(#chameleon-body)" stroke="#2a7a4d" stroke-width="1" />
    
    <!-- Eye -->
    <circle cx="160" cy="215" r="5" fill="white" />
    <circle cx="162" cy="215" r="2" fill="black" />
    
    <!-- Legs -->
    <path d="M100 230 C95 245, 100 250, 105 250" fill="none" stroke="#2a9a4d" stroke-width="4" stroke-linecap="round" />
    <path d="M120 230 C115 245, 120 250, 125 250" fill="none" stroke="#2a9a4d" stroke-width="4" stroke-linecap="round" />
    <path d="M135 230 C130 245, 135 250, 140 250" fill="none" stroke="#2a9a4d" stroke-width="4" stroke-linecap="round" />
    
    <!-- Front legs -->
    <path d="M145 220 C155 230, 155 235, 150 240" fill="none" stroke="#2a9a4d" stroke-width="4" stroke-linecap="round" />
    
    <!-- Saxophone -->
    <g transform="translate(140, 210) rotate(-10)">
      <path d="M0 0 C2 -5, 5 -10, 10 -12 L12 -10 C8 -8, 5 -4, 5 0 Z" fill="#f9d423" stroke="#e6a800" stroke-width="0.5" />
      <path d="M0 0 L-5 5" fill="none" stroke="#f9d423" stroke-width="2" stroke-linecap="round" />
      <path d="M10 -12 L15 -18" fill="none" stroke="#f9d423" stroke-width="2" stroke-linecap="round" />
      <circle cx="15" cy="-18" r="2" fill="#f9d423" />
    </g>
    
    <!-- Front hand holding saxophone -->
    <path d="M140 220 C135 215, 135 210, 138 208" fill="none" stroke="#2a9a4d" stroke-width="3" stroke-linecap="round" />
  </g>
  
  <!-- Music notes -->
  <g>
    <path d="M170 190 Q175 180, 180 185 Q185 190, 180 195" fill="none" stroke="#ffffff" stroke-width="1" />
    <circle cx="170" cy="195" r="3" fill="#ffffff" />
    
    <path d="M185 175 Q190 165, 195 170 Q200 175, 195 180" fill="none" stroke="#ffffff" stroke-width="1" />
    <circle cx="185" cy="180" r="3" fill="#ffffff" />
    
    <path d="M165 170 Q170 160, 175 165 Q180 170, 175 175" fill="none" stroke="#ffffff" stroke-width="1" />
    <circle cx="165" cy="175" r="3" fill="#ffffff" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's submission includes a vibrant and abstract depiction of a chameleon and a psychedelic mushroom, capturing the essence of the prompt with a creative use of color and shape.

    Player 2's image failed to load, providing no basis for evaluation.

    Therefore, Player 1 is the default winner.

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

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

Player 1
4
Player 2
Circles

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
21
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
5
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
51
Player 2
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
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