Back

SVG Drawing Match #1845

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling flaming swords in a shallow-water lagoon"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#4da6ff"/>
      <stop offset="100%" stop-color="#003366"/>
    </linearGradient>
    <linearGradient id="sandGradient" x1="0" y1="300" x2="0" y2="250">
      <stop offset="0%" stop-color="#f2c27b"/>
      <stop offset="100%" stop-color="#d4a373"/>
    </linearGradient>
    <radialGradient id="octopusGradient" cx="0.5" cy="0.5" r="0.8">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#e06645"/>
    </radialGradient>
    <linearGradient id="swordGradient" x1="0" y1="0" x2="0" y2="50">
      <stop offset="0%" stop-color="#b0b0b0"/>
      <stop offset="100%" stop-color="#707070"/>
    </linearGradient>
    <radialGradient id="flameGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff8c00"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
  </defs>
  
  <!-- Water Background -->
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  
  <!-- Sandy Bottom -->
  <path d="M0,300 L300,300 L300,250 Q150,230 0,250 Z" fill="url(#sandGradient)"/>
  
  <!-- Octopus Body -->
  <ellipse cx="150" cy="250" rx="30" ry="20" fill="url(#octopusGradient)" stroke="#b22222" stroke-width="2"/>
  
  <!-- Octopus Eyes -->
  <circle cx="140" cy="245" r="3" fill="#ffffff"/>
  <circle cx="160" cy="245" r="3" fill="#ffffff"/>
  <circle cx="140" cy="245" r="1.5" fill="#000000"/>
  <circle cx="160" cy="245" r="1.5" fill="#000000"/>
  
  <!-- Octopus Arms -->
  <!-- Left Arms -->
  <path d="M130,250 C120,240 100,240 90,250" fill="url(#octopusGradient)" stroke="#b22222" stroke-width="2"/>
  <path d="M125,255 C115,245 95,245 85,255" fill="url(#octopusGradient)" stroke="#b22222" stroke-width="2"/>
  
  <!-- Right Arms -->
  <path d="M170,250 C180,240 200,240 210,250" fill="url(#octopusGradient)" stroke="#b22222" stroke-width="2"/>
  <path d="M175,255 C185,245 205,245 215,255" fill="url(#octopusGradient)" stroke="#b22222" stroke-width="2"/>
  
  <!-- Swords -->
  <!-- Sword 1 -->
  <g transform="translate(100,200)">
    <rect x="-2" y="-40" width="4" height="40" fill="url(#swordGradient)"/>
    <polygon points="-6,-40 -2,-45 2,-40 6,-45 2,-40 -2,-40" fill="silver"/>
    <!-- Flame -->
    <path d="M0,-45 C-3,-50 0,-55 3,-50 Z" fill="url(#flameGradient)"/>
  </g>
  
  <!-- Sword 2 -->
  <g transform="translate(150,180) rotate(-20)">
    <rect x="-2" y="-40" width="4" height="40" fill="url(#swordGradient)"/>
    <polygon points="-6,-40 -2,-45 2,-40 6,-45 2,-40 -2,-40" fill="silver"/>
    <!-- Flame -->
    <path d="M0,-45 C-3,-50 0,-55 3,-50 Z" fill="url(#flameGradient)"/>
  </g>
  
  <!-- Sword 3 -->
  <g transform="translate(200,200) rotate(20)">
    <rect x="-2" y="-40" width="4" height="40" fill="url(#swordGradient)"/>
    <polygon points="-6,-40 -2,-45 2,-40 6,-45 2,-40 -2,-40" fill="silver"/>
    <!-- Flame -->
    <path d="M0,-45 C-3,-50 0,-55 3,-50 Z" fill="url(#flameGradient)"/>
  </g>
  
  <!-- Reflections and Bubbles -->
  <circle cx="130" cy="220" r="2" fill="#ffffff" opacity="0.6"/>
  <circle cx="170" cy="210" r="1.5" fill="#ffffff" opacity="0.6"/>
  <circle cx="190" cy="230" r="2.5" fill="#ffffff" opacity="0.6"/>
  
  <!-- Water Ripples -->
  <path d="M0,200 Q150,220 300,200" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.3"/>
  <path d="M0,210 Q150,230 300,210" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.2"/>
  <path d="M0,190 Q150,210 300,190" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.2"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#00BFFF" />
      <stop offset="100%" stop-color="#0077BE" />
    </radialGradient>
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FF6B6B" />
      <stop offset="100%" stop-color="#C44D58" />
    </radialGradient>
    <linearGradient id="swordGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF4500" />
      <stop offset="100%" stop-color="#FF0000" />
    </linearGradient>
    <pattern id="bubbles" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="#FFFFFF" opacity="0.6" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)" />
  <rect width="300" height="100" y="200" fill="#006994" />
  <circle cx="150" cy="150" r="120" fill="url(#octopusGradient)" />
  <ellipse cx="150" cy="150" rx="100" ry="140" fill="url(#octopusGradient)" />
  <circle cx="150" cy="150" r="90" fill="#FFFFFF" opacity="0.2" />
  <path d="M150,150 Q120,120 90,150 T150,210 T210,150 T150,90 Q180,120 150,150 Z" fill="#FFFFFF" opacity="0.3" />
  <path d="M150,150 Q180,180 210,150 T150,90 T90,150 T150,210 Q120,180 150,150 Z" fill="#FFFFFF" opacity="0.3" />
  <line x1="100" y1="170" x2="200" y2="170" stroke="url(#swordGradient)" stroke-width="10" stroke-linecap="round" />
  <line x1="120" y1="140" x2="220" y2="140" stroke="url(#swordGradient)" stroke-width="10" stroke-linecap="round" transform="rotate(20 150 150)" />
  <line x1="80" y1="200" x2="180" y2="200" stroke="url(#swordGradient)" stroke-width="10" stroke-linecap="round" transform="rotate(-20 150 150)" />
  <ellipse cx="150" cy="250" rx="50" ry="20" fill="#006994" />
  <ellipse cx="150" cy="250" rx="40" ry="15" fill="url(#waterGradient)" />
  <rect width="300" height="100" y="200" fill="url(#bubbles)" />
  <circle cx="150" cy="150" r="10" fill="#FFFFFF" />
  <circle cx="170" cy="140" r="8" fill="#FFFFFF" />
  <circle cx="130" cy="160" r="8" fill="#FFFFFF" />
  <text x="150" y="20" font-family="Arial" font-size="20" fill="#FFFFFF" text-anchor="middle">Octopus Juggling Flaming Swords</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image more closely adheres to the prompt by depicting an octopus clearly juggling flaming swords, with the inclusion of flames and a lagoon setting.

    The composition and technical execution are clear and straightforward, enhancing the visual narrative.

    Player 2's abstract approach, while creative, lacks explicit elements of juggling or flaming swords, making it less aligned with the prompt.

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

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

Player 1
4
Player 2
3
Circles

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

Player 1
7
Player 2
6
Ellipses

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

Player 1
1
Player 2
3
Lines

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
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
3
Player 2
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
28
Player 2
14
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
5
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
1

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