Back

SVG Drawing Match #2227

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets in outer space."

SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#0d0d28"/>
      <stop offset="100%" stop-color="#000010"/>
    </radialGradient>
    <radialGradient id="tentacleGrad" cx="50%" cy="0%" r="100%">
      <stop offset="0%" stop-color="#9b59b6"/>
      <stop offset="100%" stop-color="#8e44ad"/>
    </radialGradient>
    <radialGradient id="planetBlue" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#85c1e9"/>
      <stop offset="100%" stop-color="#2874a6"/>
    </radialGradient>
    <radialGradient id="planetOrange" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#f7dc6f"/>
      <stop offset="100%" stop-color="#d68910"/>
    </radialGradient>
    <radialGradient id="planetGreen" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#abebc6"/>
      <stop offset="100%" stop-color="#28b463"/>
    </radialGradient>
    <radialGradient id="planetRed" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#f1948a"/>
      <stop offset="100%" stop-color="#c0392b"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGrad)"/>
  <g fill="#fff">
    <circle cx="30" cy="45" r="1.5" opacity="0.8"/>
    <circle cx="75" cy="120" r="1" opacity="0.6"/>
    <circle cx="200" cy="20" r="1.2" opacity="0.7"/>
    <circle cx="250" cy="80" r="1" opacity="0.5"/>
    <circle cx="180" cy="150" r="1.7" opacity="0.9"/>
    <circle cx="50" cy="200" r="1.3" opacity="0.7"/>
    <circle cx="280" cy="230" r="1" opacity="0.6"/>
    <circle cx="120" cy="260" r="1.5" opacity="0.8"/>
    <circle cx="220" cy="270" r="1.2" opacity="0.7"/>
    <circle cx="300" cy="50" r="1" opacity="0.5"/>
  </g>
  <g>
    <g>
      <circle cx="60" cy="60" r="15" fill="url(#planetBlue)"/>
      <ellipse cx="60" cy="60" rx="20" ry="6" fill="none" stroke="#85c1e9" stroke-width="2" transform="rotate(-20 60 60)"/>
    </g>
    <g>
      <circle cx="240" cy="80" r="12" fill="url(#planetOrange)"/>
      <ellipse cx="240" cy="80" rx="18" ry="5" fill="none" stroke="#f7dc6f" stroke-width="2" transform="rotate(30 240 80)"/>
    </g>
    <g>
      <circle cx="120" cy="110" r="10" fill="url(#planetGreen)"/>
      <ellipse cx="120" cy="110" rx="14" ry="4" fill="none" stroke="#abebc6" stroke-width="1.5" transform="rotate(15 120 110)"/>
    </g>
    <g>
      <circle cx="200" cy="50" r="8" fill="url(#planetRed)"/>
      <ellipse cx="200" cy="50" rx="12" ry="3" fill="none" stroke="#f1948a" stroke-width="1.2" transform="rotate(-10 200 50)"/>
    </g>
  </g>
  <g fill="none" stroke="#fff" stroke-opacity="0.5" stroke-width="1" stroke-dasharray="4">
    <path d="M150,210 C150,140 60,90 60,60"/>
    <path d="M160,210 C200,160 230,110 240,80"/>
    <path d="M145,215 C130,180 110,130 120,110"/>
    <path d="M155,215 C175,170 190,100 200,50"/>
  </g>
  <g id="octopus">
    <g id="tentacles">
      <path d="M130,200 C100,220 90,260 110,270 C130,280 140,250 125,235" fill="url(#tentacleGrad)"/>
      <path d="M140,202 C110,225 100,265 120,275 C140,285 155,255 140,240" fill="url(#tentacleGrad)"/>
      <path d="M150,204 C120,225 130,260 150,270 C170,280 165,250 155,235" fill="url(#tentacleGrad)"/>
      <path d="M160,202 C140,220 150,255 170,265 C190,275 185,245 165,230" fill="url(#tentacleGrad)"/>
      <path d="M170,200 C150,220 160,255 180,270 C200,285 195,250 175,235" fill="url(#tentacleGrad)"/>
      <path d="M120,195 C90,215 80,255 100,265 C120,275 125,240 110,225" fill="url(#tentacleGrad)"/>
      <path d="M180,195 C160,215 170,255 190,265 C210,275 205,240 190,225" fill="url(#tentacleGrad)"/>
      <path d="M150,205 C140,230 130,255 150,260 C170,265 180,240 160,225" fill="url(#tentacleGrad)"/>
    </g>
    <ellipse cx="150" cy="180" rx="40" ry="35" fill="url(#tentacleGrad)"/>
    <ellipse cx="135" cy="175" rx="6" ry="8" fill="#fff"/>
    <ellipse cx="165" cy="175" rx="6" ry="8" fill="#fff"/>
    <circle cx="135" cy="177" r="3" fill="#000"/>
    <circle cx="165" cy="177" r="3" fill="#000"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with radial gradient for space effect -->
  <defs>
    <radialGradient id="spaceGradient" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#1a1a4a"/>
      <stop offset="1" stop-color="#000"/>
    </radialGradient>
    
    <!-- Filter for planet glow -->
    <filter id="planetGlow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <!-- Star pattern -->
    <pattern id="stars" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
      <rect width="100%" height="100%" fill="white" opacity="0.1"/>
      <circle cx="50%" cy="50%" r="1" fill="white"/>
      <circle cx="20%" cy="30%" r="1" fill="white"/>
      <circle cx="80%" cy="70%" r="1" fill="white"/>
      <!-- More stars could be added here -->
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="100%" height="100%" fill="url(#spaceGradient)"/>

  <!-- Stars layer -->
  <rect width="100%" height="100%" fill="url(#stars)"/>

  <!-- Central octopus body -->
  <g transform="translate(150,150)">
    <!-- Octopus body with gradient -->
    <ellipse cx="0" cy="0" rx="30" ry="25" fill="url(#spaceGradient)" opacity="0.8">
      <animate attributeName="opacity" from="0.8" to="1" dur="2s" repeatCount="indefinite"/>
    </ellipse>
    
    <!-- Tentacles -->
    <path d="M0,25 Q-40,40 -70,45 L-70,60 Q-40,70 0,75 L0,80" 
          stroke="#4b2e83" stroke-width="8" fill="none" opacity="0.9"/>
    <path d="M0,-25 Q-30,-40 -50,-50 L-50,-60 Q-30,-70 0,-75 L0,-80" 
          stroke="#4b2e83" stroke-width="8" fill="none" opacity="0.9"/>
    <!-- Add more tentacle paths here -->
  </g>

  <!-- Planets being juggled -->
  <g transform="rotate(30 150,150)">
    <!-- Planet 1 -->
    <circle cx="100" cy="100" r="15" fill="#ff6b6b" stroke="#ff5252" stroke-width="2" filter="url(#planetGlow)"/>
    <!-- Planet 2 -->
    <circle cx="200" cy="100" r="15" fill="#4ecdc4" stroke="#45b7b0" stroke-width="2" filter="url(#planetGlow)"/>
    <!-- Planet 3 -->
    <circle cx="150" cy="200" r="15" fill="#ffe66d" stroke="#ffd966" stroke-width="2" filter="url(#planetGlow)"/>
  </g>

  <!-- Motion lines -->
  <path d="M100,100 Q150,150 200,100" stroke="#4b2e83" stroke-width="2" opacity="0.5"/>
  <path d="M200,100 Q250,150 150,200" stroke="#4b2e83" stroke-width="2" opacity="0.5"/>
  <path d="M150,200 Q100,250 100,150" stroke="#4b2e83" stroke-width="2" opacity="0.5"/>

  <!-- Shooting star effect -->
  <path d="M50,50 L70,60 L90,40 L110,50" fill="none" stroke="#fff" stroke-width="2">
    <linearGradient gradientUnits="userSpaceOnUse" x1="50" y1="50" x2="110" y2="50">
      <stop offset="0" stop-color="#fff"/>
      <stop offset="1" stop-color="#888"/>
    </linearGradient>
  </path>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission clearly depicts an octopus juggling planets in outer space, adhering closely to the prompt with a charming and whimsical design.

    The technical quality and composition are clean, with vibrant colors and a recognizable octopus figure.

    Player 2's submission is abstract and visually interesting but lacks clear adherence to the prompt, making it less effective in conveying the idea of an octopus juggling planets.

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
36
Player 2
16
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
16
Player 2
6
Ellipses

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

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

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

Player 1
9
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
12

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
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
32
Player 2
20
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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