Back

SVG Drawing Match #2758

May 24, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating teacup pouring stars instead of tea into an upside-down umbrella."

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="url(#starGradient)" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#1E1E2F" />
  <g transform="translate(150, 100)">
    <ellipse cx="0" cy="0" rx="50" ry="30" fill="url(#teacupGradient)" />
    <rect x="-40" y="30" width="80" height="20" fill="url(#teacupGradient)" />
    <rect x="-10" y="50" width="20" height="50" fill="url(#teacupGradient)" />
    <path d="M-50,30 Q0,80 50,30" fill="none" stroke="#FFD700" stroke-width="5" />
    <g transform="translate(0, 80)">
      <path d="M-60,0 Q0,-100 60,0" fill="#87CEEB" />
      <path d="M-60,0 Q0,-100 60,0" fill="url(#starPattern)" />
    </g>
    <g transform="translate(0, 80)">
      <circle cx="0" cy="0" r="5" fill="#FFD700" />
      <circle cx="-20" cy="-20" r="5" fill="#FFD700" />
      <circle cx="20" cy="-20" r="5" fill="#FFD700" />
      <circle cx="-40" cy="-40" r="5" fill="#FFD700" />
      <circle cx="40" cy="-40" r="5" fill="#FFD700" />
    </g>
  </g>
</svg>
SVG by Claude Opus 4 Thinking (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="teacupGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#E8B4F8;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#9B59B6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#7D3C98;stop-opacity:1" />
    </linearGradient>
    
    <radialGradient id="starGrad">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#FFA500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6347;stop-opacity:0.8" />
    </radialGradient>
    
    <linearGradient id="umbrellaGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#2E86AB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#A23B72;stop-opacity:1" />
    </linearGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <pattern id="teacupPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="#FFD700" opacity="0.6"/>
      <circle cx="5" cy="5" r="1" fill="#FFF" opacity="0.4"/>
      <circle cx="15" cy="15" r="1" fill="#FFF" opacity="0.4"/>
    </pattern>
  </defs>
  
  <!-- Background elements -->
  <circle cx="50" cy="50" r="30" fill="#E8DAEF" opacity="0.3">
    <animate attributeName="r" values="30;35;30" dur="4s" repeatCount="indefinite"/>
  </circle>
  <circle cx="250" cy="80" r="25" fill="#D5A6BD" opacity="0.3">
    <animate attributeName="r" values="25;30;25" dur="3s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Floating teacup -->
  <g transform="translate(150, 80)">
    <animateTransform attributeName="transform" type="translate" values="150,80; 150,75; 150,80" dur="3s" repeatCount="indefinite"/>
    
    <!-- Cup handle -->
    <path d="M 20 0 Q 35 5, 35 20 Q 35 35, 20 40" stroke="url(#teacupGrad)" stroke-width="4" fill="none"/>
    
    <!-- Cup body -->
    <path d="M -30 0 Q -30 40, -10 50 L 10 50 Q 30 40, 30 0 Z" fill="url(#teacupGrad)" stroke="#7D3C98" stroke-width="2"/>
    
    <!-- Decorative pattern overlay -->
    <path d="M -30 0 Q -30 40, -10 50 L 10 50 Q 30 40, 30 0 Z" fill="url(#teacupPattern)" opacity="0.5"/>
    
    <!-- Cup rim -->
    <ellipse cx="0" cy="0" rx="30" ry="5" fill="#9B59B6" opacity="0.8"/>
    
    <!-- Saucer -->
    <ellipse cx="0" cy="55" rx="40" ry="8" fill="url(#teacupGrad)" opacity="0.9"/>
    <ellipse cx="0" cy="53" rx="35" ry="6" fill="#E8B4F8" opacity="0.6"/>
  </g>
  
  <!-- Star stream -->
  <g filter="url(#glow)">
    <!-- Large star -->
    <path d="M 150 110 l 3 9 l 9 1 l -7 6 l 2 9 l -7 -5 l -7 5 l 2 -9 l -7 -6 l 9 -1 z" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="translate" values="0,0; -10,40; 0,80" dur="2s" repeatCount="indefinite"/>
      <animateTransform attributeName="transform" type="rotate" values="0 150 110; 360 150 110" dur="3s" repeatCount="indefinite" additive="sum"/>
    </path>
    
    <!-- Medium stars -->
    <path d="M 140 120 l 2 6 l 6 1 l -5 4 l 1 6 l -5 -3 l -5 3 l 1 -6 l -5 -4 l 6 -1 z" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="translate" values="0,0; 5,50; -5,100" dur="2.5s" repeatCount="indefinite"/>
      <animate attributeName="opacity" values="1;0.5;1" dur="1.5s" repeatCount="indefinite"/>
    </path>
    
    <path d="M 160 115 l 2 6 l 6 1 l -5 4 l 1 6 l -5 -3 l -5 3 l 1 -6 l -5 -4 l 6 -1 z" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="translate" values="0,0; -5,45; 10,95" dur="2.2s" repeatCount="indefinite"/>
      <animate attributeName="opacity" values="0.8;1;0.8" dur="1.8s" repeatCount="indefinite"/>
    </path>
    
    <!-- Small stars -->
    <circle cx="145" cy="125" r="2" fill="#FFD700">
      <animate attributeName="cy" values="125;180" dur="1.8s" repeatCount="indefinite"/>
      <animate attributeName="opacity" values="1;0.3;1" dur="1s" repeatCount="indefinite"/>
    </circle>
    
    <circle cx="155" cy="130" r="1.5" fill="#FFA500">
      <animate attributeName="cy" values="130;185" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="opacity" values="0.8;1;0.8" dur="1.2s" repeatCount="indefinite"/>
    </circle>
    
    <circle cx="150" cy="135" r="1" fill="#FFD700">
      <animate attributeName="cy" values="135;190" dur="1.5s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <!-- Upside-down umbrella -->
  <g transform="translate(150, 220)">
    <!-- Umbrella canopy (inverted) -->
    <path d="M -60 0 Q -60 -30, -40 -35 Q -20 -38, 0 -35 Q 20 -38, 40 -35 Q 60 -30, 60 0 Z" fill="url(#umbrellaGrad)" stroke="#2E86AB" stroke-width="2"/>
    
    <!-- Umbrella ribs -->
    <line x1="-40" y1="0" x2="-40" y2="-32" stroke="#1A5276" stroke-width="1.5" opacity="0.6"/>
    <line x1="-20" y1="0" x2="-20" y2="-35" stroke="#1A5276" stroke-width="1.5" opacity="0.6"/>
    <line x1="0" y1="0" x2="0" y2="-35" stroke="#1A5276" stroke-width="1.5" opacity="0.6"/>
    <line x1="20" y1="0" x2="20" y2="-35" stroke="#1A5276" stroke-width="1.5" opacity="0.6"/>
    <line x1="40" y1="0" x2="40" y2="-32" stroke="#1A5276" stroke-width="1.5" opacity="0.6"/>
    
    <!-- Handle -->
    <line x1="0" y1="0" x2="0" y2="25" stroke="#4A235A" stroke-width="3"/>
    <path d="M 0 25 Q 8 25, 8 33 Q 8 40, 0 40" stroke="#4A235A" stroke-width="3" fill="none"/>
    
    <!-- Collected stars inside umbrella -->
    <circle cx="-20" cy="-15" r="3" fill="#FFD700" opacity="0.8"/>
    <circle cx="15" cy="-10" r="2" fill="#FFA500" opacity="0.7"/>
    <circle cx="0" cy="-20" r="2.5" fill="#FFD700" opacity="0.9"/>
    <circle cx="-35" cy="-8" r="1.5" fill="#FF6347" opacity="0.6"/>
    <circle cx="25" cy="-18" r="2" fill="#FFD700" opacity="0.8"/>
  </g>
  
  <!-- Magical sparkles -->
  <circle cx="180" cy="140" r="1" fill="#FFF">
    <animate attributeName="opacity" values="0;1;0" dur="1s" repeatCount="indefinite"/>
  </circle>
  <circle cx="120" cy="160" r="0.8" fill="#FFF">
    <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
  </circle>
  <circle cx="170" cy="180" r="1.2" fill="#FFF">
    <animate attributeName="opacity" values="0;1;0" dur="0.8s" repeatCount="indefinite"/>
  </circle>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Opus 4 Thinking (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission adheres more closely to the prompt by featuring a floating teacup pouring stars into an upside-down umbrella, capturing the surreal and whimsical concept effectively.

    The composition is visually appealing, with harmonious colors and clear elements, whereas Player 1's image is abstract and lacks essential details to represent the prompt clearly or creatively.

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
33
Rectangles

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

Player 1
3
Player 2
Circles

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

Player 1
6
Player 2
16
Ellipses

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

Player 1
1
Player 2
3
Lines

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

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

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
12

Interactivity Metrics

Animations

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

Player 1
Player 2
17
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
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
6
Player 2
55
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
3
Player 2
5
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.