Back

SVG Drawing Match #804

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A whale wearing a bowler hat, juggling planets under a starry sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Sky Background -->
  <defs>
    <radialGradient id="skyGradient" cx="150" cy="150" r="150" fx="150" fy="0">
      <stop offset="0" style="stop-color:#0b0b2d;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#1a1a4a;stop-opacity:1"/>
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
      <circle cx="50%" cy="50%" r="1" fill="white" opacity="0.6"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#stars)"/>

  <!-- Whale Body -->
  <path d="M150,220 C170,220 180,230 190,230 L230,230 C230,230 240,220 250,220 C260,220 270,230 280,230 L300,230 C300,230 300,200 280,200 C280,200 260,180 240,180 C240,180 220,200 210,200 C210,200 190,180 180,180 C180,180 160,200 150,200 C150,200 140,180 130,180 C130,180 110,200 100,200 C100,200 80,230 70,230 L50,230 C50,230 40,220 30,220 C20,220 10,230 0,230 L20,230 C20,230 20,200 10,200 C10,200 0,180 0,180 L0,180 C0,180 20,160 30,160 C40,160 50,180 60,180 C60,180 50,200 40,200 C40,200 20,230 10,230 C10,230 0,220 0,220 L0,220 C0,220 10,230 20,230 C20,230 30,220 40,220 C50,220 60,220 70,220 L80,220 C80,220 90,230 100,230 L120,230 C120,230 130,220 140,220 C140,220 150,230 150,230 Z"
      fill="url(#whaleGradient)" stroke="black" stroke-width="2"/>
  <defs>
    <linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4a9ace;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#2a5b8c;stop-opacity:1"/>
    </linearGradient>
  </defs>

  <!-- Bowler Hat -->
  <ellipse cx="150" cy="140" rx="40" ry="30" fill="url(#hatGradient)" stroke="black" stroke-width="2"/>
  <path d="M150,140 L170,160 L130,160 L150,140" fill="none" stroke="black" stroke-width="2"/>
  <defs>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8b4513;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4a2b0d;stop-opacity:1"/>
    </linearGradient>
  </defs>

  <!-- Planets -->
  <g transform="rotate(45 150 150)">
    <!-- Planet 1 - Earth-like -->
    <circle cx="150" cy="100" r="20" fill="url(#earthGradient)" stroke="#fff" stroke-width="2">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="4s" repeatCount="indefinite"/>
    </circle>
    <!-- Planet 2 - Gas Giant -->
    <circle cx="200" cy="120" r="25" fill="url(#jupiterGradient)" stroke="#fff" stroke-width="2">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="6s" repeatCount="indefinite"/>
    </circle>
    <!-- Planet 3 - Rocky Planet -->
    <circle cx="100" cy="100" r="15" fill="url(#marsGradient)" stroke="#fff" stroke-width="2">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="8s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Planet Gradients -->
  <defs>
    <radialGradient id="earthGradient" cx="150" cy="100" r="20" fx="150" fy="100">
      <stop offset="0%" style="stop-color:#1a5f8c;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#0a2a4a;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="jupiterGradient" cx="200" cy="120" r="25" fx="200" fy="120">
      <stop offset="0%" style="stop-color:#ba1d1d;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#8b0a0a;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="marsGradient" cx="100" cy="100" r="15" fx="100" fy="100">
      <stop offset="0%" style="stop-color:#cd8500;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#a66c00;stop-opacity:1"/>
    </radialGradient>
  </defs>

  <!-- Whale Tail -->
  <path d="M150,280 C180,280 210,270 220,260 L220,240 C220,240 200,240 180,240 C180,240 160,250 150,260 L150,280 Z"
      fill="url(#whaleGradient)" stroke="black" stroke-width="2"/>

  <!-- Water Effects -->
  <rect x="0" y="280" width="300" height="20" fill="url(#waterGradient)"/>
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgba(0,150,255,0.3);stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgba(0,100,200,0.6);stop-opacity:1"/>
    </linearGradient>
  </defs>
  <path d="M0,300 Q150,290 300,300" fill="none" stroke="rgba(0,200,255,0.4)" stroke-width="4"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="whaleGradient" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#006994; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9fd3e8; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#f47b20; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f4e04d; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#4a90e2; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9eabb2; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#d62258; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e8a49c; stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="#000" />
  <g>
    <path d="M50 200 Q75 150, 150 180 Q225 210, 250 200 T350 220" fill="url(#whaleGradient)" />
    <path d="M125 190 Q113 175, 140 175 Q150 160, 160 175 Q175 180, 125 190" fill="none" stroke="#004b5c" stroke-width="2"/>
    <ellipse cx="150" cy="80" rx="20" ry="10" fill="black" />
    <rect x="145" y="60" width="10" height="20" fill="black"/>
  </g>
  <g>
    <circle cx="80" cy="70" r="15" fill="url(#planetGradient1)" />
    <circle cx="220" cy="100" r="20" fill="url(#planetGradient2)" />
    <circle cx="150" cy="150" r="25" fill="url(#planetGradient3)" />
  </g>
  <g>
    <text x="150" y="250" font-family="Arial" font-size="20" fill="#ffffff" text-anchor="middle">Whale Juggling Planets</text>
  </g>
  <g>
    <path d="M0 0 L300 0 L300 50 L0 50 Z" fill="url(#whaleGradient)" opacity="0.2" />
  </g>
  <g fill="#ffffff">
    <circle cx="30" cy="30" r="2" />
    <circle cx="70" cy="15" r="1.5" />
    <circle cx="120" cy="10" r="1" />
    <circle cx="180" cy="30" r="2.5" />
    <circle cx="220" cy="20" r="1.2" />
    <circle cx="270" cy="45" r="2" />
  </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 better adheres to the prompt by clearly depicting a whale shape beneath a starry sky, juggling planets.

    The bowler hat is suggested more effectively than in Player 1's image, which lacks clarity in the depiction of the whale and the hat.

    The composition in Player 2's image is more visually appealing with smoother lines and a clearer representation of the elements described 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
12
Player 2
15
Rectangles

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

Player 1
3
Player 2
2
Circles

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

Player 1
4
Player 2
9
Ellipses

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

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

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

Player 1
1
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
4

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
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
49
Player 2
13
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
8
Player 2
4
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
1

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