Back

SVG Drawing Match #1897

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus knitting a scarf underwater, surrounded by playful seahorses"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="oceanGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#4facfe"/>
      <stop offset="100%" stop-color="#00f2fe"/>
    </linearGradient>
    <radialGradient id="octopusGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="100%" stop-color="#D44134"/>
    </radialGradient>
    <linearGradient id="seahorseGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </linearGradient>
    <pattern id="knitPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0 0 L10 10 M10 0 L0 10" stroke="#ffffff" stroke-width="1"/>
    </pattern>
    <radialGradient id="bubbleGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.7"/>
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
    </radialGradient>
  </defs>
  <!-- Ocean Background -->
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  
  <!-- Scarf -->
  <g transform="translate(120, 180)">
    <rect x="0" y="0" width="60" height="10" fill="url(#knitPattern)" />
    <rect x="0" y="15" width="60" height="10" fill="url(#knitPattern)" />
    <rect x="0" y="30" width="60" height="10" fill="url(#knitPattern)" />
    <rect x="0" y="45" width="60" height="10" fill="url(#knitPattern)" />
  </g>
  
  <!-- Octopus Body -->
  <g id="octopus" transform="translate(150, 150)">
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#octopusGradient)" />
    <!-- Eyes -->
    <circle cx="-10" cy="-10" r="5" fill="#ffffff"/>
    <circle cx="10" cy="-10" r="5" fill="#ffffff"/>
    <circle cx="-10" cy="-10" r="2" fill="#000000"/>
    <circle cx="10" cy="-10" r="2" fill="#000000"/>
    <!-- Tentacles -->
    <path d="M-15,20 Q-30,40 -15,60" stroke="url(#octopusGradient)" stroke-width="5" fill="none"/>
    <path d="M-5,25 Q-20,45 -5,65" stroke="url(#octopusGradient)" stroke-width="5" fill="none"/>
    <path d="M5,20 Q20,40 5,60" stroke="url(#octopusGradient)" stroke-width="5" fill="none"/>
    <path d="M15,25 Q30,45 15,65" stroke="url(#octopusGradient)" stroke-width="5" fill="none"/>
    <!-- Knitting Needles -->
    <line x1="-10" y1="30" x2="-50" y2="10" stroke="#8B4513" stroke-width="2"/>
    <line x1="10" y1="30" x2="50" y2="10" stroke="#8B4513" stroke-width="2"/>
    <!-- Yarn Ball -->
    <circle cx="0" cy="30" r="8" fill="#FFC0CB"/>
  </g>
  
  <!-- Seahorses -->
  <g id="seahorses">
    <!-- Seahorse 1 -->
    <g transform="translate(80, 80)">
      <path d="M0,0 C10,-20 30,-20 40,0 S30,20 20,20 C15,20 10,15 5,10 C0,5 0,0 0,0" fill="url(#seahorseGradient)" />
      <circle cx="10" cy="-10" r="3" fill="#000000"/>
    </g>
    <!-- Seahorse 2 -->
    <g transform="translate(220, 60)">
      <path d="M0,0 C-10,-15 -25,-15 -35,0 S-25,15 -15,15 C-10,15 -5,10 0,5 C5,0 5,0 0,0" fill="url(#seahorseGradient)" />
      <circle cx="-10" cy="-8" r="3" fill="#000000"/>
    </g>
    <!-- Seahorse 3 -->
    <g transform="translate(100, 220)">
      <path d="M0,0 C15,-25 35,-25 45,0 S35,25 25,25 C20,25 15,20 10,15 C5,10 5,0 0,0" fill="url(#seahorseGradient)" />
      <circle cx="15" cy="-12" r="3" fill="#000000"/>
    </g>
    <!-- Seahorse 4 -->
    <g transform="translate(220, 200)">
      <path d="M0,0 C-15,-20 -35,-20 -45,0 S-35,20 -25,20 C-20,20 -15,15 -10,10 C-5,5 -5,0 0,0" fill="url(#seahorseGradient)" />
      <circle cx="-15" cy="-10" r="3" fill="#000000"/>
    </g>
  </g>
  
  <!-- Bubbles -->
  <circle cx="250" cy="50" r="5" fill="url(#bubbleGradient)" />
  <circle cx="280" cy="120" r="8" fill="url(#bubbleGradient)" />
  <circle cx="30" cy="200" r="4" fill="url(#bubbleGradient)" />
  <circle cx="60" cy="270" r="6" fill="url(#bubbleGradient)" />
  
  <!-- Sea Plants -->
  <g id="seaPlants">
    <path d="M50,300 C45,250 55,200 50,150" stroke="#228B22" stroke-width="4" fill="none"/>
    <path d="M80,300 C75,240 85,180 80,120" stroke="#2E8B57" stroke-width="3" fill="none"/>
    <path d="M20,300 C15,260 25,220 20,180" stroke="#3CB371" stroke-width="4" fill="none"/>
  </g>
  
  <!-- Light Rays -->
  <g opacity="0.3">
    <path d="M0,0 L150,150" stroke="#ffffff" stroke-width="2" />
    <path d="M300,0 L150,150" stroke="#ffffff" stroke-width="2" />
    <path d="M0,300 L150,150" stroke="#ffffff" stroke-width="2" />
    <path d="M300,300 L150,150" stroke="#ffffff" stroke-width="2" />
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#ocean)" />

  <!-- Ocean gradient -->
  <linearGradient id="ocean" x1="0" y1="0" x2="0" y2="300">
    <stop offset="0%" stop-color="#34A8FF" />
    <stop offset="50%" stop-color="#007bff" />
    <stop offset="100%" stop-color="#032B44" />
  </linearGradient>

  <!-- Octopus -->
  <g transform="translate(150, 150)">
    <!-- Body -->
    <circle cx="0" cy="0" r="40" fill="#FFC080" />
    <!-- Tentacles -->
    <path d="M 0 40 L 30 60 L 60 40 Z" fill="#FFC080" transform="rotate(45)" />
    <path d="M 0 40 L -30 60 L -60 40 Z" fill="#FFC080" transform="rotate(-45)" />
    <path d="M 0 40 L 30 -60 L 60 40 Z" fill="#FFC080" transform="rotate(135)" />
    <path d="M 0 40 L -30 -60 L -60 40 Z" fill="#FFC080" transform="rotate(-135)" />
    <!-- Eyes -->
    <circle cx="-10" cy="-10" r="5" fill="#FFFFFF" />
    <circle cx="10" cy="-10" r="5" fill="#FFFFFF" />
    <!-- Knitting needles -->
    <rect x="-20" y="-30" width="10" height="40" fill="#FF69B4" rx="2" />
    <rect x="10" y="-30" width="10" height="40" fill="#FF69B4" rx="2" />
  </g>

  <!-- Seahorses -->
  <g transform="translate(100, 100)">
    <!-- Seahorse 1 -->
    <path d="M 0 0 L 20 30 L 40 0 Z" fill="#FFC0CB" />
    <circle cx="20" cy="30" r="5" fill="#FFFFFF" />
    <!-- Seahorse 2 -->
    <path d="M 50 0 L 70 30 L 90 0 Z" fill="#FFC0CB" transform="rotate(30)" />
    <circle cx="70" cy="30" r="5" fill="#FFFFFF" />
    <!-- Seahorse 3 -->
    <path d="M 100 0 L 120 30 L 140 0 Z" fill="#FFC0CB" transform="rotate(-30)" />
    <circle cx="120" cy="30" r="5" fill="#FFFFFF" />
  </g>

  <!-- Scarf -->
  <rect x="120" y="120" width="60" height="10" fill="#FF69B4" rx="2" />
  <rect x="120" y="140" width="60" height="10" fill="#FF69B4" rx="2" />
  <rect x="120" y="160" width="60" height="10" fill="#FF69B4" rx="2" />

  <!-- Bubbles -->
  <circle cx="50" cy="250" r="5" fill="#FFFFFF" />
  <circle cx="70" cy="220" r="5" fill="#FFFFFF" />
  <circle cx="90" cy="200" r="5" fill="#FFFFFF" />
  <circle cx="110" cy="230" r="5" fill="#FFFFFF" />
  <circle cx="130" cy="210" r="5" fill="#FFFFFF" />
</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 more clearly depicts an octopus knitting underwater, with recognizable elements such as knitting needles and a scarf.

    The presence of surrounding fish adds a playful underwater setting, aligning well with the prompt.

    Player 2's image lacks clarity in depicting the octopus and knitting activity, making it less adherent to the prompt and visually ambiguous.

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

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

Player 1
5
Player 2
6
Circles

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

Player 1
13
Player 2
11
Ellipses

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

Player 1
1
Player 2
Lines

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

Player 1
2
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
16
Player 2
7
Groups

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

Player 1
9
Player 2
2

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
7

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
8

Complexity Metrics

Path Commands

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

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