Back

SVG Drawing Match #1516

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale wearing a top hat launching from a giant teacup"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#4A90E2; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#034C8C; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="teacupGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#F5A623; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#D76D00; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#555; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#222; stop-opacity:1" />
    </linearGradient>
    <pattern id="whalePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="rgba(255,255,255,0.2)" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="#E0F7FA" />

  <!-- Giant teacup -->
  <g id="teacup">
    <!-- Cup body -->
    <ellipse cx="150" cy="250" rx="90" ry="30" fill="url(#teacupGradient)" stroke="#A65C00" stroke-width="2"/>
    <!-- Teacup rim (inner ellipse) -->
    <ellipse cx="150" cy="245" rx="70" ry="20" fill="#fff4e6" stroke="#A65C00" stroke-width="1"/>
    <!-- Handle -->
    <path d="M240,250 C270,230 270,270 240,250" fill="none" stroke="#A65C00" stroke-width="5" stroke-linecap="round"/>
    <!-- Steam swirls -->
    <path d="M130,230 C125,210 135,190 130,170" fill="none" stroke="#B0BEC5" stroke-width="2" stroke-linecap="round" opacity="0.8"/>
    <path d="M170,230 C165,215 175,200 170,185" fill="none" stroke="#B0BEC5" stroke-width="2" stroke-linecap="round" opacity="0.8"/>
  </g>

  <!-- Whale emerging from the teacup -->
  <g id="whale" transform="translate(80, 150)">
    <!-- Whale body -->
    <path d="M70,0 C105,-20 140,10 160,40 C180,70 180,110 160,140 C140,170 105,190 70,180 C35,170 0,160 0,120 C0,80 10,40 40,20 C55,10 65,5 70,0 Z" fill="url(#whaleGradient)" stroke="#023e8a" stroke-width="2"/>
    <!-- Whale pattern overlay -->
    <path d="M70,0 C105,-20 140,10 160,40 C180,70 180,110 160,140 C140,170 105,190 70,180 C35,170 0,160 0,120 C0,80 10,40 40,20 C55,10 65,5 70,0 Z" fill="url(#whalePattern)"/>
    <!-- Whale eye -->
    <circle cx="120" cy="50" r="4" fill="#fff"/>
    <circle cx="120" cy="50" r="2" fill="#000"/>
    
    <!-- Top hat on whale -->
    <g id="hat" transform="translate(100, -30)">
      <!-- Hat brim -->
      <rect x="0" y="20" width="40" height="6" fill="url(#hatGradient)" rx="3" ry="3"/>
      <!-- Hat top -->
      <rect x="10" y="0" width="20" height="20" fill="url(#hatGradient)" rx="3" ry="3" stroke="#000" stroke-width="1"/>
      <!-- Hat band -->
      <rect x="10" y="12" width="20" height="3" fill="#FFD700" rx="1" ry="1"/>
    </g>
  </g>
  
  <!-- Additional playful details: splashes -->
  <g id="splashes">
    <path d="M90,160 Q80,150 75,155 T60,150" fill="none" stroke="#81D4FA" stroke-width="2" opacity="0.7"/>
    <path d="M150,130 Q160,120 165,125 T180,120" fill="none" stroke="#81D4FA" stroke-width="2" opacity="0.7"/>
    <path d="M120,140 Q110,130 105,135 T90,130" fill="none" stroke="#81D4FA" stroke-width="2" opacity="0.7"/>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="whaleGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:rgb(51,153,255); stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,102,204); stop-opacity:1" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:rgb(173,216,230); stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,139); stop-opacity:1" />
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:rgb(50,50,50); stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(30,30,30); stop-opacity:1" />
    </linearGradient>
    <linearGradient id="teacupGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:rgb(255,228,196); stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(210,180,140); stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Draw teacup -->
  <ellipse cx="150" cy="220" rx="100" ry="40" fill="url(#teacupGradient)" />
  <ellipse cx="150" cy="218" rx="95" ry="38" fill="white" opacity="0.6" />
  <path d="M50,220 Q150,60 250,220" fill="url(#teacupGradient)" />
  
  <!-- Draw whale -->
  <path d="M150,110 C130,90 110,120 100,130 Q150,150 160,180 T180,190 Q200,160 210,140 C230,110 190,90 170,90 C160,100 150,110 150,110 Z" fill="url(#whaleGradient)" />
  
  <!-- Draw water splash -->
  <path d="M120,130 C100,100 130,90 140,100 C150,120 160,90 180,95 C170,110 160,130 160,130 Q150,120 140,130 Q130,120 120,130 Z" fill="url(#waterGradient)" />
  
  <!-- Draw top hat -->
  <rect x="140" y="80" width="20" height="10" fill="black" />
  <ellipse cx="150" cy="80" rx="30" ry="6" fill="url(#hatGradient)" />
  <rect x="145" y="60" width="10" height="20" fill="url(#hatGradient)" />
  <ellipse cx="150" cy="60" rx="20" ry="5" fill="black" />
  
  <!-- Additional artistic features -->
  <ellipse cx="250" cy="220" rx="20" ry="10" fill="none" stroke="black" stroke-width="1" opacity="0.7"/>
  <path d="M260,230 Q280,160 230,210" fill="none" stroke="white" stroke-width="2" />
  
  <!-- Decorative elements -->
  <circle cx="90" cy="160" r="3" fill="white" />
  <circle cx="110" cy="170" r="5" fill="white" opacity="0.7" />
  <circle cx="180" cy="150" r="3" fill="white" />

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better captures the idea of a whale wearing a top hat launching from a giant teacup with clear depiction of the teacup and dynamic movement.

    The composition is visually appealing with a good balance of elements and a creative representation.

    Player 1's submission, while charming, lacks clear depiction of the teacup and dynamic action, making it less effective in fulfilling 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
17
Player 2
14
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
3
Player 2
3
Ellipses

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

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

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
2

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
2
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
31
Player 2
19
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
4
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

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