Back

SVG Drawing Match #2577

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling glowing lanterns under a starry sky."

SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#001a33"/>
      <stop offset="100%" stop-color="#000014"/>
    </radialGradient>
    <radialGradient id="lanternGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff8cc"/>
      <stop offset="100%" stop-color="#ff9f1c"/>
    </radialGradient>
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="60%">
      <stop offset="0%" stop-color="#8a00d4"/>
      <stop offset="100%" stop-color="#2d004b"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGrad)"/>
  <!-- Stars -->
  <g fill="#fff" opacity="0.8">
    <circle cx="20" cy="30" r="1.5"/>
    <circle cx="55" cy="60" r="1"/>
    <circle cx="90" cy="25" r="1.2"/>
    <circle cx="130" cy="50" r="1"/>
    <circle cx="170" cy="20" r="1.7"/>
    <circle cx="210" cy="45" r="1"/>
    <circle cx="250" cy="15" r="1.3"/>
    <circle cx="280" cy="60" r="1"/>
    <circle cx="45" cy="120" r="1.2"/>
    <circle cx="80" cy="150" r="1"/>
    <circle cx="120" cy="110" r="1.5"/>
    <circle cx="160" cy="140" r="1"/>
    <circle cx="200" cy="100" r="1.2"/>
    <circle cx="240" cy="130" r="1"/>
    <circle cx="280" cy="110" r="1"/>
  </g>
  <!-- Lanterns -->
  <g filter="url(#glow)">
    <g transform="translate(60,100)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
    <g transform="translate(100,40)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
    <g transform="translate(150,30)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
    <g transform="translate(200,60)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
    <g transform="translate(240,120)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
    <g transform="translate(220,180)">
      <circle cx="0" cy="0" r="12" fill="url(#lanternGrad)"/>
      <rect x="-2" y="12" width="4" height="8" fill="#b55200"/>
    </g>
  </g>
  <!-- Octopus -->
  <g stroke-linecap="round" stroke-linejoin="round">
    <!-- Tentacles -->
    <path d="M150,195 C130,220 90,200 70,240" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C170,230 210,220 230,260" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C110,240 140,280 100,290" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C190,260 240,250 260,290" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C120,180 80,160 60,140" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C180,170 210,150 240,130" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C135,160 115,140 95,120" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <path d="M150,195 C165,160 185,140 205,120" stroke="url(#octoGrad)" stroke-width="10" fill="none"/>
    <!-- Body -->
    <circle cx="150" cy="170" r="40" fill="url(#octoGrad)" stroke="#32104e" stroke-width="2"/>
    <!-- Eyes -->
    <g fill="#fff">
      <circle cx="135" cy="160" r="8"/>
      <circle cx="165" cy="160" r="8"/>
      <circle cx="135" cy="160" r="4" fill="#000"/>
      <circle cx="165" cy="160" r="4" fill="#000"/>
    </g>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#00112c" />
      <stop offset="100%" stop-color="#00061a" />
    </radialGradient>
    <radialGradient id="lanternGlow" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="100%" stop-color="#ff6600" stop-opacity="0" />
    </radialGradient>
    <pattern id="starPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.6" />
  <circle cx="150" cy="100" r="20" fill="url(#lanternGlow)" />
  <circle cx="100" cy="150" r="20" fill="url(#lanternGlow)" />
  <circle cx="200" cy="150" r="20" fill="url(#lanternGlow)" />
  <path d="M150,200 C150,200 120,180 130,140 C140,100 160,100 170,140 C180,180 150,200 150,200 Z" fill="#4b0082" />
  <path d="M150,200 C150,200 180,180 170,140 C160,100 140,100 130,140 C120,180 150,200 150,200 Z" fill="#800080" />
  <path d="M150,200 C150,200 130,220 140,260 C150,300 160,300 160,260 C170,220 150,200 150,200 Z" fill="#4b0082" />
  <path d="M150,200 C150,200 170,220 160,260 C150,300 140,300 140,260 C130,220 150,200 150,200 Z" fill="#800080" />
  <circle cx="150" cy="200" r="50" fill="#483d8b" />
  <circle cx="150" cy="200" r="40" fill="#6a5acd" />
  <circle cx="150" cy="200" r="30" fill="#7b68ee" />
  <circle cx="150" cy="200" r="20" fill="#9370db" />
  <circle cx="150" cy="200" r="10" fill="#ba55d3" />
  <path d="M150,200 C150,200 120,180 130,140 C140,100 160,100 170,140 C180,180 150,200 150,200 Z" fill="#4b0082" opacity="0.5" />
  <path d="M150,200 C150,200 180,180 170,140 C160,100 140,100 130,140 C120,180 150,200 150,200 Z" fill="#800080" opacity="0.5" />
  <path d="M150,200 C150,200 130,220 140,260 C150,300 160,300 160,260 C170,220 150,200 150,200 Z" fill="#4b0082" opacity="0.5" />
  <path d="M150,200 C150,200 170,220 160,260 C150,300 140,300 140,260 C130,220 150,200 150,200 Z" fill="#800080" opacity="0.5" />
  <circle cx="150" cy="200" r="50" fill="#483d8b" opacity="0.5" />
  <circle cx="150" cy="200" r="40" fill="#6a5acd" opacity="0.5" />
  <circle cx="150" cy="200" r="30" fill="#7b68ee" opacity="0.5" />
  <circle cx="150" cy="200" r="20" fill="#9370db" opacity="0.5" />
  <circle cx="150" cy="200" r="10" fill="#ba55d3" opacity="0.5" />
</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 adheres more closely to the prompt, featuring a recognizable octopus juggling glowing lanterns under a starry sky.

    The composition is clear, colorful, and visually appealing, while Player 2's abstract approach lacks clarity and does not strongly convey the prompt's concept of an octopus juggling lanterns.

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
41
Player 2
24
Rectangles

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

Player 1
7
Player 2
2
Circles

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

Player 1
26
Player 2
14
Ellipses

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

Player 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
8
Player 2
8
Groups

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

Player 1
10
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
12

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
16
Player 2
40
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
4
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