Back

SVG Drawing Match #2410

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under the ocean."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4A90E2"/>
      <stop offset="100%" stop-color="#003366"/>
    </radialGradient>
    <linearGradient id="planetGradient1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF7F50"/>
      <stop offset="100%" stop-color="#FF4500"/>
    </linearGradient>
    <linearGradient id="planetGradient2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#7CFC00"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
    <linearGradient id="planetGradient3" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#BA55D3"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </linearGradient>
  </defs>
  
  <!-- Background: Ocean -->
  <rect width="300" height="300" fill="#001f3f"/>
  <!-- Light rays for underwater glow -->
  <circle cx="150" cy="150" r="140" fill="rgba(255,255,255,0.05)"/>
  <circle cx="150" cy="150" r="130" fill="rgba(255,255,255,0.03)"/>
  
  <!-- Ocean floor -->
  <ellipse cx="150" cy="280" rx="130" ry="20" fill="#003300"/>
  <!-- Coral accents -->
  <g fill="#FF69B4" opacity="0.8">
    <polygon points="50,280 60,260 70,280" />
    <polygon points="120,280 130,255 140,280" />
    <polygon points="200,280 210,250 220,280" />
    <polygon points="250,280 260,265 270,280" />
  </g>
  
  <!-- Octopus Body -->
  <ellipse cx="150" cy="150" rx="40" ry="30" fill="url(#octoGradient)" stroke="#222" stroke-width="2"/>
  <!-- Octopus Head -->
  <circle cx="150" cy="140" r="25" fill="url(#octoGradient)" stroke="#222" stroke-width="2"/>
  
  <!-- Octopus Eyes -->
  <circle cx="138" cy="132" r="3" fill="#fff"/>
  <circle cx="138" cy="132" r="1.5" fill="#000"/>
  <circle cx="162" cy="132" r="3" fill="#fff"/>
  <circle cx="162" cy="132" r="1.5" fill="#000"/>
  
  <!-- Tentacles -->
  <g fill="none" stroke="#222" stroke-width="4">
    <!-- Tentacle 1 -->
    <path d="M130,165 C125,180 115,180 110,195" stroke-linecap="round"/>
    <!-- Tentacle 2 -->
    <path d="M140,170 C135,185 125,185 120,200" stroke-linecap="round"/>
    <!-- Tentacle 3 -->
    <path d="M150,175 C145,190 135,190 130,205" stroke-linecap="round"/>
    <!-- Tentacle 4 -->
    <path d="M160,170 C155,185 145,185 140,200" stroke-linecap="round"/>
    <!-- Tentacle 5 -->
    <path d="M170,165 C165,180 155,180 150,195" stroke-linecap="round"/>
  </g>
  
  <!-- Planets being juggled -->
  <!-- Planet 1 -->
  <circle cx="125" cy="100" r="12" fill="url(#planetGradient1)" stroke="#fff" stroke-width="1"/>
  <!-- Orbit 1 path -->
  <circle cx="150" cy="150" r="50" fill="none" stroke="#555" stroke-width="0.5" opacity="0.3" stroke-dasharray="2,2"/>
  <!-- Planet 2 -->
  <circle cx="175" cy="100" r="10" fill="url(#planetGradient2)" stroke="#fff" stroke-width="1"/>
  <!-- Orbit 2 path -->
  <circle cx="150" cy="150" r="70" fill="none" stroke="#555" stroke-width="0.5" opacity="0.3" stroke-dasharray="2,2"/>
  <!-- Planet 3 -->
  <circle cx="210" cy="100" r="14" fill="url(#planetGradient3)" stroke="#fff" stroke-width="1"/>
  <!-- Orbit 3 path -->
  <circle cx="150" cy="150" r="90" fill="none" stroke="#555" stroke-width="0.5" opacity="0.3" stroke-dasharray="2,2"/>
  
  <!-- Juggling planets at different positions -->
  <circle cx="150" cy="50" r="12" fill="url(#planetGradient1)" stroke="#fff" stroke-width="1"/>
  <circle cx="200" cy="80" r="10" fill="url(#planetGradient2)" stroke="#fff" stroke-width="1"/>
  <circle cx="100" cy="80" r="14" fill="url(#planetGradient3)" stroke="#fff" stroke-width="1"/>
  
  <!-- Artistic bubble overlays for underwater feel -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#00ffff" stroke-opacity="0.2" stroke-width="1"/>
  <circle cx="150" cy="150" r="100" fill="none" stroke="#00ffff" stroke-opacity="0.2" stroke-width="1"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#0099ff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#004d80;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ff9900;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff6699;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#cc0066;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#66ccff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#3399cc;stop-opacity:1"/>
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#waterGradient)" />
  <g id="octopus">
    <path d="M150 210 Q120 160 80 180 Q75 140 100 130 Q130 110 150 130 Q170 110 200 130 Q225 140 220 180 Q180 160 150 210" fill="#8A2BE2" />
    <path d="M170 190 Q160 180 165 170 Q175 175 190 185 Q185 197 170 190" fill="#7A1F78" />
    <path d="M130 190 Q140 180 135 170 Q125 175 110 185 Q115 197 130 190" fill="#7A1F78" />
  </g>
  <circle cx="100" cy="80" r="20" fill="url(#planetGradient1)" />
  <circle cx="200" cy="90" r="15" fill="url(#planetGradient2)" />
  <circle cx="150" cy="50" r="18" fill="url(#planetGradient3)" />
  <path d="M97 77 Q100 65 110 70 Q100 74 97 77" fill="#fff" />
  <path d="M198 87 Q200 75 210 80 Q200 84 198 87" fill="#fff" />
  <path d="M150 46 Q152 35 160 41 Q150 44 150 46" fill="#fff" />
  <text x="50%" y="280" font-family="Arial" font-size="14" fill="#f2f2f2" text-anchor="middle">An Octopus Juggling Planets</text>
</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 better adheres to the prompt by including a recognizable octopus with visible tentacles juggling the planets under the ocean, which aligns more closely with the idea.

    The composition is creative and visually clear, with a better sense of underwater environment compared to Player 2's abstract and minimalistic approach that lacks clear octopus elements and detailed context.

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
30
Player 2
10
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
18
Player 2
3
Ellipses

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

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

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

Player 1
5
Player 2
6
Groups

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

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

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
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
10
Player 2
24
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
4
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