Back

SVG Drawing Match #2213

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

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

SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="75%" fx="20%" fy="20%">
      <stop offset="0%" stop-color="#1a1a2e"/>
      <stop offset="100%" stop-color="#090918"/>
    </radialGradient>
    <linearGradient id="potGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#a18cd1"/>
      <stop offset="100%" stop-color="#fbc2eb"/>
    </linearGradient>
    <linearGradient id="spoutGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#fbc2eb"/>
      <stop offset="100%" stop-color="#a18cd1"/>
    </linearGradient>
    <radialGradient id="cupGrad" cx="30%" cy="30%" r="60%">
      <stop offset="0%" stop-color="#fdeb96"/>
      <stop offset="100%" stop-color="#fbc02d"/>
    </radialGradient>
    <radialGradient id="starGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#ffea83"/>
    </radialGradient>
    <pattern id="swirlPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M0,10 C5,0 15,20 20,10" stroke="rgba(255,255,255,0.2)" stroke-width="2" fill="none"/>
    </pattern>
    <filter id="dropShadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.5"/>
    </filter>
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <symbol id="starSymbol" viewBox="-6 -6 12 12">
      <polygon points="0,-6 1.8,-1.8 6,-2 2.2,1.8 3.6,6 0,3 -3.6,6 -2.2,1.8 -6,-2 -1.8,-1.8"/>
    </symbol>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)"/>
  <g filter="url(#dropShadow)">
    <g transform="translate(140,80) rotate(-15)">
      <ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#potGrad)"/>
      <ellipse cx="0" cy="-2" rx="30" ry="12" fill="rgba(255,255,255,0.2)"/>
      <ellipse cx="0" cy="2" rx="30" ry="12" fill="rgba(0,0,0,0.1)"/>
      <ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#swirlPattern)"/>
      <ellipse cx="5" cy="-20" rx="20" ry="8" fill="url(#potGrad)"/>
      <circle cx="5" cy="-24" r="3" fill="#fbc2eb" stroke="#fff" stroke-width="1"/>
      <path d="M-20,-2 C-10,-8 10,-8 20,-2" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-opacity="0.5"/>
      <path d="M40,-5 C55,-15 80,-12 65,2 C80,16 55,8 40,10 Z" fill="url(#spoutGrad)"/>
      <path d="M-40,0 C-55,-15 -55,15 -40,0 Z" fill="none" stroke="#ffffff" stroke-width="4" stroke-linecap="round"/>
      <ellipse cx="0" cy="0" rx="40" ry="25" fill="none" stroke="#ffffff" stroke-width="2" stroke-opacity="0.6"/>
    </g>
  </g>
  <g>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(203,68) scale(0.5) rotate(10)"/>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(208,82) scale(0.6) rotate(5)"/>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(210,100) scale(0.7) rotate(2)"/>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(208,120) scale(0.8) rotate(-2)"/>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(204,140) scale(0.9) rotate(-5)"/>
    <use href="#starSymbol" fill="url(#starGrad)" filter="url(#starGlow)" transform="translate(215,160) scale(1.0) rotate(0)"/>
  </g>
  <g transform="translate(215,165)">
    <path d="M40,0 A25,25 0 1,1 -40,0 A18,18 0 1,0 36,0 Z" fill="url(#cupGrad)" fill-rule="evenodd" stroke="#f5c518" stroke-width="2"/>
    <path d="M38,-5 C20,-15 0,-5 -5,0" fill="none" stroke="#ffffff" stroke-width="2" stroke-opacity="0.5" stroke-linecap="round"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with night sky gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0a0a3a" />
      <stop offset="80%" stop-color="#05051f" />
      <stop offset="100%" stop-color="#010109" />
    </radialGradient>
    
    <!-- Star pattern -->
    <pattern id="starPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
      <circle cx="25" cy="30" r="0.6" fill="white" opacity="0.7" />
      <circle cx="40" cy="15" r="0.5" fill="white" opacity="0.9" />
    </pattern>
    
    <!-- Teapot glow -->
    <filter id="teapotGlow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Star stream gradient -->
    <linearGradient id="starStream" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fffad9" />
      <stop offset="50%" stop-color="#fff5b3" />
      <stop offset="100%" stop-color="#ffed80" />
    </linearGradient>
    
    <!-- Moon cup gradient -->
    <linearGradient id="moonCupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#e8e8ff" />
      <stop offset="70%" stop-color="#d0d0ff" />
      <stop offset="100%" stop-color="#b8b8ff" />
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" opacity="0.6" />
  
  <!-- Floating clouds -->
  <path d="M40,230 Q60,210 80,225 Q100,210 120,230 Q105,240 90,235 Q75,245 40,230" fill="#333355" opacity="0.7" />
  <path d="M180,250 Q200,230 220,245 Q240,230 260,250 Q245,260 230,255 Q215,265 180,250" fill="#333355" opacity="0.7" />
  
  <!-- Moon cup -->
  <g transform="translate(160, 190) rotate(15)">
    <!-- Cup base -->
    <path d="M0,0 Q50,10 80,0 L70,40 Q40,55 10,40 Z" fill="url(#moonCupGradient)" stroke="#8080ff" stroke-width="1" />
    
    <!-- Cup interior -->
    <path d="M5,5 Q50,15 75,5 L67,38 Q40,50 13,38 Z" fill="#7070dd" opacity="0.5" />
    
    <!-- Cup handle (crescent moon) -->
    <path d="M0,20 Q-15,30 0,40 Q-5,30 0,20" fill="#d0d0ff" stroke="#8080ff" stroke-width="1" />
    
    <!-- Collected stars in cup -->
    <circle cx="25" cy="25" r="1.2" fill="white">
      <animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="40" cy="20" r="1" fill="white">
      <animate attributeName="opacity" values="0.3;0.9;0.3" dur="2.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="55" cy="28" r="1.3" fill="white">
      <animate attributeName="opacity" values="0.5;1;0.5" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="35" cy="35" r="0.8" fill="white">
      <animate attributeName="opacity" values="0.6;1;0.6" dur="3.5s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Floating teapot -->
  <g transform="translate(90, 100) rotate(-15)">
    <!-- Teapot body -->
    <ellipse cx="40" cy="40" rx="35" ry="25" fill="#9370DB" stroke="#6A5ACD" stroke-width="2" filter="url(#teapotGlow)" />
    
    <!-- Teapot lid -->
    <ellipse cx="40" cy="25" rx="15" ry="5" fill="#9370DB" stroke="#6A5ACD" stroke-width="2" />
    <circle cx="40" cy="22" r="3" fill="#9370DB" stroke="#6A5ACD" stroke-width="1" />
    
    <!-- Teapot spout -->
    <path d="M75,40 Q95,60 115,90" fill="none" stroke="#6A5ACD" stroke-width="5" stroke-linecap="round" />
    
    <!-- Teapot handle -->
    <path d="M5,40 Q-10,55 5,70" fill="none" stroke="#6A5ACD" stroke-width="5" stroke-linecap="round" />
    
    <!-- Cosmic patterns on teapot -->
    <circle cx="30" cy="35" r="3" fill="#FFD700" opacity="0.8" />
    <circle cx="50" cy="45" r="2" fill="#FFD700" opacity="0.8" />
    <circle cx="35" cy="50" r="2.5" fill="#FFD700" opacity="0.8" />
    <path d="M25,35 Q40,25 55,35" fill="none" stroke="#FFD700" stroke-width="1" opacity="0.8" />
    <path d="M25,45 Q40,55 55,45" fill="none" stroke="#FFD700" stroke-width="1" opacity="0.8" />
  </g>
  
  <!-- Star stream -->
  <path d="M115,90 Q130,130 160,190" fill="none" stroke="url(#starStream)" stroke-width="4" stroke-dasharray="1,3" opacity="0.8">
    <animate attributeName="stroke-dashoffset" values="0;-20" dur="1s" repeatCount="indefinite" />
  </path>
  
  <!-- Pouring stars -->
  <g>
    <circle cx="120" cy="100" r="1.5" fill="white">
      <animate attributeName="cy" values="100;190" dur="2s" begin="0.1s" repeatCount="indefinite" />
      <animate attributeName="cx" values="120;160" dur="2s" begin="0.1s" repeatCount="indefinite" />
    </circle>
    <circle cx="122" cy="95" r="2" fill="white">
      <animate attributeName="cy" values="95;190" dur="1.8s" begin="0.3s" repeatCount="indefinite" />
      <animate attributeName="cx" values="122;162" dur="1.8s" begin="0.3s" repeatCount="indefinite" />
    </circle>
    <circle cx="118" cy="98" r="1" fill="white">
      <animate attributeName="cy" values="98;190" dur="2.2s" begin="0.5s" repeatCount="indefinite" />
      <animate attributeName="cx" values="118;158" dur="2.2s" begin="0.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="115" cy="96" r="1.8" fill="white">
      <animate attributeName="cy" values="96;190" dur="1.9s" begin="0.7s" repeatCount="indefinite" />
      <animate attributeName="cx" values="115;159" dur="1.9s" begin="0.7s" repeatCount="indefinite" />
    </circle>
    <circle cx="125" cy="93" r="1.2" fill="white">
      <animate attributeName="cy" values="93;190" dur="2.1s" begin="0.9s" repeatCount="indefinite" />
      <animate attributeName="cx" values="125;161" dur="2.1s" begin="0.9s" repeatCount="indefinite" />
    </circle>
    
    <!-- Star sparkles with shape morphing -->
    <path d="M120,110 L122,112 L120,114 L118,112 Z">
      <animate attributeName="d" values="M120,110 L122,112 L120,114 L118,112 Z;M118,110 L122,110 L122,114 L118,114 Z;M120,110 L122,112 L120,114 L118,112 Z" dur="0.6s" repeatCount="indefinite" />
      <animate attributeName="cy" values="110;190" dur="2.3s" begin="0.2s" repeatCount="indefinite" />
      <animate attributeName="cx" values="120;160" dur="2.3s" begin="0.2s" repeatCount="indefinite" />
      <animate attributeName="fill" values="white;yellow;white" dur="0.6s" repeatCount="indefinite" />
    </path>
  </g>
  
  <!-- Floating sparkles -->
  <g>
    <circle cx="70" cy="60" r="1" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="170" cy="40" r="1.2" fill="white">
      <animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="220" cy="100" r="0.8" fill="white">
      <animate attributeName="opacity" values="0.1;0.8;0.1" dur="3.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="50" cy="150" r="1" fill="white">
      <animate attributeName="opacity" values="0.2;0.9;0.2" dur="2.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="250" cy="180" r="1.1" fill="white">
      <animate attributeName="opacity" values="0.3;1;0.3" dur="3.2s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt by clearly depicting a floating teapot pouring stars into a crescent moon-shaped cup.

    The starry background enhances the visual appeal and aligns with the celestial theme.

    Player 1's image lacks clarity in the design, and the elements do not strongly represent the specified idea.

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
15
Player 2
36
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
1
Player 2
21
Ellipses

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

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

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

Player 1
6
Player 2
11
Groups

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
3
Patterns

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

Player 1
1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
16

Interactivity Metrics

Animations

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

Player 1
Player 2
24
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
8
Player 2
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
17
Player 2
38
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
9
Player 2
5
Use Elements

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

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