Back

SVG Drawing Match #105

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Unicycle-riding octopus juggling glowing stars"

SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1a237e"/>
      <stop offset="100%" stop-color="#311b92"/>
    </linearGradient>
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff80ab"/>
      <stop offset="100%" stop-color="#f50057"/>
    </radialGradient>
    <radialGradient id="starGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffff00" stop-opacity="1"/>
      <stop offset="100%" stop-color="#ffeb3b" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="wheelGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#90caf9"/>
      <stop offset="100%" stop-color="#1976d2"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <symbol id="star" viewBox="0 0 20 20">
      <polygon points="10,1 12.31,6.64 18.63,7.24 13.62,11.28 15.36,17.45 10,14 4.64,17.45 6.38,11.28 1.37,7.24 7.69,6.64" fill="url(#starGrad)"/>
    </symbol>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Unicycle -->
  <g id="unicycle">
    <circle cx="150" cy="220" r="40" fill="url(#wheelGrad)" stroke="#0d47a1" stroke-width="3"/>
    <line x1="150" y1="220" x2="150" y2="190" stroke="#0d47a1" stroke-width="3"/>
    <rect x="142" y="185" width="16" height="5" fill="#0d47a1" rx="2"/>
  </g>
  
  <!-- Octopus Head -->
  <g id="octopus">
    <ellipse cx="150" cy="170" rx="20" ry="18" fill="url(#octoGrad)" stroke="#c2185b" stroke-width="2"/>
    <circle cx="144" cy="165" r="2" fill="white"/>
    <circle cx="156" cy="165" r="2" fill="white"/>
    <circle cx="144" cy="165" r="1" fill="black"/>
    <circle cx="156" cy="165" r="1" fill="black"/>
    <path d="M143 175 Q150 180 157 175" stroke="black" fill="none" stroke-width="1" stroke-linecap="round"/>
  </g>
  
  <!-- Tentacles and Juggled Stars -->
  <g id="tentacles">
    <!-- Left Upper Tentacle -->
    <path d="M140,170 C120,150,100,140,90,120" stroke="#f06292" stroke-width="3" fill="none" stroke-linecap="round"/>
    <use href="#star" transform="translate(80,110) scale(0.8)" filter="url(#glow)"/>
    <!-- Right Upper Tentacle -->
    <path d="M160,170 C180,150,200,140,210,120" stroke="#f06292" stroke-width="3" fill="none" stroke-linecap="round"/>
    <use href="#star" transform="translate(200,110) scale(0.8)" filter="url(#glow)"/>
    <!-- Center Upper Tentacle -->
    <path d="M150,160 C150,150,150,140,155,130" stroke="#f06292" stroke-width="3" fill="none" stroke-linecap="round"/>
    <use href="#star" transform="translate(145,120) scale(0.8)" filter="url(#glow)"/>
    <!-- Left Lower Tentacle (gripping the wheel) -->
    <path d="M140,180 C130,200,120,210,130,220" stroke="#f06292" stroke-width="3" fill="none" stroke-linecap="round"/>
    <!-- Right Lower Tentacle (gripping the wheel) -->
    <path d="M160,180 C170,200,180,210,170,220" stroke="#f06292" stroke-width="3" fill="none" stroke-linecap="round"/>
  </g>
  
  <!-- Additional Juggling Stars in the Air -->
  <g id="jugglingStars">
    <use href="#star" transform="translate(50,50) scale(0.5)" filter="url(#glow)"/>
    <use href="#star" transform="translate(240,60) scale(0.5)" filter="url(#glow)"/>
    <use href="#star" transform="translate(120,30) scale(0.5)" filter="url(#glow)"/>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #1e3c72; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #2a5298; stop-opacity: 1" />
    </radialGradient>
    <radialGradient id="starGlowGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #ffd700; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: rgba(255, 215, 0, 0);" />
    </radialGradient>
    <linearGradient id="octopusGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #ff67a3; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #ff99cc; stop-opacity: 1" />
    </linearGradient>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Unicycle wheel -->
  <circle cx="150" cy="250" r="30" fill="black" stroke="gray" stroke-width="5" />
  <circle cx="150" cy="250" r="22" fill="url(#starGlowGradient)" />
  <!-- Octopus body -->
  <ellipse cx="150" cy="150" rx="45" ry="40" fill="url(#octopusGradient)" />
  <!-- Octopus legs -->
  <g fill="url(#octopusGradient)">
    <path d="M120,200 C110,240 90,250 70,240 S50,230 80,190" />
    <path d="M130,210 C125,250 105,260 85,250 S70,235 100,200" />
    <path d="M160,200 C170,240 190,250 210,240 S230,230 200,190" />
    <path d="M150,210 C155,250 175,260 195,250 S220,235 190,200" />
  </g>
  <!-- Octopus eyes -->
  <circle cx="140" cy="140" r="5" fill="white" />
  <circle cx="160" cy="140" r="5" fill="white" />
  <circle cx="139" cy="140" r="3" fill="black" />
  <circle cx="159" cy="140" r="3" fill="black" />
  <!-- Juggling stars -->
  <g>
    <circle cx="90" cy="100" r="10" fill="url(#starGlowGradient)" />
    <circle cx="210" cy="100" r="10" fill="url(#starGlowGradient)" />
    <circle cx="150" cy="40" r="10" fill="url(#starGlowGradient)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission captures the dynamic nature of the prompt with a vibrant octopus actively juggling glowing stars, which are prominently highlighted against the background.

    The composition is more visually engaging due to the contrast and the implied motion of the juggling act.

    Player 2's image, while technically sound, lacks the dynamic interaction and energy that Player 1's image conveys.

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
16
Player 2
15
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
5
Player 2
9
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
1
Player 2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
6
Player 2
4
Groups

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
3

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
6
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
12
Player 2
12
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
6
Player 2
3
Use Elements

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

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