Back

SVG Drawing Match #1774

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow octopus playing cello on a cloud"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Rainbow gradient for octopus body -->
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="20%" stop-color="#ff7f00"/>
      <stop offset="40%" stop-color="#ffff00"/>
      <stop offset="60%" stop-color="#00ff00"/>
      <stop offset="80%" stop-color="#0000ff"/>
      <stop offset="100%" stop-color="#8b00ff"/>
    </linearGradient>
    <!-- Cloud gradient -->
    <radialGradient id="cloudGradient" cx="50%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#d0e9ff" stop-opacity="0.5"/>
    </radialGradient>
    <!-- Cello wood gradient -->
    <linearGradient id="woodGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#D2691E"/>
    </linearGradient>
    <!-- Octopus eye gradient -->
    <radialGradient id="eyeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
  </defs>
  
  <!-- Background sky -->
  <rect width="300" height="300" fill="#87CEEB" />
  
  <!-- Cloud -->
  <g id="cloud">
    <ellipse cx="150" cy="180" rx="80" ry="40" fill="url(#cloudGradient)" />
    <ellipse cx="110" cy="170" rx="50" ry="30" fill="url(#cloudGradient)" />
    <ellipse cx="190" cy="170" rx="50" ry="30" fill="url(#cloudGradient)" />
    <ellipse cx="150" cy="150" rx="60" ry="35" fill="url(#cloudGradient)" />
  </g>
  
  <!-- Cello -->
  <g id="cello" transform="translate(130, 160) rotate(-15)">
    <!-- Cello body -->
    <path d="M20,0 C40,10 40,50 20,60 C0,70 -10,50 0,30 C10,10 0,0 20,0 Z" fill="url(#woodGradient)" stroke="#5D3A1A" stroke-width="1"/>
    <!-- Cello neck -->
    <rect x="18" y="-50" width="4" height="50" fill="url(#woodGradient)" stroke="#5D3A1A" stroke-width="1"/>
    <!-- Cello string lines -->
    <line x1="20" y1="-50" x2="20" y2="60" stroke="#eee" stroke-width="0.5" />
    <line x1="22" y1="-50" x2="22" y2="60" stroke="#eee" stroke-width="0.5" />
    <line x1="24" y1="-50" x2="24" y2="60" stroke="#eee" stroke-width="0.5" />
  </g>
  
  <!-- Rainbow Octopus -->
  <g id="octopus" transform="translate(80,90)">
    <!-- Octopus head/body -->
    <circle cx="80" cy="40" r="30" fill="url(#rainbowGradient)" stroke="#444" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="70" cy="35" r="5" fill="url(#eyeGradient)"/>
    <circle cx="90" cy="35" r="5" fill="url(#eyeGradient)"/>
    
    <!-- Tentacles -->
    <g id="tentacles">
      <path d="M50,60 C30,80 20,110 40,130" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M60,65 C40,85 30,115 50,135" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M80,70 C70,90 65,120 85,140" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M100,70 C100,90 105,120 125,135" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M110,65 C120,85 135,115 115,135" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M90,60 C100,80 110,110 95,130" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M75,60 C65,80 55,110 65,130" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
      <path d="M80,60 C80,75 95,85 90,100" fill="none" stroke="#444" stroke-width="3" stroke-linecap="round"/>
    </g>
    
    <!-- Octopus arm playing the cello -->
    <path d="M95,55 C110,70 115,90 130,100" fill="none" stroke="url(#rainbowGradient)" stroke-width="6" stroke-linecap="round"/>
    <!-- Claw holding the cello bow -->
    <circle cx="130" cy="100" r="3" fill="#444"/>
  </g>
  
  <!-- Additional stylized details -->
  <g id="details">
    <!-- Music notes -->
    <path d="M220,80 Q225,70 230,80 T240,80" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
    <circle cx="240" cy="80" r="2" fill="#fff"/>
    <path d="M210,100 Q215,90 220,100 T230,100" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
    <circle cx="230" cy="100" r="2" fill="#fff"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: red; stop-opacity: 1" />
      <stop offset="14.28%" style="stop-color: orange; stop-opacity: 1" />
      <stop offset="28.56%" style="stop-color: yellow; stop-opacity: 1" />
      <stop offset="42.84%" style="stop-color: green; stop-opacity: 1" />
      <stop offset="57.12%" style="stop-color: blue; stop-opacity: 1" />
      <stop offset="71.4%" style="stop-color: indigo; stop-opacity: 1" />
      <stop offset="85.68%" style="stop-color: violet; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: purple; stop-opacity: 1" />
    </linearGradient>
    <pattern id="cloudPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect width="40" height="40" fill="#ffffff" />
      <circle cx="20" cy="20" r="15" fill="#ffffff" />
    </pattern>
  </defs>
  <g transform="translate(150, 150)">
    <g transform="translate(-100, -100)">
      <path d="M50,50 Q80,80 110,50 T170,50" fill="none" stroke="url(#rainbow)" stroke-width="5" />
      <path d="M50,50 Q80,20 110,50 T170,50" fill="none" stroke="url(#rainbow)" stroke-width="5" />
      <path d="M50,50 Q80,80 110,50 T170,50" fill="none" stroke="url(#rainbow)" stroke-width="5" />
    </g>
    <rect x="150" y="220" width="100" height="80" rx="40" fill="url(#cloudPattern)" />
    <g transform="translate(150, 220)">
      <rect x="0" y="0" width="100" height="80" rx="40" fill="url(#cloudPattern)" />
      <circle cx="30" cy="50" r="20" fill="url(#rainbow)" />
      <circle cx="70" cy="50" r="20" fill="url(#rainbow)" />
    </g>
    <g transform="translate(110, 160)">
      <rect x="0" y="0" width="80" height="20" rx="10" fill="url(#rainbow)" />
      <rect x="0" y="20" width="80" height="20" rx="10" fill="url(#rainbow)" />
      <rect x="0" y="40" width="80" height="20" rx="10" fill="url(#rainbow)" />
      <rect x="0" y="60" width="80" height="20" rx="10" fill="url(#rainbow)" />
    </g>
    <g transform="translate(50, 150)">
      <path d="M0,0 Q20,20 40,0 T120,0" fill="none" stroke="url(#rainbow)" stroke-width="5" />
      <path d="M0,0 Q20,-20 40,0 T120,0" fill="none" stroke="url(#rainbow)" stroke-width="5" />
    </g>
    <g transform="translate(190, 150)">
      <path d="M0,0 Q-20,20 -40,0 T-120,0" fill="none" stroke="url(#rainbow)" stroke-width="5" />
      <path d="M0,0 Q-20,-20 -40,0 T-120,0" fill="none" stroke="url(#rainbow)" stroke-width="5" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission captures the whimsical idea of a rainbow octopus playing a cello on a cloud with vibrant colors and a clear depiction of the prompt.

    The octopus is clearly recognizable with rainbow tentacles, and the cello is integrated into the design, enhancing the creative interpretation.

    Player 2's image lacks clarity and adherence to the prompt, with the octopus and cello elements less discernible.

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
27
Player 2
17
Rectangles

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

Player 1
2
Player 2
7
Circles

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

Player 1
6
Player 2
3
Ellipses

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

Player 1
4
Player 2
Lines

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

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

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

Player 1
5
Player 2
6

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
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
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
17
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
1

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
29
Player 2
21
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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