Back

SVG Drawing Match #2359

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under the sea."

SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#10304a"/>
      <stop offset="100%" stop-color="#23567e"/>
    </linearGradient>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f9d423"/>
      <stop offset="100%" stop-color="#ff4e50"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#a8e063"/>
      <stop offset="100%" stop-color="#56ab2f"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#5f5cff"/>
      <stop offset="100%" stop-color="#1e1ecf"/>
    </radialGradient>
    <radialGradient id="planet4" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffd194"/>
      <stop offset="100%" stop-color="#d1913c"/>
    </radialGradient>
    <radialGradient id="planet5" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </radialGradient>
    <radialGradient id="planet6" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#cfd9df"/>
      <stop offset="100%" stop-color="#e2ebf0"/>
    </radialGradient>
    <pattern id="skinPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)" />
    </pattern>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="#000" flood-opacity="0.4"/>
    </filter>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGrad)" />
  <!-- Seaweed -->
  <g>
    <path d="M20,300 C10,220 40,180 20,120" stroke="#2a8f2a" stroke-width="6" fill="none"/>
    <path d="M280,300 C270,230 240,190 260,140" stroke="#2a8f2a" stroke-width="6" fill="none"/>
    <path d="M60,300 C50,240 80,200 60,150" stroke="#3faf3f" stroke-width="4" fill="none"/>
    <path d="M240,300 C230,250 260,210 240,160" stroke="#3faf3f" stroke-width="4" fill="none"/>
  </g>
  <!-- Bubbles -->
  <g fill="#ade8f4" opacity="0.6">
    <circle cx="50" cy="50" r="8"/>
    <circle cx="120" cy="30" r="5"/>
    <circle cx="200" cy="80" r="6"/>
    <circle cx="250" cy="40" r="7"/>
    <circle cx="180" cy="20" r="4"/>
  </g>
  <!-- Planets -->
  <g filter="url(#shadow)">
    <circle cx="80" cy="90" r="15" fill="url(#planet1)"/>
    <circle cx="150" cy="60" r="18" fill="url(#planet2)"/>
    <circle cx="220" cy="110" r="12" fill="url(#planet3)"/>
    <circle cx="100" cy="160" r="14" fill="url(#planet4)"/>
    <circle cx="200" cy="170" r="16" fill="url(#planet5)"/>
    <circle cx="140" cy="120" r="10" fill="url(#planet6)"/>
    <!-- Saturn ring -->
    <ellipse cx="150" cy="60" rx="22" ry="6" fill="rgba(200,180,120,0.5)" transform="rotate(30 150 60)"/>
  </g>
  <!-- Octopus -->
  <g filter="url(#shadow)">
    <!-- Body -->
    <ellipse cx="150" cy="220" rx="60" ry="50" fill="#ff6f91" fill-opacity="0.9" />
    <ellipse cx="150" cy="200" rx="50" ry="40" fill="url(#skinPattern)" />
    <!-- Eyes -->
    <circle cx="130" cy="200" r="8" fill="#fff"/>
    <circle cx="170" cy="200" r="8" fill="#fff"/>
    <circle cx="130" cy="200" r="4" fill="#333"/>
    <circle cx="170" cy="200" r="4" fill="#333"/>
    <!-- Arms -->
    <path d="M115,235 C70,260 60,310 90,290" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M125,245 C80,280 90,330 120,320" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M140,250 C130,300 140,340 170,330" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M165,255 C180,300 200,330 220,310" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M175,240 C230,260 250,300 230,280" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M155,230 C200,240 240,280 215,260" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M140,235 C100,220 90,180 120,190" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M130,220 C80,200 70,150 100,160" stroke="#ff6f91" stroke-width="12" fill="none" stroke-linecap="round"/>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)" />
  <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
    <stop offset="0%" stop-color="#032B44" />
    <stop offset="100%" stop-color="#045A8D" />
  </linearGradient>

  <!-- Octopus Body -->
  <path d="M 150 100 C 120 80 100 60 100 40 L 100 20 C 80 0 60 -20 40 -20 C 20 -20 0 -10 0 0 L 0 40 C 20 60 40 80 60 100 L 100 100 Z" fill="#FFC67D" />
  <path d="M 150 100 C 180 80 200 60 200 40 L 200 20 C 220 0 240 -20 260 -20 C 280 -20 300 -10 300 0 L 300 40 C 280 60 260 80 240 100 L 200 100 Z" fill="#FFC67D" />

  <!-- Tentacles -->
  <path d="M 100 40 C 80 60 60 80 40 100 L 0 100" fill="none" stroke="#FFC67D" stroke-width="4" />
  <path d="M 200 40 C 220 60 240 80 260 100 L 300 100" fill="none" stroke="#FFC67D" stroke-width="4" />
  <path d="M 150 100 C 120 120 90 140 60 160 L 30 160" fill="none" stroke="#FFC67D" stroke-width="4" />
  <path d="M 150 100 C 180 120 210 140 240 160 L 270 160" fill="none" stroke="#FFC67D" stroke-width="4" />
  <path d="M 100 100 C 80 120 60 140 40 160 L 20 160" fill="none" stroke="#FFC67D" stroke-width="4" />
  <path d="M 200 100 C 220 120 240 140 260 160 L 280 160" fill="none" stroke="#FFC67D" stroke-width="4" />

  <!-- Planets -->
  <circle cx="60" cy="160" r="20" fill="#87CEEB" />
  <circle cx="240" cy="160" r="20" fill="#FFD700" />
  <circle cx="150" cy="220" r="30" fill="url(#planetGradient)" />
  <linearGradient id="planetGradient" x1="0" y1="0" x2="0" y2="30">
    <stop offset="0%" stop-color="#6495ED" />
    <stop offset="100%" stop-color="#87CEEB" />
  </linearGradient>

  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="#FFFFFF" />
  <circle cx="250" cy="50" r="2" fill="#FFFFFF" />
  <circle cx="150" cy="20" r="2" fill="#FFFFFF" />
  <circle cx="75" cy="75" r="2" fill="#FFFFFF" />
  <circle cx="225" cy="75" r="2" fill="#FFFFFF" />

  <!-- Seaweed -->
  <path d="M 30 280 C 50 260 70 240 90 220" fill="none" stroke="#228B22" stroke-width="2" stroke-dasharray="5,10" />
  <path d="M 270 280 C 250 260 230 240 210 220" fill="none" stroke="#228B22" stroke-width="2" stroke-dasharray="5,10" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission clearly depicts an octopus juggling planets under the sea with vibrant colors and playful details, adhering well to the prompt.

    In contrast, Player 2's submission is more abstract, lacking clear representation of an octopus or a juggling motion, making it less aligned with the theme and less visually engaging.

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
19
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
16
Player 2
8
Ellipses

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

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

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

Player 1
12
Player 2
10
Groups

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
8

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
24
Player 2
40
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
9
Player 2
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.