Back

SVG Drawing Match #2409

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under a starry sky."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Starry sky with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Gradient for planets -->
    <radialGradient id="planetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#b8860b"/>
    </radialGradient>
    <!-- Gradient for octopus -->
    <linearGradient id="octopusGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#d84315"/>
    </linearGradient>
  </defs>
  <!-- Starry sky background -->
  <rect width="100%" height="100%" fill="url(#skyGradient)" />

  <!-- Randomly placed stars -->
  <g fill="white" opacity="0.8">
    <circle cx="20" cy="30" r="1.2"/>
    <circle cx="50" cy="80" r="0.8"/>
    <circle cx="70" cy="20" r="1"/>
    <circle cx="120" cy="50" r="0.5"/>
    <circle cx="200" cy="70" r="1.5"/>
    <circle cx="250" cy="30" r="0.7"/>
    <circle cx="280" cy="100" r="0.9"/>
    <circle cx="170" cy="250" r="0.6"/>
    <circle cx="80" cy="200" r="1.1"/>
    <circle cx="220" cy="180" r="0.75"/>
  </g>

  <!-- Planets as colorful circles with gradients -->
  <g>
    <circle cx="80" cy="150" r="15" fill="url(#planetGradient)" opacity="0.8"/>
    <circle cx="220" cy="130" r="12" fill="#7b2ff7" opacity="0.8"/>
    <circle cx="150" cy="80" r="20" fill="#00f2fe" opacity="0.8"/>
    <circle cx="180" cy="220" r="10" fill="pink" opacity="0.8"/>
    <circle cx="100" cy="250" r="8" fill="#ffff00" opacity="0.8"/>
  </g>

  <!-- Octopus body -->
  <g>
    <!-- Main head -->
    <ellipse cx="150" cy="180" rx="30" ry="40" fill="url(#octopusGradient)" stroke="#444" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="135" cy="170" r="4" fill="white"/>
    <circle cx="135" cy="170" r="2" fill="#000"/>
    <circle cx="165" cy="170" r="4" fill="white"/>
    <circle cx="165" cy="170" r="2" fill="#000"/>
    <!-- Tentacles -->
    <g stroke="#444" stroke-width="4" fill="none">
      <!-- Tentacle 1 -->
      <path d="M120,210 C110,220 105,240 115,250"/>
      <!-- Tentacle 2 -->
      <path d="M135,215 C125,225 120,245 130,255"/>
      <!-- Tentacle 3 -->
      <path d="M150,210 C140,220 135,240 145,250"/>
      <!-- Tentacle 4 -->
      <path d="M165,215 C155,225 150,245 160,255"/>
      <!-- Tentacle 5 -->
      <path d="M180,210 C170,220 165,240 175,250"/>
    </g>
  </g>

  <!-- Planets being juggled -->
  <circle cx="100" cy="130" r="8" fill="#ff6347" opacity="0.9"/>
  <circle cx="200" cy="130" r="8" fill="#00ffcc" opacity="0.9"/>
  <circle cx="150" cy="70" r="8" fill="#ffff66" opacity="0.9"/>
  <!-- Path arcs for juggling motion (stylized) -->
  <path d="M88,125 Q100,100 112,125" stroke="#fff" stroke-dasharray="2,2" opacity="0.5"/>
  <path d="M185,125 Q197,100 209,125" stroke="#fff" stroke-dasharray="2,2" opacity="0.5"/>
  <path d="M143,65 Q150,45 157,65" stroke="#fff" stroke-dasharray="2,2" opacity="0.5"/>
</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="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#041722"/>
      <stop offset="100%" stop-color="#01010C"/>
    </linearGradient>
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#E948AB"/>
      <stop offset="100%" stop-color="#84246E"/>
    </radialGradient>
    <linearGradient id="tentGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#E948AB"/>
      <stop offset="100%" stop-color="#84246E"/>
    </linearGradient>
    <radialGradient id="p1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFB27F"/>
      <stop offset="100%" stop-color="#FF5700"/>
    </radialGradient>
    <radialGradient id="p2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#A0D8F1"/>
      <stop offset="100%" stop-color="#537DAB"/>
    </radialGradient>
    <radialGradient id="p3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FCD1E0"/>
      <stop offset="100%" stop-color="#C0496C"/>
    </radialGradient>
    <radialGradient id="p4" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#D2F898"/>
      <stop offset="100%" stop-color="#57A639"/>
    </radialGradient>
    <radialGradient id="p5" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F9EEAC"/>
      <stop offset="100%" stop-color="#F1C232"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g id="stars">
    <circle cx="15" cy="15" r="1.2" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="45" cy="40" r="0.9" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="70" cy="20" r="1.3" fill="#fff" filter="url(#starGlow)" opacity="0.9"/>
    <circle cx="120" cy="30" r="0.8" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="160" cy="15" r="1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="200" cy="25" r="1.1" fill="#fff" filter="url(#starGlow)" opacity="0.9"/>
    <circle cx="240" cy="40" r="0.7" fill="#fff" filter="url(#starGlow)" opacity="0.6"/>
    <circle cx="280" cy="20" r="1.4" fill="#fff" filter="url(#starGlow)" opacity="0.85"/>
    <circle cx="100" cy="60" r="1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="180" cy="50" r="0.8" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="230" cy="75" r="1.3" fill="#fff" filter="url(#starGlow)" opacity="0.9"/>
    <circle cx="90" cy="80" r="1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="140" cy="20" r="0.9" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="280" cy="70" r="1.2" fill="#fff" filter="url(#starGlow)" opacity="0.85"/>
    <circle cx="30" cy="100" r="0.8" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="60" cy="120" r="1.1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="150" cy="100" r="1.3" fill="#fff" filter="url(#starGlow)" opacity="0.9"/>
    <circle cx="200" cy="130" r="0.9" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="250" cy="90" r="1.2" fill="#fff" filter="url(#starGlow)" opacity="0.85"/>
    <circle cx="10" cy="150" r="0.7" fill="#fff" filter="url(#starGlow)" opacity="0.6"/>
    <circle cx="50" cy="180" r="1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="120" cy="160" r="1.3" fill="#fff" filter="url(#starGlow)" opacity="0.9"/>
    <circle cx="180" cy="170" r="0.8" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
    <circle cx="240" cy="140" r="1" fill="#fff" filter="url(#starGlow)" opacity="0.8"/>
    <circle cx="270" cy="100" r="0.9" fill="#fff" filter="url(#starGlow)" opacity="0.7"/>
  </g>
  <g id="octopus" transform="translate(150 220)">
    <g id="tentacles" fill="none" stroke="url(#tentGrad)" stroke-width="12" stroke-linecap="round" stroke-linejoin="round">
      <path d="M-20,10 C-50,20 -70,60 -50,80"/>
      <path d="M-10,15 C-50,30 -60,70 -30,90"/>
      <path d="M0,12 C20,30 30,65 10,85"/>
      <path d="M10,8 C50,20 60,50 40,70"/>
      <path d="M20,10 C60,30 80,70 60,90"/>
      <path d="M30,5 C70,15 90,45 70,65"/>
      <path d="M-15,5 C-35,-10 -55,10 -35,40"/>
      <path d="M15,5 C35,-10 55,10 35,40"/>
    </g>
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#octoGrad)"/>
    <path d="M-10,5 C-5,12 5,12 10,5" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
    <circle cx="-12" cy="-5" r="5" fill="#fff"/>
    <circle cx="-12" cy="-5" r="2.5" fill="#333"/>
    <circle cx="12" cy="-6" r="5" fill="#fff"/>
    <circle cx="12" cy="-6" r="2.5" fill="#333"/>
  </g>
  <g id="planets">
    <circle cx="90" cy="90" r="12" fill="url(#p1)"/>
    <circle cx="150" cy="60" r="10" fill="url(#p2)"/>
    <ellipse cx="150" cy="60" rx="14" ry="4" fill="none" stroke="#C0C0C0" stroke-width="2" transform="rotate(-20 150 60)"/>
    <circle cx="200" cy="100" r="14" fill="url(#p3)"/>
    <circle cx="120" cy="140" r="11" fill="url(#p4)"/>
    <circle cx="180" cy="150" r="13" fill="url(#p5)"/>
  </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 submission demonstrates stronger adherence to the prompt with a more recognizable octopus juggling planets under a starry sky.

    The use of color, expression, and planet positioning enhances the visual appeal and creativity.

    Player 1's design, while minimalist, lacks clear representation of the octopus and the juggling action, making it less engaging overall.

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
32
Player 2
46
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
22
Player 2
34
Ellipses

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

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

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

Player 1
8
Player 2
9
Groups

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
8
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
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
12
Player 2
25
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
17

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
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
18
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
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