Back

SVG Drawing Match #19

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus in a hot air balloon wearing a monocle and top hat"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a4377;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0f4c75;stop-opacity:1" />
    </linearGradient>
    
    <!-- Balloon envelope gradient -->
    <linearGradient id="balloonGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ff5252;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff3f3f;stop-opacity:1" />
    </linearGradient>
    
    <!-- Cloud pattern -->
    <pattern id="cloudPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <ellipse cx="50" cy="50" rx="40" ry="30" fill="white" opacity="0.6"/>
    </pattern>
    
    <!-- Tentacle pattern for suckers -->
    <pattern id="suckers" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1" fill="#333"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Clouds -->
  <rect x="50" y="50" width="100" height="100" fill="url(#cloudPattern)"/>
  <rect x="150" y="80" width="100" height="100" fill="url(#cloudPattern)"/>
  <rect x="200" y="150" width="100" height="100" fill="url(#cloudPattern)"/>

  <!-- Hot air balloon -->
  <path d="M150,200 L120,220 Q140,260 160,260 L180,220 Z" fill="url(#balloonGradient)"/>
  <ellipse cx="150" cy="240" rx="30" ry="20" fill="#fff" opacity="0.3"/>
  <clipPath id="balloonClip">
    <path d="M150,200 L120,220 Q140,260 160,260 L180,220 Z"/>
  </clipPath>
  <ellipse cx="150" cy="240" rx="28" ry="18" fill="#ff3f3f" clip-path="url(#balloonClip)"/>

  <!-- Basket -->
  <rect x="130" y="260" width="40" height="40" fill="#8b4513"/>
  <rect x="135" y="265" width="30" height="30" fill="#654321"/>
  <line x1="150" y1="260" x2="150" y2="270" stroke="#654321" stroke-width="2"/>
  <path d="M140,270 Q150,280 160,270" fill="#654321"/>
  <path d="M150,270 Q145,275 150,270" fill="#654321"/>
  <path d="M150,270 Q155,275 150,270" fill="#654321"/>

  <!-- Octopus body -->
  <circle cx="150" cy="270" r="15" fill="#4a708b">
    <animate attributeName="r" from="15" to="16" dur="2s" repeatCount="indefinite" />
  </circle>

  <!-- Tentacles -->
  <path d="M150,270 Q160,265 190,260 L200,250 Q180,240 160,235" stroke="#4a708b" stroke-width="8" fill="none">
    <pathEffect>
      <filter id="tentacleEffect">
        <feTurbulence type="fractalNoise" baseFrequency="0.025" numOctaves="3" />
      </filter>
    </pathEffect>
  </path>
  <path d="M150,270 Q170,275 190,280 L200,290 Q180,295 160,300" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q140,265 120,260 L110,250 Q130,240 140,235" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q145,275 140,280 L130,290 Q135,295 140,300" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q155,275 160,280 L170,290 Q165,295 160,300" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q135,270 120,270 L110,270" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q165,270 180,270 L190,270" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q150,275 150,280 L150,290" stroke="#4a708b" stroke-width="8" fill="none"/>
  <path d="M150,270 Q150,265 150,260 L150,250" stroke="#4a708b" stroke-width="8" fill="none"/>

  <!-- Suckers on tentacles -->
  <rect x="180" y="250" width="20" height="20" fill="url(#suckers)"/>
  <rect x="190" y="240" width="20" height="20" fill="url(#suckers)"/>
  <rect x="170" y="235" width="20" height="20" fill="url(#suckers)"/>
  <rect x="160" y="230" width="20" height="20" fill="url(#suckers)"/>
  <rect x="140" y="225" width="20" height="20" fill="url(#suckers)"/>
  <rect x="130" y="220" width="20" height="20" fill="url(#suckers)"/>
  <rect x="120" y="215" width="20" height="20" fill="url(#suckers)"/>
  <rect x="110" y="210" width="20" height="20" fill="url(#suckers)"/>
  <rect x="100" y="205" width="20" height="20" fill="url(#suckers)"/>
  <rect x="90" y="200" width="20" height="20" fill="url(#suckers)"/>
  <rect x="80" y="195" width="20" height="20" fill="url(#suckers)"/>
  <rect x="70" y="190" width="20" height="20" fill="url(#suckers)"/>
  <rect x="60" y="185" width="20" height="20" fill="url(#suckers)"/>
  <rect x="50" y="180" width="20" height="20" fill="url(#suckers)"/>
  <rect x="40" y="175" width="20" height="20" fill="url(#suckers)"/>
  <rect x="30" y="170" width="20" height="20" fill="url(#suckers)"/>
  <rect x="20" y="165" width="20" height="20" fill="url(#suckers)"/>
  <rect x="10" y="160" width="20" height="20" fill="url(#suckers)"/>

  <!-- Monocle and top hat -->
  <circle cx="150" cy="240" r="5" fill="#333"/>
  <path d="M140,240 Q150,235 160,240" stroke="#333" stroke-width="2"/>
  <rect x="130" y="220" width="40" height="20" rx="5" fill="#333"/>
  <path d="M150,220 Q145,215 150,210 L155,215 Q150,220 145,215 Z" fill="#666"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <linearGradient id="balloonGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FF4500"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </linearGradient>
    <pattern id="hatPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#000000"/>
      <rect x="5" y="0" width="5" height="10" fill="#FFFFFF"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <ellipse cx="150" cy="120" rx="80" ry="100" fill="url(#balloonGradient)"/>
  <rect x="130" y="200" width="40" height="40" fill="#8B4513"/>
  <ellipse cx="150" cy="240" rx="50" ry="20" fill="#8B4513"/>
  <circle cx="150" cy="80" r="20" fill="#FFFFFF"/>
  <circle cx="150" cy="80" r="15" fill="#000000"/>
  <circle cx="150" cy="80" r="10" fill="#FFFFFF"/>
  <circle cx="150" cy="80" r="5" fill="#000000"/>
  <rect x="145" cy="75" width="10" height="5" fill="#000000" />
  <ellipse cx="150" cy="150" rx="30" ry="40" fill="#8B4513"/>
  <circle cx="140" cy="140" r="10" fill="#FFFFFF"/>
  <circle cx="140" cy="140" r="5" fill="#000000"/>
  <circle cx="160" cy="140" r="10" fill="#FFFFFF"/>
  <circle cx="160" cy="140" r="5" fill="#000000"/>
  <rect x="135" cy="130" width="5" height="10" fill="#000000"/>
  <rect x="155" cy="130" width="5" height="10" fill="#000000"/>
  <path d="M120,170 Q140,160 160,170 T200,170" fill="none" stroke="#FFFFFF" stroke-width="5"/>
  <path d="M100,170 Q120,160 140,170 T180,170" fill="none" stroke="#FFFFFF" stroke-width="5"/>
  <path d="M100,150 Q120,140 140,150 T180,150" fill="none" stroke="#FFFFFF" stroke-width="5"/>
  <path d="M120,150 Q140,140 160,150 T200,150" fill="none" stroke="#FFFFFF" stroke-width="5"/>
  <rect x="120" y="60" width="60" height="30" fill="url(#hatPattern)"/>
  <circle cx="150" cy="60" r="5" fill="#000000"/>
  <path d="M150,60 L150,50" stroke="#000000" stroke-width="2"/>
  <path d="M150,50 L160,45" stroke="#000000" stroke-width="2"/>
  <path d="M160,45 L170,50" stroke="#000000" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's image more clearly represents the idea of an octopus in a hot air balloon, as evidenced by the distinct balloon shape and attempt at characterizing the octopus.

    The use of color and shapes is more cohesive and visually appealing, while Player 1's submission lacks clarity and adherence to the prompt.

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

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

Player 1
25
Player 2
8
Circles

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

Player 1
3
Player 2
9
Ellipses

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

Player 1
3
Player 2
3
Lines

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

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

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

Player 1
Player 2

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

The number of elements with opacity attributes in the SVG.

Player 1
2
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
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
55
Player 2
18
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