Back

SVG Drawing Match #1478

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow octopus juggling flaming swords"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="60%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#00BBFF" stop-opacity="0.1"/>
      <stop offset="100%" stop-color="#006699" stop-opacity="0.6"/>
    </radialGradient>
    
    <linearGradient id="flame" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF5500"/>
      <stop offset="50%" stop-color="#FFAA00"/>
      <stop offset="100%" stop-color="#FF3300"/>
    </linearGradient>
    
    <linearGradient id="handle" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#663300"/>
      <stop offset="50%" stop-color="#996633"/>
      <stop offset="100%" stop-color="#663300"/>
    </linearGradient>
    
    <linearGradient id="steel" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#CCCCCC"/>
      <stop offset="50%" stop-color="#EEEEEE"/>
      <stop offset="100%" stop-color="#CCCCCC"/>
    </linearGradient>
    
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <linearGradient id="rainbow1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.6%" stop-color="#FF9900"/>
      <stop offset="33.2%" stop-color="#FFFF00"/>
      <stop offset="49.8%" stop-color="#33FF00"/>
      <stop offset="66.4%" stop-color="#0099FF"/>
      <stop offset="83%" stop-color="#6633FF"/>
      <stop offset="100%" stop-color="#FF00FF"/>
    </linearGradient>
    
    <linearGradient id="rainbow2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF00FF"/>
      <stop offset="16.6%" stop-color="#6633FF"/>
      <stop offset="33.2%" stop-color="#0099FF"/>
      <stop offset="49.8%" stop-color="#33FF00"/>
      <stop offset="66.4%" stop-color="#FFFF00"/>
      <stop offset="83%" stop-color="#FF9900"/>
      <stop offset="100%" stop-color="#FF0000"/>
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#water)"/>
  
  <!-- Bubbles -->
  <circle cx="50" cy="50" r="10" fill="#FFFFFF" opacity="0.3"/>
  <circle cx="80" cy="80" r="5" fill="#FFFFFF" opacity="0.3"/>
  <circle cx="30" cy="120" r="8" fill="#FFFFFF" opacity="0.3"/>
  <circle cx="250" cy="60" r="12" fill="#FFFFFF" opacity="0.3"/>
  <circle cx="220" cy="180" r="6" fill="#FFFFFF" opacity="0.3"/>
  <circle cx="270" cy="220" r="9" fill="#FFFFFF" opacity="0.3"/>
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="150" rx="50" ry="45" fill="url(#rainbow1)"/>
  
  <!-- Eyes -->
  <circle cx="135" cy="135" r="10" fill="white"/>
  <circle cx="165" cy="135" r="10" fill="white"/>
  <circle cx="135" cy="135" r="5" fill="black"/>
  <circle cx="165" cy="135" r="5" fill="black"/>
  
  <!-- Smile -->
  <path d="M130,160 Q150,180 170,160" fill="none" stroke="black" stroke-width="3" stroke-linecap="round"/>
  
  <!-- Tentacles -->
  <!-- Tentacle 1 (left) juggling sword -->
  <path d="M110,160 C80,190 60,220 70,250" fill="none" stroke="url(#rainbow1)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 2 (left-bottom) -->
  <path d="M120,180 C100,210 70,200 50,220" fill="none" stroke="url(#rainbow2)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 3 (bottom) -->
  <path d="M140,190 C130,220 150,230 140,260" fill="none" stroke="url(#rainbow1)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 4 (right-bottom) juggling sword -->
  <path d="M160,190 C180,220 200,230 230,220" fill="none" stroke="url(#rainbow2)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 5 (right) -->
  <path d="M190,160 C220,180 240,190 260,180" fill="none" stroke="url(#rainbow1)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 6 (right-top) juggling sword -->
  <path d="M180,130 C210,120 230,100 250,80" fill="none" stroke="url(#rainbow2)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 7 (top) -->
  <path d="M150,105 C160,80 140,60 150,40" fill="none" stroke="url(#rainbow1)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Tentacle 8 (left-top) -->
  <path d="M120,130 C90,100 60,110 40,90" fill="none" stroke="url(#rainbow2)" stroke-width="8" stroke-linecap="round"/>
  
  <!-- Flaming Swords -->
  <!-- Sword 1 -->
  <g transform="translate(70,250) rotate(-30)">
    <rect x="0" y="0" width="30" height="8" rx="2" ry="2" fill="url(#handle)"/>
    <polygon points="30,0 30,8 60,4" fill="url(#steel)" stroke="black" stroke-width="0.5"/>
    <path d="M60,4 C70,0 75,8 80,-5" fill="url(#flame)" filter="url(#glow)" stroke="#FF3300" stroke-width="0.5"/>
  </g>
  
  <!-- Sword 2 -->
  <g transform="translate(230,220) rotate(210)">
    <rect x="0" y="0" width="30" height="8" rx="2" ry="2" fill="url(#handle)"/>
    <polygon points="30,0 30,8 60,4" fill="url(#steel)" stroke="black" stroke-width="0.5"/>
    <path d="M60,4 C70,0 75,8 80,-5" fill="url(#flame)" filter="url(#glow)" stroke="#FF3300" stroke-width="0.5"/>
  </g>
  
  <!-- Sword 3 -->
  <g transform="translate(250,80) rotate(150)">
    <rect x="0" y="0" width="30" height="8" rx="2" ry="2" fill="url(#handle)"/>
    <polygon points="30,0 30,8 60,4" fill="url(#steel)" stroke="black" stroke-width="0.5"/>
    <path d="M60,4 C70,0 75,8 80,-5" fill="url(#flame)" filter="url(#glow)" stroke="#FF3300" stroke-width="0.5"/>
  </g>
  
  <!-- Small glow effect around octopus -->
  <ellipse cx="150" cy="150" rx="55" ry="50" fill="none" stroke="white" stroke-width="0.5" opacity="0.5"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: #FF5733; stop-opacity: 1" />
      <stop offset="20%" style="stop-color: #FFBD33; stop-opacity: 1" />
      <stop offset="40%" style="stop-color: #DBFF33; stop-opacity: 1" />
      <stop offset="60%" style="stop-color: #33FF57; stop-opacity: 1" />
      <stop offset="80%" style="stop-color: #33FFBD; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #3378FF; stop-opacity: 1" />
    </linearGradient>
    <linearGradient id="flameGradient" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #FF4500; stop-opacity: 1" />
      <stop offset="30%" style="stop-color: #FF8C00; stop-opacity: 1" />
      <stop offset="70%" style="stop-color: #FFD700; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FFFAF0; stop-opacity: 1" />
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
      <feFlood flood-color="#FF4500" />
      <feComposite in2="SourceAlpha" operator="in" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  <g transform="translate(150, 150)">
    <path d="M-30 40 Q-60 60 -40 30 C-80 20 -60 -40 -20 -50 C0 -80 20 -60 30 -50 C60 -40 80 20 40 30 Q60 60 30 40" fill="url(#rainbowGradient)" />
    <ellipse cx="0" cy="0" rx="60" ry="10" fill="#6A5ACD" filter="url(#glow)" />
    
    <g transform="rotate(30)">
      <path d="M-10 20 L10 20 L40 0 L10 -20 L-10 -20 Z" fill="url(#flameGradient)" />
      <path d="M-10 15 L10 15 L35 4 L10 -7 L-10 -7 Z" fill="url(#flameGradient)" />
      <path d="M-10 10 L10 10 L30 0 L10 -10 L-10 -10 Z" fill="url(#flameGradient)" />
    </g>
    
    <g transform="rotate(-30)">
      <path d="M-10 20 L10 20 L40 0 L10 -20 L-10 -20 Z" fill="url(#flameGradient)" />
      <path d="M-10 15 L10 15 L35 4 L10 -7 L-10 -7 Z" fill="url(#flameGradient)" />
      <path d="M-10 10 L10 10 L30 0 L10 -10 L-10 -10 Z" fill="url(#flameGradient)" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image clearly depicts a rainbow-colored octopus juggling flaming swords, which adheres closely to the prompt.

    The use of vibrant colors and the clear representation of both the octopus and the swords enhance its visual appeal and creativity.

    Player 2's image, while colorful, is abstract and does not clearly illustrate the concept of an octopus or juggling flaming swords.

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
31
Player 2
8
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
10
Player 2
Ellipses

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

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

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

Player 1
12
Player 2
7
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
16
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
18
Player 2
1

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

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
42
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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