Back

SVG Drawing Match #847

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cyberpunk octopus playing a violin"

SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00c6ff"/>
      <stop offset="100%" stop-color="#0072ff"/>
    </linearGradient>
    <radialGradient id="eyeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <linearGradient id="violinGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff416c"/>
      <stop offset="100%" stop-color="#ff4b2b"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Octopus Body -->
  <ellipse cx="150" cy="150" rx="60" ry="40" fill="url(#bodyGradient)" filter="url(#glow)"/>
  
  <!-- Eyes -->
  <circle cx="130" cy="140" r="8" fill="url(#eyeGradient)"/>
  <circle cx="170" cy="140" r="8" fill="url(#eyeGradient)"/>
  <circle cx="133" cy="138" r="3" fill="#000"/>
  <circle cx="173" cy="138" r="3" fill="#000"/>
  
  <!-- Violin -->
  <path d="M150 100 Q160 130 150 160 Q140 130 150 100Z" fill="url(#violinGradient)" stroke="#000" stroke-width="2"/>
  <line x1="150" y1="100" x2="150" y2="160" stroke="#000" stroke-width="2"/>
  <circle cx="150" cy="130" r="4" fill="#000"/>
  
  <!-- Tentacles -->
  <g>
    <path d="M90 180 Q80 220 100 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
    <path d="M110 180 Q100 220 120 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
    <path d="M130 180 Q120 220 140 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
    <path d="M170 180 Q160 220 180 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
    <path d="M190 180 Q180 220 200 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
    <path d="M210 180 Q200 220 220 250" fill="none" stroke="#00fff9" stroke-width="4" stroke-linecap="round" filter="url(#glow)"/>
  </g>
  
  <!-- Details on Body -->
  <circle cx="150" cy="150" r="50" fill="none" stroke="#00aaff" stroke-width="2" opacity="0.3"/>
  <circle cx="150" cy="150" r="30" fill="none" stroke="#00aaff" stroke-width="2" opacity="0.3"/>
  
  <!-- Background Elements -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bodyGradient)" opacity="0.1"/>
  
</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="bgGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#0E0C21" />
      <stop offset="100%" stop-color="#1D1A29" />
    </linearGradient>
    <linearGradient id="octopusGradient" x1="0" y1="1" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF0099" />
      <stop offset="100%" stop-color="#00BFFF" />
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feFlood flood-color="#00FFAB" result="flood" />
      <feComposite in="flood" in2="SourceAlpha" operator="in" />
      <feGaussianBlur stdDeviation="8" result="blur" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  
  <rect width="100%" height="100%" fill="url(#bgGradient)" />
  
  <g filter="url(#glow)">
    <path d="M150 250 C140 230, 120 220, 100 180 C80 140, 90 100, 130 100 C110 70, 160 50, 150 10 C140 50, 190 70, 170 100 C200 120, 210 140, 180 180 C160 220, 150 230, 150 250 Z" fill="url(#octopusGradient)" />
    <path d="M135 90 Q150 80, 170 90 Q150 100, 135 90 Z" fill="url(#octopusGradient)" />
    <path d="M115 110 Q130 120, 150 110 Q130 130, 115 110 Z" fill="url(#octopusGradient)" />
    
    <!-- Tentacles -->
    <path d="M150 250 Q145 235, 130 230 Q120 215, 115 210" fill="none" stroke="#00FFAB" stroke-width="10" />
    <path d="M140 240 Q138 225, 125 223 Q112 210, 110 205" fill="none" stroke="#00FFAB" stroke-width="10" />
    <path d="M158 250 Q160 235, 175 230 Q185 215, 190 210" fill="none" stroke="#00FFAB" stroke-width="10" />
    <path d="M168 240 Q170 225, 185 223 Q198 210, 200 205" fill="none" stroke="#00FFAB" stroke-width="10" />
    
    <!-- Violin -->
    <rect x="170" y="130" width="50" height="140" fill="#8B4513" rx="5"/>
    <ellipse cx="195" cy="130" rx="25" ry="5" fill="black" />
    <rect x="185" y="220" width="5" height="30" fill="#D2691E" />
    
    <!-- Strings -->
    <line x1="190" y1="130" x2="190" y2="270" stroke="white" stroke-width="1" />
    <line x1="180" y1="130" x2="180" y2="270" stroke="white" stroke-width="1" />
    <line x1="200" y1="130" x2="200" y2="270" stroke="white" stroke-width="1" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission features a clear representation of an octopus with a cyberpunk aesthetic, utilizing glowing elements and a futuristic color palette.

    The depiction is abstract yet identifiable, adhering well to the prompt.

    While Player 2's image is creative, it lacks clear connection to the octopus theme and violin element, making Player 1's work more cohesive and prompt-appropriate.

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
17
Player 2
14
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
7
Player 2
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
3
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
7
Player 2
7
Groups

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

Player 1
1
Player 2
1

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
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
9

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

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
28
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
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