Back

SVG Drawing Match #2732

May 10, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating teapot pouring stars into a crescent moon-shaped cup."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#F5D183"/>
      <stop offset="100%" stop-color="#F0A036"/>
    </linearGradient>
    <radialGradient id="starsGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="1"/>
      <stop offset="100%" stop-color="#FFD700" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="teapotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#8A6A4F"/>
      <stop offset="100%" stop-color="#5A3E2B"/>
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#0D1B2A"/>
  
  <!-- Floating Teapot -->
  <g transform="translate(150, 100)">
    <!-- Teapot body -->
    <ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#teapotGradient)" stroke="#654321" stroke-width="2"/>
    <!-- Lid -->
    <ellipse cx="0" cy="-25" rx="20" ry="4" fill="#4B2E2E"/>
    <!-- Spout -->
    <path d="M 40 0 Q 50 -10 45 -20 Q 40 -30 35 -20 Q 30 -10 40 0" fill="#6D4C41"/>
    <!-- Handle -->
    <path d="M -40 0 Q -55 10 -40 30 Q -25 50 -20 30 Q -15 10 -40 0" fill="none" stroke="#654321" stroke-width="3"/>
  </g>
  
  <!-- Crescent Moon-Shaped Cup -->
  <g transform="translate(180, 210)">
    <path d="M -40 0 A 40 40 0 1 1 40 0 Q 0 30 0 -30 Q 0 -10 0 -30 Q 0 30 -40 0"
          fill="url(#moonGradient)" stroke="#BFA165" stroke-width="2"/>
  </g>
  
  <!-- Stars pouring from teapot spout -->
  <g>
    <g transform="translate(200, 80)">
      <!-- Multiple stars -->
      <g id="stars">
        <!-- Generate stars with varying sizes and positions -->
        <circle cx="0" cy="0" r="2" fill="url(#starsGradient)" opacity="0.8"/>
        <circle cx="5" cy="10" r="1.5" fill="url(#starsGradient)" opacity="0.7"/>
        <circle cx="-4" cy="15" r="1" fill="url(#starsGradient)" opacity="0.6"/>
        <circle cx="3" cy="20" r="2.5" fill="url(#starsGradient)" opacity="0.9"/>
        <circle cx="-6" cy="25" r="1.2" fill="url(#starsGradient)" opacity="0.8"/>
        <circle cx="2" cy="30" r="1" fill="url(#starsGradient)" opacity="0.7"/>
        <circle cx="0" cy="35" r="2" fill="url(#starsGradient)" opacity="0.8"/>
      </g>
      <!-- Animate falling stars with slight rotation to add dynamism -->
      <use href="#stars" transform="rotate(10)"/>
    </g>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#1a0c3f"/>
      <stop offset="100%" stop-color="#2d1b5e"/>
    </linearGradient>
    <radialGradient id="teapotGrad">
      <stop offset="0%" stop-color="#6b46c1"/>
      <stop offset="100%" stop-color="#4834a4"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <symbol id="star">
      <path d="M12 0l3.5 7.5 8 .5-6 5.5 2 8-7.5-4-7.5 4 2-8-6-5.5 8-.5z" transform="scale(0.6)"/>
    </symbol>
  </defs>

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

  <!-- Celestial Cup -->
  <path d="M150 250q-40-25-40-80 0-55 40-80 40 25 40 80 0 55-40 80z" fill="#f4ede4" opacity="0.9">
    <animate attributeName="opacity" values="0.9;0.95;0.9" dur="3s" repeatCount="indefinite"/>
  </path>

  <!-- Star Stream -->
  <g transform="translate(150,80)">
    <path d="M-20 0Q0 100 20 160" fill="none" stroke="url(#teapotGrad)" stroke-width="3" stroke-linecap="round"/>
    <use href="#star" x="-30" y="40" fill="#ffeb3b"/>
    <use href="#star" x="-10" y="80" fill="#fff59d"/>
    <use href="#star" x="15" y="120" fill="#ffeb3b"/>
    <animateTransform attributeName="transform" type="translate" values="150,80;150,85;150,80" dur="2s" repeatCount="indefinite"/>
  </g>

  <!-- Floating Teapot -->
  <g transform="translate(150,100)">
    <path d="M-40 0a40 60 0 1 0 80 0h-10a30 50 0 0 1-60 0z" fill="url(#teapotGrad)"/>
    <path d="M-25-30l50 0 10 20-60 0z" fill="#4a2f8a"/>
    <circle cx="0" cy="-40" r="8" fill="#ffd700" filter="url(#glow)"/>
    <path d="M40 0l20-30" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
    <animateTransform attributeName="transform" type="translate" values="150,100;150,95;150,100" dur="3s" repeatCount="indefinite"/>
  </g>

  <!-- Sparkles -->
  <g opacity="0.8">
    <use href="#star" x="50" y="50" fill="#fff" transform="rotate(30)"/>
    <use href="#star" x="220" y="120" fill="#fff59d"/>
    <use href="#star" x="180" y="200" fill="#fff" transform="scale(0.5)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and visual appeal.

    The abstract and vibrant depiction of the floating teapot, stars, and crescent moon-shaped cup is more visually engaging and adheres closely to the prompt.

    In contrast, Player 1's submission lacks detail and refinement, making the concept harder to interpret.

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

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

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

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

Player 1
5
Player 2
3

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

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
10

Interactivity Metrics

Animations

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

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
13
Player 2
18
Max Group Nesting

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

Player 1
2
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
Player 2
4
Use Elements

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

Player 1
1
Player 2
6

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