Back

SVG Drawing Match #526

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot octopus knitting cosmic yarn with starfish needles"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
    </linearGradient>
    <pattern id="starfish" patternUnits="userSpaceOnUse" width="50" height="50">
      <path d="M 25 0 A 25 25 0 0 1 50 25 L 35 35 A 15 15 0 0 0 25 50 L 15 35 A 15 15 0 0 0 5 25 Z" fill="url(#grad1)" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad2)" />
  <g transform="translate(150 150)">
    <g transform="rotate(-45)">
      <path d="M -75 0 a 75 75 0 1 1 150 0" fill="none" stroke="url(#grad1)" stroke-width="10" />
    </g>
    <g transform="translate(-50 0)">
      <circle cx="0" cy="0" r="20" fill="url(#grad1)" />
      <path d="M -20 0 a 20 20 0 1 1 40 0" fill="none" stroke="url(#grad2)" stroke-width="5" />
    </g>
    <g transform="translate(50 0)">
      <circle cx="0" cy="0" r="20" fill="url(#grad1)" />
      <path d="M -20 0 a 20 20 0 1 1 40 0" fill="none" stroke="url(#grad2)" stroke-width="5" />
    </g>
    <g transform="rotate(45)">
      <rect x="-10" y="-10" width="20" height="20" fill="url(#starfish)" />
    </g>
    <g transform="rotate(-45)">
      <rect x="-10" y="-10" width="20" height="20" fill="url(#starfish)" />
    </g>
    <path d="M -75 0 C -50 50 50 50 75 0" fill="none" stroke="url(#grad1)" stroke-width="10" stroke-dasharray="10 10" />
    <path d="M 75 0 C 50 -50 -50 -50 -75 0" fill="none" stroke="url(#grad1)" stroke-width="10" stroke-dasharray="10 10" />
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cosmicGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF66FF"/>
      <stop offset="50%" stop-color="#66CCFF"/>
      <stop offset="100%" stop-color="#000033"/>
    </radialGradient>
    <linearGradient id="robotMetal" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#CCCCCC"/>
      <stop offset="100%" stop-color="#666666"/>
    </linearGradient>
    <pattern id="yarnPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="none"/>
      <path d="M0,0 L10,10 M10,0 L0,10" stroke="#ffffff" stroke-width="0.5"/>
    </pattern>
  </defs>
  <!-- Background: cosmic space -->
  <rect width="300" height="300" fill="url(#cosmicGradient)"/>
  
  <!-- Yarn ball as cosmic yarn ball -->
  <g id="yarnBall">
    <circle cx="220" cy="80" r="25" fill="url(#yarnPattern)" stroke="#fff" stroke-width="1"/>
    <path d="M195,80 A25,25 0 0,1 245,80" fill="none" stroke="#fff" stroke-width="1"/>
    <path d="M220,55 A25,25 0 0,1 220,105" fill="none" stroke="#fff" stroke-width="1" />
  </g>
  
  <!-- Starfish needles -->
  <g id="needles">
    <!-- First Starfish Needle -->
    <g transform="translate(180, 210) scale(0.6)">
      <path d="M10,0 L12,6 L18,6 L13,10 L15,16 L10,12 L5,16 L7,10 L2,6 L8,6 Z" fill="#FFCC00" stroke="#CC9900" stroke-width="1"/>
    </g>
    <!-- Second Starfish Needle -->
    <g transform="translate(240, 210) scale(0.6) rotate(20)">
      <path d="M10,0 L12,6 L18,6 L13,10 L15,16 L10,12 L5,16 L7,10 L2,6 L8,6 Z" fill="#FFCC00" stroke="#CC9900" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Robot Octopus Body -->
  <g id="robotOctopus" transform="translate(90, 120)">
    <!-- Robot head (upper body) -->
    <rect x="40" y="0" width="60" height="40" rx="8" ry="8" fill="url(#robotMetal)" stroke="#333" stroke-width="2"/>
    <circle cx="70" cy="20" r="5" fill="#00FFFF" stroke="#006666" stroke-width="1"/>
    <circle cx="90" cy="20" r="5" fill="#00FFFF" stroke="#006666" stroke-width="1"/>
    <rect x="57" y="30" width="26" height="5" fill="#333"/>
    
    <!-- Octopus arms knitting cosmic yarn -->
    <g id="tentacles">
      <!-- Left tentacle -->
      <path d="M50,40 C30,60 30,90 50,110" fill="none" stroke="url(#robotMetal)" stroke-width="6" stroke-linecap="round"/>
      <!-- Knitting action: yarn thread from the tentacle -->
      <path d="M50,110 Q55,115 60,110 T70,110" fill="none" stroke="#FFD700" stroke-width="3"/>
      <!-- Right tentacle -->
      <path d="M100,40 C120,60 120,90 100,110" fill="none" stroke="url(#robotMetal)" stroke-width="6" stroke-linecap="round"/>
      <path d="M100,110 Q95,115 90,110 T80,110" fill="none" stroke="#FFD700" stroke-width="3"/>
      <!-- Additional curvy tentacles -->
      <path d="M70,40 C60,70 40,80 50,110" fill="none" stroke="url(#robotMetal)" stroke-width="6" stroke-linecap="round"/>
      <path d="M70,110 Q75,115 80,110 T90,110" fill="none" stroke="#FFD700" stroke-width="3"/>
      <path d="M80,40 C90,70 110,80 100,110" fill="none" stroke="url(#robotMetal)" stroke-width="6" stroke-linecap="round"/>
      <path d="M100,110 Q95,115 90,110 T85,110" fill="none" stroke="#FFD700" stroke-width="3"/>
    </g>
    
    <!-- Robot octopus "legs": additional mechanical details -->
    <g id="robotDetails">
      <!-- Cogs and circuits on the head -->
      <circle cx="70" cy="20" r="3" fill="#FFD700"/>
      <circle cx="90" cy="20" r="3" fill="#FFD700"/>
      <line x1="70" y1="20" x2="90" y2="20" stroke="#FFD700" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Yarn thread from head to yarn ball (implying knitting) -->
  <path d="M120,100 C150,50 190,50 220,105" fill="none" stroke="#FFD700" stroke-width="4" stroke-linecap="round" stroke-dasharray="5,5"/>
  
  <!-- Additional cosmic details -->
  <circle cx="50" cy="30" r="2" fill="#fff"/>
  <circle cx="250" cy="40" r="1.5" fill="#fff"/>
  <circle cx="150" cy="10" r="2" fill="#fff"/>
  <circle cx="280" cy="150" r="1" fill="#fff"/>
  <circle cx="30" cy="200" r="1.5" fill="#fff"/>
  <circle cx="260" cy="260" r="2" fill="#fff"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image effectively captures the concept of a 'robot octopus knitting cosmic yarn with starfish needles' with a clear depiction of a mechanical octopus and cosmic elements.

    The technical quality is high, with a strong use of color and composition that enhances the theme.

    In contrast, Player 1's image lacks clarity and specific elements related to the prompt, making it less aligned with the given idea.

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
11
Player 2
30
Rectangles

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

Player 1
3
Player 2
4
Circles

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

Player 1
2
Player 2
11
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
1
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
6
Player 2
14
Groups

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

Player 1
6
Player 2
7

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

Player 1
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
5
Player 2
19

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
Player 2
13

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
3

Complexity Metrics

Path Commands

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

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