Back

SVG Drawing Match #2706

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating teapot pouring stars into an open book."

SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#1a1a2e"/>
      <stop offset="100%" stop-color="#0f3460"/>
    </radialGradient>
    <linearGradient id="teapotGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <linearGradient id="bookGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f6e27f"/>
      <stop offset="100%" stop-color="#d4a373"/>
    </linearGradient>
    <pattern id="starPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#fffc00" />
    </pattern>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)" />
  <!-- Floating teapot -->
  <g transform="translate(90,40) scale(0.8)">
    <path d="M50 10 Q30 10 25 30 Q25 50 45 55 Q50 70 65 70 Q80 70 85 55 Q105 50 105 30 Q100 10 80 10 Z" 
          fill="url(#teapotGrad)" stroke="#fff" stroke-width="1" filter="url(#glow)"/>
    <ellipse cx="60" cy="55" rx="5" ry="3" fill="#ffd1dc" />
    <path d="M80 12 L90 5 L95 15" stroke="#fff" stroke-width="2" fill="none"/>
  </g>
  <!-- Stars pouring -->
  <g id="stars">
    <defs>
      <polygon id="star" points="5,0 6.5,3.5 10,4 7,6.5 8,10 5,8 2,10 3,6.5 0,4 3.5,3.5" fill="#fffc00" filter="url(#glow)"/>
    </defs>
    <use href="#star" x="140" y="90" opacity="0.9" transform="scale(0.8)"/>
    <use href="#star" x="150" y="110" opacity="0.8" transform="scale(0.6)"/>
    <use href="#star" x="160" y="130" opacity="0.7" transform="scale(0.5)"/>
    <use href="#star" x="170" y="150" opacity="0.6" transform="scale(0.4)"/>
    <use href="#star" x="180" y="170" opacity="0.5" transform="scale(0.3)"/>
    <use href="#star" x="190" y="190" opacity="0.4" transform="scale(0.2)"/>
  </g>
  <!-- Open book -->
  <g transform="translate(50,180)">
    <path d="M0,0 L120,0 Q100,20 60,0 Q20,20 0,0 Z" fill="url(#bookGrad)" stroke="#7a4f01" stroke-width="2"/>
    <path d="M0,0 L0,50 Q20,40 60,50 Q100,40 120,50 L120,0" fill="#fff" stroke="#7a4f01" stroke-width="1"/>
    <!-- book pages lines -->
    <g stroke="#e0c097" stroke-width="0.5">
      <path d="M10,10 L110,10"/>
      <path d="M10,20 L110,20"/>
      <path d="M10,30 L110,30"/>
      <path d="M10,40 L110,40"/>
    </g>
  </g>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1a1a40"/>
      <stop offset="100%" stop-color="#2e0057"/>
    </linearGradient>
    <radialGradient id="teapotGrad" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#8ff"/>
      <stop offset="100%" stop-color="#4aa"/>
    </radialGradient>
    <radialGradient id="starGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffacd"/>
      <stop offset="100%" stop-color="#f5d300"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="dropShadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000" flood-opacity="0.5"/>
    </filter>
    <symbol id="star" viewBox="-5 -5 10 10">
      <polygon points="0,-5 1.47,-1.54 4.76,-1.54 2.17,1.07 3.09,4.45 0,2.36 -3.09,4.45 -2.17,1.07 -4.76,-1.54 -1.47,-1.54"/>
    </symbol>
  </defs>

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

  <g fill="#fff" fill-opacity="0.8">
    <circle cx="20" cy="30" r="1"/>
    <circle cx="50" cy="80" r="1.2"/>
    <circle cx="120" cy="40" r="1"/>
    <circle cx="80" cy="120" r="0.8"/>
    <circle cx="200" cy="30" r="1"/>
    <circle cx="250" cy="90" r="0.9"/>
    <circle cx="160" cy="60" r="1"/>
    <circle cx="30" cy="150" r="0.8"/>
    <circle cx="90" cy="200" r="1"/>
    <circle cx="270" cy="180" r="0.7"/>
  </g>

  <g transform="translate(50,180)">
    <path d="M0,0 L30,40 L30,120 L0,80 Z" fill="#8b4513" stroke="#5a2d00" stroke-width="2"/>
    <path d="M200,0 L170,40 L170,120 L200,80 Z" fill="#8b4513" stroke="#5a2d00" stroke-width="2"/>
    <path d="M30,0 Q100,20 170,0 L170,80 Q100,100 30,80 Z" fill="#f5f3e8" stroke="#cca" stroke-width="1"/>
    <g stroke="#ddd" stroke-width="0.5">
      <line x1="40" y1="20" x2="95" y2="20"/>
      <line x1="40" y1="35" x2="95" y2="35"/>
      <line x1="40" y1="50" x2="95" y2="50"/>
      <line x1="40" y1="65" x2="95" y2="65"/>
      <line x1="105" y1="20" x2="160" y2="20"/>
      <line x1="105" y1="35" x2="160" y2="35"/>
      <line x1="105" y1="50" x2="160" y2="50"/>
      <line x1="105" y1="65" x2="160" y2="65"/>
    </g>
  </g>

  <g transform="translate(200,70)" filter="url(#dropShadow)">
    <path d="M0,10 C-30,10 -35,50 0,50 C35,50 30,10 0,10 Z" fill="url(#teapotGrad)" stroke="#4aa" stroke-width="2"/>
    <ellipse cx="0" cy="10" rx="30" ry="10" fill="url(#teapotGrad)" stroke="#4aa" stroke-width="2"/>
    <path d="M30,20 C60,15 75,40 45,45 L40,38 C60,35 50,20 30,25 Z" fill="url(#teapotGrad)" stroke="#4aa" stroke-width="2"/>
    <path d="M-30,20 C-50,10 -50,50 -30,40" fill="none" stroke="url(#teapotGrad)" stroke-width="8"/>
    <ellipse cx="0" cy="0" rx="20" ry="8" fill="url(#teapotGrad)" stroke="#4aa" stroke-width="2"/>
    <circle cx="0" cy="-4" r="4" fill="#4aa"/>
    <path d="M-10,30 C0,20 10,30 0,40" fill="none" stroke="#4aa" stroke-width="1" stroke-dasharray="2,2"/>
  </g>

  <g transform="translate(200,70)">
    <use href="#star" transform="scale(0.8) rotate(0) translate(45,45)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.6) rotate(20) translate(55,65)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.5) rotate(-15) translate(60,90)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.7) rotate(10) translate(50,115)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.6) rotate(-30) translate(40,140)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.5) rotate(30) translate(55,155)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.7) rotate(5) translate(70,185)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.6) rotate(-20) translate(90,205)" fill="url(#starGrad)" filter="url(#glow)"/>
    <use href="#star" transform="scale(0.5) rotate(10) translate(120,220)" fill="url(#starGrad)" filter="url(#glow)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission is more visually striking and adheres better to the prompt, with a detailed teapot design and a clear depiction of stars pouring into the book.

    The composition is dynamic and visually engaging, while Player 1's submission lacks detail and appears less polished overall.

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
30
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
1
Player 2
11
Ellipses

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

Player 1
1
Player 2
2
Lines

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

Player 1
Player 2
8
Polygons

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

Player 1
1
Player 2
1
Paths

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

Player 1
8
Player 2
7
Groups

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
12

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
8
Player 2
12

Complexity Metrics

Path Commands

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

Player 1
29
Player 2
28
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

Player 1
6
Player 2
6
Use Elements

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

Player 1
6
Player 2
9

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