Back

SVG Drawing Match #2367

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling glowing orbs under a starry, moonlit ocean sky."

SVG by Gemini 2.5 Flash Preview High 04-17
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="100%" r="100%" fx="50%" fy="100%">
      <stop offset="0%" stop-color="#003060" />
      <stop offset="70%" stop-color="#005090" />
      <stop offset="100%" stop-color="#0070c0" />
    </radialGradient>
    <radialGradient id="orbGradient" cx="50%" cy="50%" r="50%" fx="20%" fy="20%">
      <stop offset="0%" stop-color="#ffffcc" />
      <stop offset="100%" stop-color="#ffcc00" />
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="8" result="blur" />
      <feMerge>
        <feMergeNode in="blur" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
      <feMerge>
        <feMergeNode in="blur" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="#000033" />

  <!-- Stars -->
  <circle cx="50" cy="30" r="1.5" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="120" cy="20" r="1" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="200" cy="15" r="2" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="250" cy="40" r="1.8" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="10" cy="60" r="1.2" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="80" cy="70" r="1.5" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="180" cy="80" r="1" fill="#ffffff" filter="url(#starGlow)" />
  <circle cx="280" cy="75" r="2.1" fill="#ffffff" filter="url(#starGlow)" />

  <!-- Moon -->
  <circle cx="260" cy="30" r="20" fill="#ffffcc" filter="url(#starGlow)" />

  <!-- Ocean surface -->
  <rect y="150" width="300" height="150" fill="url(#oceanGradient)" />
  <path d="M0 150 Q 75 160 150 150 T 300 150 L 300 300 L 0 300 Z" fill="#000033" opacity="0.3"/>

  <!-- Octopus -->
  <g transform="translate(150, 220)">
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="#800080" />
    <path d="M0 40 Q 20 70 40 60 T 60 80 T 80 70 L 70 100 L 60 90 L 50 120 L 40 100 L 30 130 L 20 110 L 10 140 L 0 120 L -10 140 L -20 110 L -30 130 L -40 100 L -50 120 L -60 90 L -70 100 L -80 70 T -60 80 T -40 60 Q -20 70 0 40 Z" fill="#800080" />
    <circle cx="-15" cy="-10" r="5" fill="#ffffff" />
    <circle cx="15" cy="-10" r="5" fill="#ffffff" />
    <circle cx="-15" cy="-10" r="2" fill="#000000" />
    <circle cx="15" cy="-10" r="2" fill="#000000" />
  </g>

  <!-- Glowing Orbs -->
  <circle cx="150" cy="100" r="15" fill="url(#orbGradient)" filter="url(#glow)" />
  <circle cx="100" cy="130" r="12" fill="url(#orbGradient)" filter="url(#glow)" />
  <circle cx="200" cy="130" r="12" fill="url(#orbGradient)" filter="url(#glow)" />
  <circle cx="120" cy="170" r="10" fill="url(#orbGradient)" filter="url(#glow)" />
  <circle cx="180" cy="170" r="10" fill="url(#orbGradient)" filter="url(#glow)" />

</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Moonlit ocean sky -->
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="30%" r="80%">
      <stop offset="0%" stop-color="#001840" />
      <stop offset="100%" stop-color="#000010" />
    </radialGradient>
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffe0" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ffffe0" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="orbGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff66cc" stop-opacity="1"/>
      <stop offset="100%" stop-color="#6600cc" stop-opacity="0.6"/>
    </radialGradient>
    <linearGradient id="octopusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#d35400"/>
      <stop offset="100%" stop-color="#e67e22"/>
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="1" cy="1" r="0.8" fill="white" />
    </pattern>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#oceanGradient)" />
  
  <!-- Stars -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" opacity="0.3"/>

  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="#ffffe0" />
  <circle cx="250" cy="50" r="45" fill="url(#moonGlow)" />
  
  <!-- Ocean Waves (bottom part) -->
  <path d="M0,220 Q75,210 150,220 T300,220 L300,300 L0,300 Z" fill="#013a63" />
  
  <!-- Octopus Body -->
  <g id="octopus" transform="translate(150,220)">
    <!-- Head -->
    <circle cx="0" cy="-30" r="20" fill="url(#octopusGradient)" stroke="#8e44ad" stroke-width="1"/>
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#octopusGradient)" stroke="#8e44ad" stroke-width="1"/>
    
    <!-- Tentacles -->
    <g id="tentacles" stroke="#8e44ad" fill="url(#octopusGradient)" stroke-width="2">
      <path d="M -25,0 C -50,20 -50,50 -20,60" />
      <path d="M -15,0 C -30,25 -35,55 0,65" />
      <path d="M 0,0 C -5,30 5,55 10,70" />
      <path d="M 15,0 C 25,20 35,50 40,65" />
      <path d="M 25,0 C 45,25 55,55 35,70" />
      <path d="M -30,-10 C -55,0 -55,30 -30,25" />
      <path d="M 30,-10 C 55,0 55,30 30,25" />
      <path d="M -10,-15 C -20,-25 -10,-40 0,-35" />
      <path d="M 10,-15 C 20,-25 30,-40 20,-35" />
    </g>
    
    <!-- Eyes of octopus -->
    <circle cx="-7" cy="-35" r="3" fill="white"/>
    <circle cx="7" cy="-35" r="3" fill="white"/>
    <circle cx="-7" cy="-35" r="1.5" fill="black"/>
    <circle cx="7" cy="-35" r="1.5" fill="black"/>
  </g>
  
  <!-- Glowing Orbs being juggled -->
  <g id="orbs">
    <!-- Orb 1 -->
    <circle cx="90" cy="130" r="8" fill="url(#orbGradient)">
      <animate attributeName="cy" values="130;100;130" dur="3s" repeatCount="indefinite" />
      <animate attributeName="cx" values="90;110;90" dur="3s" repeatCount="indefinite" />
    </circle>
    <!-- Orb 2 -->
    <circle cx="150" cy="90" r="8" fill="url(#orbGradient)">
      <animate attributeName="cy" values="90;60;90" dur="3s" begin="0.5s" repeatCount="indefinite" />
      <animate attributeName="cx" values="150;170;150" dur="3s" begin="0.5s" repeatCount="indefinite" />
    </circle>
    <!-- Orb 3 -->
    <circle cx="210" cy="130" r="8" fill="url(#orbGradient)">
      <animate attributeName="cy" values="130;100;130" dur="3s" begin="1s" repeatCount="indefinite" />
      <animate attributeName="cx" values="210;190;210" dur="3s" begin="1s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Connecting lines from octopus to orbs (juggling paths) -->
  <path d="M150,220 L90,130" stroke="#f1c40f" stroke-dasharray="4,4" fill="none">
    <animate attributeName="stroke-opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite" />
  </path>
  <path d="M150,220 L150,90" stroke="#f1c40f" stroke-dasharray="4,4" fill="none">
    <animate attributeName="stroke-opacity" values="0.2;1;0.2" dur="3s" begin="0.5s" repeatCount="indefinite" />
  </path>
  <path d="M150,220 L210,130" stroke="#f1c40f" stroke-dasharray="4,4" fill="none">
    <animate attributeName="stroke-opacity" values="0.2;1;0.2" dur="3s" begin="1s" repeatCount="indefinite" />
  </path>
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Flash Preview High 04-17 Player 1

Judge's Analysis

    Player 1's image better adheres to the prompt by depicting an octopus juggling glowing orbs under a starry, moonlit ocean sky.

    The simplicity and clarity of the design effectively convey the concept.

    Player 2's submission, while creative, features a crab-like creature rather than an octopus and diverges from the prompt's core 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
23
Player 2
27
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
18
Player 2
11
Ellipses

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

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

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

Player 1
1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
12

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
9
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
1
Player 2
1

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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