Back

SVG Drawing Match #2288

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under a starry sky."

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Background Gradient -->
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#0b0033"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Octopus Gradient -->
    <radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <!-- Planet Gradients -->
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc00"/>
      <stop offset="100%" stop-color="#ff9900"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ccff"/>
      <stop offset="100%" stop-color="#3366ff"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8a2be2"/>
      <stop offset="100%" stop-color="#4b0082"/>
    </radialGradient>
    <!-- Star Pattern -->
    <pattern id="stars" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="2" cy="2" r="1" fill="white" />
      <circle cx="10" cy="5" r="1" fill="white" />
      <circle cx="15" cy="15" r="1" fill="white" />
      <circle cx="5" cy="12" r="1" fill="white" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.5" />

  <!-- Octopus Body -->
  <ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#octoGradient)" />

  <!-- Octopus Eyes -->
  <circle cx="135" cy="190" r="5" fill="#ffffff"/>
  <circle cx="165" cy="190" r="5" fill="#ffffff"/>
  <circle cx="135" cy="190" r="2" fill="#000000"/>
  <circle cx="165" cy="190" r="2" fill="#000000"/>

  <!-- Tentacles -->
  <!-- Each tentacle is a path with spline curves -->
  <path d="M110,220 C80,250 70,270 100,260" fill="none" stroke="url(#octoGradient)" stroke-width="8" stroke-linecap="round"/>
  <path d="M130,220 C130,250 120,270 130,260" fill="none" stroke="url(#octoGradient)" stroke-width="8" stroke-linecap="round"/>
  <path d="M170,220 C200,250 210,270 180,260" fill="none" stroke="url(#octoGradient)" stroke-width="8" stroke-linecap="round"/>
  <path d="M190,220 C190,250 200,270 170,260" fill="none" stroke="url(#octoGradient)" stroke-width="8" stroke-linecap="round"/>

  <!-- Planets -->
  <!-- Planet 1 -->
  <circle cx="100" cy="260" r="10" fill="url(#planet1)"/>
  <!-- Planet 2 -->
  <circle cx="130" cy="260" r="12" fill="url(#planet2)"/>
  <!-- Planet 3 -->
  <circle cx="180" cy="260" r="8" fill="url(#planet3)"/>

  <!-- Orbits -->
  <path d="M80,250 a20,20 0 1,1 40,0 a20,20 0 1,1 -40,0" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/>
  <path d="M150,220 a30,15 0 1,1 60,0 a30,15 0 1,1 -60,0" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/>

  <!-- Additional Stars -->
  <circle cx="50" cy="50" r="1.5" fill="white" />
  <circle cx="250" cy="80" r="1.5" fill="white" />
  <circle cx="200" cy="30" r="1.5" fill="white" />
  <circle cx="270" cy="200" r="1" fill="white" />
  <circle cx="30" cy="230" r="1" fill="white" />

  <!-- Moon -->
  <circle cx="250" cy="50" r="15" fill="url(#planet2)" />
  <path d="M255,50 a15,15 0 1,0 -15,0 a10,15 0 1,1 15,0" fill="#0b0033"/>

</svg>
SVG by o3 high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
 <defs>
  <!-- Background -->
  <radialGradient id="bgGrad" cx="0.5" cy="0.2" r="0.9">
   <stop offset="0%" stop-color="#0f1e46"/>
   <stop offset="100%" stop-color="#05001a"/>
  </radialGradient>

  <!-- Octopus -->
  <radialGradient id="octoBody" cx="0.4" cy="0.3" r="0.8">
   <stop offset="0%" stop-color="#ff9ad5"/>
   <stop offset="50%" stop-color="#ff4fbf"/>
   <stop offset="100%" stop-color="#c4008c"/>
  </radialGradient>
  <radialGradient id="octoStroke" cx="0.5" cy="0.5" r="0.5">
   <stop offset="0%" stop-color="#ffd1ec"/>
   <stop offset="100%" stop-color="#ff4fbf"/>
  </radialGradient>

  <!-- Planets -->
  <radialGradient id="sun" cx="0.3" cy="0.3" r="0.7">
   <stop offset="0%" stop-color="#ffffd6"/>
   <stop offset="100%" stop-color="#ffb100"/>
  </radialGradient>
  <radialGradient id="planetBlue" cx="0.3" cy="0.3" r="0.7">
   <stop offset="0%" stop-color="#cfe8ff"/>
   <stop offset="100%" stop-color="#007bff"/>
  </radialGradient>
  <radialGradient id="planetPink" cx="0.3" cy="0.3" r="0.7">
   <stop offset="0%" stop-color="#ffd6fa"/>
   <stop offset="100%" stop-color="#e10090"/>
  </radialGradient>
  <radialGradient id="planetGreen" cx="0.3" cy="0.3" r="0.7">
   <stop offset="0%" stop-color="#d5ffdf"/>
   <stop offset="100%" stop-color="#00b862"/>
  </radialGradient>
  <radialGradient id="planetCyan" cx="0.3" cy="0.3" r="0.7">
   <stop offset="0%" stop-color="#d7ffff"/>
   <stop offset="100%" stop-color="#00d6ff"/>
  </radialGradient>

  <!-- Glow -->
  <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
   <feGaussianBlur stdDeviation="2" result="blur"/>
   <feMerge>
    <feMergeNode in="blur"/>
    <feMergeNode in="SourceGraphic"/>
   </feMerge>
  </filter>
 </defs>

 <!-- SKY -->
 <rect width="300" height="300" fill="url(#bgGrad)"/>

 <!-- STARS -->
 <g fill="white" opacity="0.9">
  <circle cx="15" cy="25" r="1"/>
  <circle cx="45" cy="40" r="1.5"/>
  <circle cx="70" cy="20" r="1"/>
  <circle cx="90" cy="50" r="0.8"/>
  <circle cx="120" cy="35" r="1.2"/>
  <circle cx="150" cy="25" r="1"/>
  <circle cx="180" cy="40" r="1.3"/>
  <circle cx="210" cy="30" r="1"/>
  <circle cx="240" cy="50" r="1.4"/>
  <circle cx="270" cy="20" r="1"/>
  <circle cx="25" cy="70" r="1"/>
  <circle cx="60" cy="80" r="1.2"/>
  <circle cx="85" cy="70" r="1"/>
  <circle cx="110" cy="90" r="0.9"/>
  <circle cx="140" cy="80" r="1.1"/>
  <circle cx="170" cy="70" r="0.8"/>
  <circle cx="200" cy="90" r="1.3"/>
  <circle cx="230" cy="80" r="1"/>
  <circle cx="260" cy="70" r="1.2"/>
  <circle cx="290" cy="90" r="1"/>
  <circle cx="30" cy="130" r="1"/>
  <circle cx="60" cy="140" r="1"/>
  <circle cx="90" cy="130" r="1.3"/>
  <circle cx="120" cy="150" r="1"/>
  <circle cx="150" cy="135" r="1.2"/>
  <circle cx="180" cy="140" r="1"/>
  <circle cx="210" cy="130" r="1.1"/>
  <circle cx="240" cy="150" r="1"/>
  <circle cx="270" cy="140" r="1.4"/>
  <circle cx="280" cy="170" r="0.9"/>
 </g>

 <!-- PLANETS -->
 <g filter="url(#glow)">
  <circle cx="150" cy="60" r="14" fill="url(#sun)"/>
  <ellipse cx="150" cy="60" rx="19" ry="6" fill="none" stroke="#ffda63" stroke-width="1.5" transform="rotate(-15 150 60)"/>

  <circle cx="90" cy="85" r="10" fill="url(#planetBlue)"/>
  <ellipse cx="90" cy="85" rx="14" ry="4" fill="none" stroke="#95c9ff" stroke-width="1" transform="rotate(20 90 85)"/>

  <circle cx="60" cy="70" r="7" fill="url(#planetGreen)"/>

  <circle cx="210" cy="85" r="11" fill="url(#planetPink)"/>
  <ellipse cx="210" cy="85" rx="16" ry="5" fill="none" stroke="#ffa1e1" stroke-width="1" transform="rotate(-25 210 85)"/>

  <circle cx="250" cy="65" r="8" fill="url(#planetCyan)"/>
 </g>

 <!-- OCTOPUS -->
 <g>
  <!-- Tentacles -->
  <g stroke="url(#octoStroke)" stroke-width="11" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.9">
   <path d="M130 215 C100 210 70 235 80 270"/>
   <path d="M140 220 C110 225 85 250 98 285"/>
   <path d="M150 225 C120 235 110 260 130 290"/>
   <path d="M160 225 C190 235 200 260 180 290"/>
   <path d="M170 220 C200 225 225 250 212 285"/>
   <path d="M180 215 C210 210 240 235 230 270"/>
   <path d="M140 210 C115 200 90 210 95 235"/>
   <path d="M170 210 C195 200 220 210 215 235"/>
  </g>

  <!-- Body -->
  <ellipse cx="150" cy="190" rx="38" ry="48" fill="url(#octoBody)"/>

  <!-- Eyes -->
  <g>
   <circle cx="140" cy="185" r="7" fill="white"/>
   <circle cx="160" cy="185" r="7" fill="white"/>
   <circle cx="140" cy="185" r="3" fill="#2b2b2b"/>
   <circle cx="160" cy="185" r="3" fill="#2b2b2b"/>
  </g>

  <!-- Smile -->
  <path d="M140 205 Q150 215 160 205" stroke="#2b2b2b" stroke-width="2" fill="none" stroke-linecap="round"/>
 </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission is more visually polished and adheres to the prompt better, with a clear depiction of an octopus juggling planets under a starry sky.

    The planets are colorful and distinct, and the octopus is designed with clean lines and an engaging expression.

    Player 1's image, while creative, is less polished and lacks the compositional clarity and planet details seen in Player 2's work.

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
27
Player 2
53
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
17
Player 2
39
Ellipses

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

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

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
8
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
21

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
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
17
Player 2
18
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
6
Player 2
9
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