Back

SVG Drawing Match #1855

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets in space"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(10,10,40);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(255,85,85);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(170,0,0);stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(85,255,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,85,170);stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(85,255,85);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,170,0);stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#spaceGradient)" />
  <!-- Octopus Body -->
  <ellipse cx="150" cy="180" rx="30" ry="40" fill="purple" />
  <!-- Octopus Eyes -->
  <circle cx="140" cy="160" r="5" fill="white" />
  <circle cx="160" cy="160" r="5" fill="white" />
  <circle cx="140" cy="160" r="2" fill="black" />
  <circle cx="160" cy="160" r="2" fill="black" />
  <!-- Octopus Tentacles -->
  <path d="M150,200 C170,210 190,230 185,260 Q170,270 150,250" fill="purple" />
  <path d="M150,200 C130,210 110,230 115,260 Q130,270 150,250" fill="purple" />
  <path d="M150,200 C150,220 200,280 220,260 Q210,240 190,210" fill="purple" />
  <path d="M150,200 C150,220 100,280 80,260 Q90,240 110,210" fill="purple" />
  <!-- Planets -->
  <circle cx="80" cy="80" r="20" fill="url(#planetGradient1)" />
  <circle cx="230" cy="60" r="15" fill="url(#planetGradient2)" />
  <circle cx="200" cy="180" r="25" fill="url(#planetGradient3)" />
  <circle cx="50" cy="200" r="18" fill="url(#planetGradient1)" />
  <circle cx="250" cy="230" r="20" fill="url(#planetGradient2)" />
  <!-- Stars -->
  <circle cx="20" cy="40" r="1.5" fill="white" />
  <circle cx="280" cy="40" r="2" fill="white" />
  <circle cx="50" cy="160" r="1" fill="white" />
  <circle cx="270" cy="190" r="1" fill="white" />
  <circle cx="150" cy="20" r="3" fill="white" />
  <circle cx="180" cy="280" r="1.5" fill="white" />
</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="planet1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFCB77;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#D69F32;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#4BBF77;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2C7A52;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#B23A3A;stop-opacity:1" />
    </radialGradient>
    <style>
      .octopus { fill: rgba(50, 50, 150, 0.7); }
      .tentacle { fill: rgba(100, 100, 220, 0.7); }
      .space { fill: black; }
    </style>
  </defs>

  <rect class="space" width="300" height="300"/>
  
  <g transform="translate(150, 150)">
    <path class="octopus" d="M-30-30 Q-50-40 -60-10 Q-80 20 -50 50 Q-20 80 0 50 Q20 80 50 50 Q80 20 60-10 Q50-40 30-30 Z" />
    <path class="tentacle" d="M-50 50 C-70 40 -80 70 -60 90" />
    <path class="tentacle" d="M50 50 C70 40 80 70 60 90" />
    <path class="tentacle" d="M-50 -50 C-70 -40 -80 -70 -60 -90" />
    <path class="tentacle" d="M50 -50 C70 -40 80 -70 60 -90" />
  </g>

  <circle cx="120" cy="80" r="20" fill="url(#planet1)" />
  <circle cx="50" cy="10" r="25" fill="url(#planet2)" />
  <circle cx="180" cy="150" r="30" fill="url(#planet3)" />
  <circle cx="50" cy="240" r="15" fill="url(#planet1)" />
  
  <g transform="scale(1.5)">
    <circle cx="120" cy="80" r="20" fill="url(#planet1)" />
    <circle cx="50" cy="10" r="25" fill="url(#planet2)" />
    <circle cx="180" cy="150" r="30" fill="url(#planet3)" />
    <circle cx="50" cy="240" r="15" fill="url(#planet1)" />
  </g>

  <circle cx="150" cy="150" r="120" fill="none" stroke="white" stroke-width="1" opacity="0.2"/>
  <circle cx="150" cy="150" r="90" fill="none" stroke="white" stroke-width="1" opacity="0.2"/>
  <circle cx="150" cy="150" r="60" fill="none" stroke="white" stroke-width="1" opacity="0.2"/>
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image effectively conveys the idea of an octopus juggling planets in space with clear, recognizable forms and bright, contrasting colors.

    The octopus is central and easily identifiable, and the planets are well-distributed around it, enhancing the sense of juggling.

    Player 2's image, while creative, is less clear and visually confusing, making it difficult to discern the octopus and the concept of juggling.

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
21
Player 2
17
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
15
Player 2
11
Ellipses

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
1

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
12
Player 2
16
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

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