Back

SVG Drawing Match #103

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing octopus in a top hat juggling seashells"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="octopusSkin" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF7F50"/>
      <stop offset="100%" stop-color="#FF6347"/>
    </radialGradient>
    <radialGradient id="hatGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#000000"/>
      <stop offset="100%" stop-color="#505050"/>
    </radialGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFFACD"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <pattern id="waves" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0 5 Q 2.5 0 5 5 T 10 5" fill="none" stroke="#ADD8E6" stroke-width="1"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#waves)"/>
  <g transform="translate(150, 170)">
    <ellipse cx="0" cy="0" rx="25" ry="40" fill="url(#octopusSkin)"/>
    <ellipse cx="0" cy="-50" rx="15" ry="10" fill="url(#hatGradient)"/>
  </g>
  <g transform="translate(150, 170)">
    <circle cx="-30" cy="-50" r="15" fill="url(#shellGradient)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 170" to="360 150 170" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="30" cy="-50" r="15" fill="url(#shellGradient)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 170" to="-360 150 170" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="0" cy="70" r="15" fill="url(#shellGradient)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 170" to="360 150 170" dur="3s" repeatCount="indefinite"/>
    </circle>
  </g>
  <g fill="url(#octopusSkin)" stroke="#CC6600" stroke-width="2">
    <path d="M150 170 Q140 140 110 150 T130 190" />
    <path d="M150 170 Q120 140 90 150 T115 200" />
    <path d="M150 170 Q190 140 220 150 T180 190" />
    <path d="M150 170 Q180 140 210 150 T185 195" />
  </g>
  <ellipse cx="150" cy="140" rx="8" ry="15" fill="#FFFFFF"/>
  <ellipse cx="135" cy="142" rx="4" ry="8" fill="#333333"/>
  <ellipse cx="165" cy="142" rx="4" ry="8" fill="#333333"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and texture -->
  <defs>
    <linearGradient id="bgGrad" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#1a4377" />
      <stop offset="1" stop-color="#0d47a1" />
    </linearGradient>
    <path id="seaweed" d="M0,300 Q150,250 300,300 Q200,350 100,300 Q50,250 0,300" fill="#4CAF50"/>
  </defs>

  <rect width="300" height="300" fill="url(#bgGrad)"/>

  <!-- Dancing Octopus -->
  <g transform="translate(150,150)">
    <!-- Top Hat -->
    <path d="M-40,-100 L40,-100 L60,-60 L40,-20 -40,-20 -60,-60 Z" fill="#2c3e50" stroke="#34495e" stroke-width="2"/>
    
    <!-- Octopus Body -->
    <circle cx="0" cy="0" r="50" fill="url(#gradOcto)"/>
    <defs>
      <linearGradient id="gradOcto" x1="0" y1="0" x2="100" y2="100">
        <stop offset="0" stop-color="#e74c3c" />
        <stop offset="1" stop-color="#e67e22" />
      </linearGradient>
    </defs>

    <!-- Eyes -->
    <circle cx="-20" cy="-35" r="15" fill="white"/>
    <circle cx="20" cy="-35" r="15" fill="white"/>
    <circle cx="-20" cy="-35" r="5" fill="#2c3e50"/>
    <circle cx="20" cy="-35" r="5" fill="#2c3e50"/>

    <!-- Tentacles -->
    <path d="M0,-70 Q-40,-120 -80,-150" stroke="#e74c3c" stroke-width="8" fill="none"/>
    <path d="M0,-70 Q40,-120 80,-150" stroke="#e67e22" stroke-width="8" fill="none"/>
    <path d="M0,-70 Q-20,-110 -40,-140" stroke="#e74c3c" stroke-width="6" fill="none"/>
    <path d="M0,-70 Q20,-110 40,-140" stroke="#e67e22" stroke-width="6" fill="none"/>
    <path d="M0,-70 Q-10,-130 -30,-160" stroke="#e74c3c" stroke-width="4" fill="none"/>
    <path d="M0,-70 Q10,-130 30,-160" stroke="#e67e22" stroke-width="4" fill="none"/>
    <path d="M0,-70 Q-5,-135 -25,-155" stroke="#e74c3c" stroke-width="2" fill="none"/>
    <path d="M0,-70 Q5,-135 25,-155" stroke="#e67e22" stroke-width="2" fill="none"/>

    <!-- Juggling Seashells -->
    <g transform="rotate(30)">
      <path d="M-50,0 Q0,-40 50,0 Q30,-20 0,0" fill="#f1c40f" stroke="#e67e22" stroke-width="2"/>
    </g>
    <g transform="rotate(-30)">
      <path d="M-50,0 Q0,-40 50,0 Q30,-20 0,0" fill="#f1c40f" stroke="#e67e22" stroke-width="2"/>
    </g>
    <g transform="rotate(0)">
      <path d="M-50,0 Q0,-40 50,0 Q30,-20 0,0" fill="#f1c40f" stroke="#e67e22" stroke-width="2"/>
    </g>

    <!-- Motion Lines -->
    <path d="M-100,-50 Q-50,-100 0,-150" stroke="#f1c40f" stroke-width="1" opacity="0.5"/>
    <path d="M100,-50 Q50,-100 0,-150" stroke="#f1c40f" stroke-width="1" opacity="0.5"/>
  </g>

  <!-- Seaweed in background -->
  <use href="#seaweed" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image more closely adheres to the prompt by including elements of juggling with seashell-like objects and a clear octopus form with a top hat.

    The composition effectively conveys the playful and whimsical theme, whereas Player 2's image lacks the juggling and distinct octopus characteristics, making it less aligned with 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
14
Player 2
21
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
3
Player 2
5
Ellipses

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

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

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

Player 1
5
Player 2
15
Groups

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

Player 1
3
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
9

Interactivity Metrics

Animations

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

Player 1
3
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
4

Complexity Metrics

Path Commands

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

Player 1
15
Player 2
38
Max Group Nesting

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

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

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