Back

SVG Drawing Match #2518

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets under the sea."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the sea background -->
    <linearGradient id="seaGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b3d91"/>
      <stop offset="100%" stop-color="#021f4b"/>
    </linearGradient>
    <!-- Gradient for the octopus -->
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#c44540"/>
    </radialGradient>
    <!-- Gradient for planets -->
    <radialGradient id="planetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffee58"/>
      <stop offset="100%" stop-color="#fbc02d"/>
    </radialGradient>
  </defs>
  <!-- Background - Undersea environment -->
  <rect width="300" height="300" fill="url(#seaGradient)" />

  <!-- Fluid bubbles representing water movement -->
  <circle cx="50" cy="250" r="10" fill="rgba(255,255,255,0.2)" />
  <circle cx="80" cy="220" r="6" fill="rgba(255,255,255,0.15)" />
  <circle cx="200" cy="270" r="8" fill="rgba(255,255,255,0.2)" />
  <circle cx="240" cy="200" r="5" fill="rgba(255,255,255,0.1)" />
  <circle cx="150" cy="290" r="12" fill="rgba(255,255,255,0.15)" />

  <!-- Octopus body -->
  <g id="octopus" transform="translate(150,150)">
    <!-- Head -->
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#octopusGradient)" stroke="#333" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-15" cy="-10" r="4" fill="#fff"/>
    <circle cx="-15" cy="-10" r="2" fill="#000"/>
    <circle cx="15" cy="-10" r="4" fill="#fff"/>
    <circle cx="15" cy="-10" r="2" fill="#000"/>
    <!-- Tentacles -->
    <!-- Tentacle 1 -->
    <path d="M -25,15 Q -30,25 -20,35" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 2 -->
    <path d="M -10,20 Q -5,30 0,25" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 3 -->
    <path d="M 10,20 Q 15,30 20,25" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 4 -->
    <path d="M 25,15 Q 30,25 20,35" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 5 -->
    <path d="M -12,10 Q -12,20 -4,22" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 6 -->
    <path d="M 12,10 Q 12,20 4,22" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 7 -->
    <path d="M -18,22 Q -22,28 -14,33" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
    <!-- Tentacle 8 -->
    <path d="M 18,22 Q 22,28 14,33" stroke="#b55" stroke-width="4" fill="none" stroke-linecap="round"/>
  </g>

  <!-- Planets being juggled by the octopus -->
  <!-- Planet 1 -->
  <circle cx="100" cy="50" r="15" fill="url(#planetGradient)" stroke="#888" stroke-width="1"/>
  <!-- Planet 2 -->
  <circle cx="200" cy="70" r="12" fill="#81d4fa" stroke="#555" stroke-width="1"/>
  <!-- Planet 3 -->
  <circle cx="180" cy="150" r="20" fill="#f06292" stroke="#888" stroke-width="1"/>
  <!-- Planet 4 -->
  <circle cx="80" cy="180" r="10" fill="#ffd54f" stroke="#555" stroke-width="1"/>
  <!-- Planet 5 -->
  <circle cx="150" cy="100" r="8" fill="#aed581" stroke="#555" stroke-width="1"/>

  <!-- Lines connecting the octopus tentacles to the planets (to symbolize juggling) -->
  <line x1="150" y1="150" x2="100" y2="50" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
  <line x1="150" y1="150" x2="200" y2="70" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
  <line x1="150" y1="150" x2="180" y2="150" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
  <line x1="150" y1="150" x2="80" y2="180" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
  <line x1="150" y1="150" x2="150" y2="100" stroke="#fff" stroke-width="0.5" opacity="0.5"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGradient" cx="0.5" cy="0.5" r="0.8" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#00008B"/>
      <stop offset="100%" stop-color="#0077be"/>
    </radialGradient>
    <radialGradient id="planetGradient1" cx="0.5" cy="0.5" r="0.8" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <radialGradient id="planetGradient2" cx="0.5" cy="0.5" r="0.8" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#32cd32"/>
      <stop offset="100%" stop-color="#228b22"/>
    </radialGradient>
    <radialGradient id="planetGradient3" cx="0.5" cy="0.5" r="0.8" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#1e90ff"/>
      <stop offset="100%" stop-color="#0000cd"/>
    </radialGradient>
    <pattern id="bubbles" x="0" y="0" width="0.1" height="0.1">
      <circle cx="0.05" cy="0.05" r="0.04" fill="white" fill-opacity="0.6"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#oceanGradient)"/>
  <circle cx="150" cy="100" r="30" fill="url(#planetGradient1)"/>
  <circle cx="100" cy="150" r="30" fill="url(#planetGradient2)"/>
  <circle cx="200" cy="150" r="30" fill="url(#planetGradient3)"/>
  <path d="M150,200 C100,250 200,250 150,200" fill="none" stroke="#8B4513" stroke-width="10"/>
  <path d="M150,200 C100,250 200,250 150,200" fill="#8B4513" fill-opacity="0.5"/>
  <circle cx="150" cy="200" r="20" fill="#8B4513"/>
  <circle cx="150" cy="200" r="15" fill="#A0522D"/>
  <circle cx="150" cy="200" r="10" fill="#8B4513"/>
  <circle cx="150" cy="200" r="5" fill="#A0522D"/>
  <circle cx="150" cy="200" r="2.5" fill="#8B4513"/>
  <path d="M150,200 L100,250" stroke="#8B4513" stroke-width="5"/>
  <path d="M150,200 L200,250" stroke="#8B4513" stroke-width="5"/>
  <path d="M150,200 L150,250" stroke="#8B4513" stroke-width="5"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#bubbles)" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 nano (2025-04-14) Player 1

Judge's Analysis

    Player 1's submission more effectively adheres to the prompt with a recognizable octopus form juggling planets.

    The composition and use of colors are appealing, and the visual storytelling is clear.

    Player 2's design is less identifiable as an octopus and lacks the dynamic juggling action, making it less aligned with the theme.

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
29
Player 2
16
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
14
Player 2
9
Ellipses

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

Player 1
1
Player 2
Lines

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
19
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
11

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
1
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
16
Player 2
10
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
3
Player 2
5
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