Back

SVG Drawing Match #2714

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling flaming swords underwater."

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="70%">
      <stop offset="0%" style="stop-color:#0066cc;stop-opacity:0.2"/>
      <stop offset="100%" style="stop-color:#003366;stop-opacity:0.6"/>
    </radialGradient>
    <filter id="bubbles">
      <feTurbulence type="turbulence" baseFrequency="0.01" numOctaves="3"/>
      <feDisplacementMap in="SourceGraphic" scale="10"/>
    </filter>
    <filter id="flame">
      <feGaussianBlur stdDeviation="2"/>
      <feColorMatrix type="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 5 -2"/>
    </filter>
  </defs>

  <rect width="100%" height="100%" fill="url(#water)"/>
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="160" rx="40" ry="35" fill="#FF6B6B"/>
  <circle cx="160" cy="150" r="8" fill="white"/>
  <circle cx="160" cy="150" r="4" fill="black"/>
  
  <!-- Tentacles -->
  <path d="M120 160 Q 90 120 70 150 T 40 160" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M130 180 Q 100 200 80 180 T 50 190" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M150 190 Q 160 220 140 240 T 130 260" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M170 180 Q 200 200 220 180 T 250 190" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M180 160 Q 210 120 230 150 T 260 160" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M160 140 Q 180 100 200 120 T 220 100" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M140 140 Q 120 100 100 120 T 80 100" fill="none" stroke="#FF6B6B" stroke-width="8"/>
  <path d="M150 170 Q 150 200 170 220 T 190 240" fill="none" stroke="#FF6B6B" stroke-width="8"/>

  <!-- Swords with flames -->
  <g transform="rotate(45 150 150)">
    <path d="M100 100 L120 120 L140 100 L120 80 Z" fill="#silver" stroke="#333"/>
    <path d="M120 80 L120 40" stroke="#silver" stroke-width="4"/>
    <path d="M110 40 Q120 20 130 40" fill="#FFD700" filter="url(#flame)"/>
  </g>
  <g transform="rotate(135 150 150)">
    <path d="M100 100 L120 120 L140 100 L120 80 Z" fill="#silver" stroke="#333"/>
    <path d="M120 80 L120 40" stroke="#silver" stroke-width="4"/>
    <path d="M110 40 Q120 20 130 40" fill="#FF4500" filter="url(#flame)"/>
  </g>
  <g transform="rotate(225 150 150)">
    <path d="M100 100 L120 120 L140 100 L120 80 Z" fill="#silver" stroke="#333"/>
    <path d="M120 80 L120 40" stroke="#silver" stroke-width="4"/>
    <path d="M110 40 Q120 20 130 40" fill="#FFD700" filter="url(#flame)"/>
  </g>

  <!-- Bubbles -->
  <circle cx="50" cy="50" r="10" fill="rgba(255,255,255,0.3)" filter="url(#bubbles)"/>
  <circle cx="250" cy="80" r="15" fill="rgba(255,255,255,0.3)" filter="url(#bubbles)"/>
  <circle cx="200" cy="40" r="8" fill="rgba(255,255,255,0.3)" filter="url(#bubbles)"/>
  <circle cx="80" cy="250" r="12" fill="rgba(255,255,255,0.3)" filter="url(#bubbles)"/>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#003f5c"/>
      <stop offset="100%" stop-color="#2f4b7c"/>
    </linearGradient>
    <radialGradient id="octoGrad" cx="50%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#d45087"/>
      <stop offset="100%" stop-color="#a05195"/>
    </radialGradient>
    <linearGradient id="tentacleGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a05195"/>
      <stop offset="100%" stop-color="#d45087"/>
    </linearGradient>
    <linearGradient id="bladeGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ddd"/>
      <stop offset="100%" stop-color="#aaa"/>
    </linearGradient>
    <radialGradient id="flameGrad" cx="50%" cy="0%" r="100%">
      <stop offset="0%" stop-color="#fffa65"/>
      <stop offset="50%" stop-color="#ff6e54"/>
      <stop offset="100%" stop-color="#bc2a0f"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  <g id="bubbles" opacity="0.5">
    <circle cx="30" cy="50" r="8" fill="#fff"/>
    <circle cx="80" cy="20" r="4" fill="#fff"/>
    <circle cx="200" cy="40" r="6" fill="#fff"/>
    <circle cx="250" cy="80" r="5" fill="#fff"/>
    <circle cx="170" cy="150" r="7" fill="#fff"/>
  </g>
  <g id="octopus">
    <ellipse cx="150" cy="120" rx="50" ry="40" fill="url(#octoGrad)"/>
    <circle cx="130" cy="115" r="8" fill="#fff"/>
    <circle cx="170" cy="115" r="8" fill="#fff"/>
    <circle cx="130" cy="115" r="4" fill="#000"/>
    <circle cx="170" cy="115" r="4" fill="#000"/>
    <g id="tentacles" fill="url(#tentacleGrad)">
      <path d="M150,150 C120,160 100,200 130,210 S150,190 160,200"/>
      <path d="M150,150 C180,160 210,200 180,210 S150,190 140,200"/>
      <path d="M145,150 C130,180 100,180 90,210 S130,200 145,190"/>
      <path d="M155,150 C170,180 200,180 210,210 S170,200 155,190"/>
      <path d="M140,150 C110,140 90,120 80,140 S120,150 140,150"/>
      <path d="M160,150 C190,140 210,120 220,140 S180,150 160,150"/>
      <path d="M150,145 C140,110 130,100 120,80 S140,130 150,145"/>
      <path d="M150,145 C160,110 170,100 180,80 S160,130 150,145"/>
    </g>
  </g>
  <g id="swords">
    <g transform="translate(110,160) rotate(-50)">
      <rect x="-2" y="-30" width="4" height="60" fill="url(#bladeGrad)"/>
      <rect x="-6" y="30" width="12" height="6" fill="#8B4513"/>
      <path d="M0,-30 C5,-45 15,-45 10,-60 C-5,-55 -15,-65 -10,-50 C-15,-40 -5,-35 0,-30 Z"
            fill="url(#flameGrad)" filter="url(#glow)"/>
    </g>
    <g transform="translate(150,100) rotate(10)">
      <rect x="-2" y="-30" width="4" height="60" fill="url(#bladeGrad)"/>
      <rect x="-6" y="30" width="12" height="6" fill="#8B4513"/>
      <path d="M0,-30 C5,-45 15,-45 10,-60 C-5,-55 -15,-65 -10,-50 C-15,-40 -5,-35 0,-30 Z"
            fill="url(#flameGrad)" filter="url(#glow)"/>
    </g>
    <g transform="translate(190,160) rotate(50)">
      <rect x="-2" y="-30" width="4" height="60" fill="url(#bladeGrad)"/>
      <rect x="-6" y="30" width="12" height="6" fill="#8B4513"/>
      <path d="M0,-30 C5,-45 15,-45 10,-60 C-5,-55 -15,-65 -10,-50 C-15,-40 -5,-35 0,-30 Z"
            fill="url(#flameGrad)" filter="url(#glow)"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's image clearly depicts an octopus juggling flaming swords underwater with well-defined flames and a more dynamic pose, adhering closely to the prompt.

    In contrast, Player 1's image lacks clarity, as the swords are represented ambiguously, and the overall execution is less polished.

    Player 2's submission is both more creative and visually appealing.

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
28
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
6
Player 2
9
Ellipses

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

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

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

Player 1
17
Player 2
11
Groups

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

Player 1
3
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
12

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
51
Player 2
39
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
3
Player 2
6
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