Back

SVG Drawing Match #171

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A roller-skating octopus wearing sunglasses and holding an ice cream cone"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#87CEEB"/>
      <stop offset="1" style="stop-color:#E0F6FF"/>
    </linearGradient>
  </defs>

  <!-- Ground -->
  <rect x="0" y="200" width="300" height="100" fill="url(#groundGradient)"/>
  <defs>
    <linearGradient id="groundGradient" x1="0" y1="200" x2="0" y2="300">
      <stop offset="0" style="stop-color:#333"/>
      <stop offset="1" style="stop-color:#666"/>
    </linearGradient>
  </defs>

  <!-- Octopus body -->
  <circle cx="150" cy="220" r="40" fill="url(#octoGradient)"/>
  <defs>
    <radialGradient id="octoGradient" cx="150" cy="220" r="40" fx="150" fy="220">
      <stop offset="0" style="stop-color:#FF69B4"/>
      <stop offset="1" style="stop-color:#FF1493"/>
    </radialGradient>
  </defs>

  <!-- Eyes -->
  <circle cx="130" cy="210" r="15" fill="white"/>
  <circle cx="170" cy="210" r="15" fill="white"/>
  <circle cx="130" cy="210" r="5" fill="black"/>
  <circle cx="170" cy="210" r="5" fill="black"/>
  <path d="M130,210 l5,10 q-5,5 -10,0" fill="black"/>
  <path d="M170,210 l-5,10 q5,5 10,0" fill="black"/>

  <!-- Sunglasses -->
  <path d="M120,200 Q150,180 180,200 Q190,220 150,230 Q110,220 120,200" fill="url(#sunglassesGradient)"/>
  <defs>
    <linearGradient id="sunglassesGradient" x1="120" y1="200" x2="180" y2="200">
      <stop offset="0" style="stop-color:#FF69B4"/>
      <stop offset="1" style="stop-color:#FF1493"/>
    </linearGradient>
  </defs>
  <path d="M120,200 Q150,180 180,200 M120,200 Q150,220 180,200" stroke="black" stroke-width="2" fill="none"/>

  <!-- Tentacles -->
  <path d="M150,260 Q140,270 130,280 Q120,290 110,290" fill="url(#tentacleGradient)"/>
  <path d="M150,260 Q160,270 170,280 Q180,290 190,290" fill="url(#tentacleGradient)"/>
  <path d="M150,240 Q140,230 130,220 Q120,210 110,210" fill="url(#tentacleGradient)"/>
  <path d="M150,240 Q160,230 170,220 Q180,210 190,210" fill="url(#tentacleGradient)"/>
  <path d="M150,260 Q150,270 150,280" fill="url(#tentacleGradient)"/>
  <defs>
    <radialGradient id="tentacleGradient" cx="150" cy="260" r="40" fx="150" fy="260">
      <stop offset="0" style="stop-color:#FF1493"/>
      <stop offset="1" style="stop-color:#FF69B4"/>
    </radialGradient>
  </defs>

  <!-- Ice cream cone -->
  <path d="M220,260 l-40,0 l-20,60 h40 l20,-60" fill="#FFD700"/>
  <circle cx="220" cy="220" r="30" fill="white"/>
  <path d="M220,220 m-10,0 l10,40 -20,0 z" fill="#FFD700"/>
  <path d="M210,240 l10,-10 M230,240 l-10,-10" stroke="black" stroke-width="2"/>
  <path d="M220,220 m-5,0 l5,20 -10,0 z" fill="#FFD700"/>
  <path d="M220,240 l-10,-10 l10,10" stroke="black" stroke-width="1"/>

  <!-- Roller skates -->
  <rect x="130" y="280" width="40" height="20" fill="#8B4513"/>
  <rect x="170" y="280" width="40" height="20" fill="#8B4513"/>
  <circle cx="140" cy="295" r="5" fill="#666"/>
  <circle cx="170" cy="295" r="5" fill="#666"/>
  <circle cx="180" cy="295" r="5" fill="#666"/>
  <circle cx="190" cy="295" r="5" fill="#666"/>
  <path d="M140,280 l5,5 M140,295 l-5,5 M170,280 l5,5 M170,295 l-5,5" stroke="white" stroke-width="2"/>
  <path d="M140,280 l10,0 M170,280 l10,0" stroke="white" stroke-width="2"/>

  <!-- Sparkles -->
  <circle cx="150" cy="200" r="2" fill="white"/>
  <circle cx="160" cy="210" r="2" fill="white"/>
  <circle cx="140" cy="210" r="2" fill="white"/>
  <circle cx="150" cy="220" r="2" fill="white"/>
  <circle cx="170" cy="220" r="2" fill="white"/>
  <circle cx="160" cy="230" r="2" fill="white"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <radialGradient id="gradient-body" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" stop-color="#ff9a9e" />
            <stop offset="100%" stop-color="#fad0c4" />
        </radialGradient>
        <linearGradient id="gradient-sunglasses" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" stop-color="#000" stop-opacity="0.8" />
            <stop offset="100%" stop-color="#333" stop-opacity="0.8" />
        </linearGradient>
        <pattern id="ice-cream-pattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
            <rect x="0" y="0" width="4" height="4" fill="#fae04b" />
            <circle cx="2" cy="2" r="1" fill="#fb6888" />
        </pattern>
    </defs>
    <g transform="translate(150, 150)">
        <path d="M-40,40 C-60,-20 60,-20 40,40 C20,60 -20,60 -40,40 Z" fill="url(#gradient-body)" />
        <path d="M-40,40 C-60,20 -60,70 -40,70 C-20,70 -20,20 -40,40 Z" fill="url(#gradient-body)" />
        <polygon points="-40,40 20,80 -20,80" fill="#6ab04c" />
        
        <circle cx="-30" cy="-20" r="12" fill="url(#gradient-sunglasses)" />
        <circle cx="30" cy="-20" r="12" fill="url(#gradient-sunglasses)" />
        <rect x="-34" y="-23" width="68" height="4" fill="#000" />
        
        <path d="M-10,20 Q0,30 10,20" stroke="#532e3e" stroke-width="4" fill="none" />
        
        <path d="M-6,15 L-20,30 Q-6,40 6,30 L20,15 Z" fill="url(#ice-cream-pattern)" />
        <path d="M-12,15 L-20,30 L-6,30 Z" fill="#39010d" />
        <path d="M12,15 L20,30 L6,30 Z" fill="#39010d" />
        
        <path d="M40,-20 C50,-40 50,0 40,-20 Z" fill="#207cc0" />
        <path d="M-60,-20 C-50,-40 -50,0 -60,-20 Z" fill="#207cc0" />
        
        <circle cx="-25" cy="10" r="5" fill="#ff6b81" />
        <circle cx="25" cy="10" r="5" fill="#ff6b81" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission more clearly represents the concept of an octopus with facial features, sunglasses, and an ice cream cone, capturing the whimsical nature of the prompt.

    The use of colors and shapes effectively conveys the idea, whereas Player 1's image lacks clear representation of an octopus and the elements specified in 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
36
Player 2
16
Rectangles

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

Player 1
4
Player 2
2
Circles

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

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

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

Player 1
Player 2
1
Paths

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

Player 1
16
Player 2
8
Groups

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
11

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
1

Complexity Metrics

Path Commands

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

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