Back

SVG Drawing Match #1867

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus in a top hat juggling planets"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#003366" />
      <stop offset="100%" stop-color="#001933" />
    </radialGradient>
    
    <radialGradient id="earthGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#4BB4DE" />
      <stop offset="70%" stop-color="#2F7AC0" />
      <stop offset="100%" stop-color="#1A4B80" />
    </radialGradient>
    
    <radialGradient id="marsGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FF9966" />
      <stop offset="70%" stop-color="#E25822" />
      <stop offset="100%" stop-color="#9A3A11" />
    </radialGradient>
    
    <radialGradient id="saturnGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#E9C46A" />
      <stop offset="70%" stop-color="#D4A83C" />
      <stop offset="100%" stop-color="#B3841F" />
    </radialGradient>
    
    <linearGradient id="topHatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    
    <linearGradient id="hatBandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#CF0000" />
      <stop offset="100%" stop-color="#800000" />
    </linearGradient>
    
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
      <circle cx="30" cy="15" r="0.6" fill="white" opacity="0.6" />
      <circle cx="20" cy="30" r="1" fill="white" opacity="0.7" />
      <circle cx="40" cy="40" r="0.7" fill="white" opacity="0.7" />
      <circle cx="15" cy="45" r="0.5" fill="white" opacity="0.5" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.6" />
  
  <!-- Octopus Body -->
  <ellipse cx="150" cy="190" rx="40" ry="45" fill="#7B3F99" />
  <ellipse cx="150" cy="180" rx="35" ry="40" fill="#9A4DC0" />
  
  <!-- Octopus Face -->
  <circle cx="140" cy="175" r="6" fill="white" />
  <circle cx="160" cy="175" r="6" fill="white" />
  <circle cx="140" cy="175" r="3" fill="black" />
  <circle cx="160" cy="175" r="3" fill="black" />
  <path d="M145 190 C150 195, 155 195, 160 190" stroke="#5D2E75" stroke-width="2" fill="none" />
  
  <!-- Top Hat -->
  <path d="M150 150 L120 150 L115 130 L150 130 L185 130 L180 150 Z" fill="url(#topHatGradient)" />
  <path d="M115 130 L185 130 L180 80 L120 80 Z" fill="url(#topHatGradient)" />
  <path d="M115 125 L185 125 L185 130 L115 130 Z" fill="url(#hatBandGradient)" />
  
  <!-- Tentacles -->
  <path d="M120 200 C90 210, 70 240, 70 260 C70 270, 75 275, 80 270 C85 265, 90 250, 105 230 C120 210, 120 205, 120 200" fill="#9A4DC0" />
  <path d="M130 220 C120 245, 100 260, 90 280 C85 290, 90 295, 95 290 C105 280, 120 260, 130 230 C135 215, 135 215, 130 220" fill="#8644AD" />
  <path d="M150 220 C150 250, 140 270, 140 290 C140 295, 150 295, 150 290 C155 275, 160 250, 155 225 C153 215, 150 215, 150 220" fill="#7B3F99" />
  <path d="M170 220 C180 245, 185 260, 195 280 C200 290, 210 290, 205 280 C195 260, 185 245, 175 230 C170 225, 165 215, 170 220" fill="#8644AD" />
  <path d="M180 200 C210 210, 225 240, 230 260 C235 270, 245 270, 240 260 C230 240, 215 210, 195 200 C190 195, 175 195, 180 200" fill="#9A4DC0" />
  
  <!-- Juggling Planets with Motion Paths -->
  <!-- Earth -->
  <circle cx="90" cy="100" r="20" fill="url(#earthGradient)" filter="url(#glow)">
    <animateMotion path="M0 0 C60 -70, 120 -70, 180 0" dur="4s" repeatCount="indefinite" />
  </circle>
  <path d="M80 100 C85 95, 95 95, 100 100" fill="none" stroke="#5D9E31" stroke-width="2" opacity="0.8">
    <animateMotion path="M0 0 C60 -70, 120 -70, 180 0" dur="4s" repeatCount="indefinite" />
  </path>
  
  <!-- Mars -->
  <circle cx="150" cy="100" r="15" fill="url(#marsGradient)" filter="url(#glow)">
    <animateMotion path="M0 0 C60 -70, -60 -70, -120 0" dur="3.5s" repeatCount="indefinite" />
  </circle>
  <ellipse cx="150" cy="97" rx="5" ry="3" fill="#C64F27" opacity="0.6">
    <animateMotion path="M0 0 C60 -70, -60 -70, -120 0" dur="3.5s" repeatCount="indefinite" />
  </ellipse>
  
  <!-- Saturn -->
  <g>
    <animateMotion path="M0 0 C-60 -70, 60 -70, 120 0" dur="5s" repeatCount="indefinite" />
    <circle cx="210" cy="100" r="18" fill="url(#saturnGradient)" filter="url(#glow)" />
    <ellipse cx="210" cy="100" rx="30" ry="7" fill="none" stroke="#E9C46A" stroke-width="3" opacity="0.8" />
  </g>
  
  <!-- Sparkles around juggling -->
  <g opacity="0.8">
    <circle cx="150" cy="80" r="1" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="180" cy="70" r="1.2" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="120" cy="70" r="1" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.8s" repeatCount="indefinite" />
    </circle>
    <circle cx="100" cy="90" r="1.3" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="200" cy="90" r="1.1" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="2.2s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradHat" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#333333;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="gradBody" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff6f61;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffb74d;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="gradPlanet1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#4caf50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#81c784;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="gradPlanet2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#2196f3;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#64b5f6;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="gradPlanet3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#f44336;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ef5350;stop-opacity:1" />
    </radialGradient>
  </defs>
  <g>
    <ellipse cx="150" cy="220" rx="80" ry="40" fill="url(#gradBody)" />
    <path d="M130 200 Q110 170 130 150 Q150 130 170 150 Q190 170 170 200" fill="url(#gradBody)" />
    <ellipse cx="150" cy="130" rx="20" ry="10" fill="url(#gradBody)" />
    <ellipse cx="150" cy="90" rx="50" ry="20" fill="url(#gradHat)" />
    <rect x="135" y="85" width="30" height="15" fill="url(#gradHat)" />
    
    <circle cx="100" cy="60" r="15" fill="url(#gradPlanet1)" />
    <circle cx="175" cy="40" r="10" fill="url(#gradPlanet2)" />
    <circle cx="240" cy="70" r="12" fill="url(#gradPlanet3)" />
    <circle cx="50" cy="100" r="18" fill="url(#gradPlanet1)" />
    <circle cx="125" cy="130" r="22" fill="url(#gradPlanet2)" />
    <circle cx="220" cy="110" r="15" fill="url(#gradPlanet3)" />
    
    <path d="M150 220 C130 250, 170 250, 150 220 Z" fill="none" stroke="#000" stroke-width="4" />
    <path d="M115 190 C90 170, 110 140, 135 150 C145 160, 135 170, 115 190 Z" fill="#ffcc80" />
    <path d="M185 190 C210 170, 190 140, 165 150 C155 160, 165 170, 185 190 Z" fill="#ffcc80" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image clearly depicts an octopus wearing a top hat and juggling planets, directly adhering to the prompt.

    The character is well-defined and visually appealing with a playful expression.

    Player 2's image is more abstract and lacks the clear depiction of an octopus, making it less successful in fulfilling the prompt requirements.

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
33
Player 2
14
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
17
Player 2
6
Ellipses

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

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

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
2

Interactivity Metrics

Animations

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

Player 1
10
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 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
46
Player 2
15
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
8
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.

Similar Challenges