Back

SVG Drawing Match #2507

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flying teapot pouring stars over a crescent moon."

SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b0f2b"/>
      <stop offset="100%" stop-color="#1a1f44"/>
    </linearGradient>
    <linearGradient id="teapotBody" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff8c00"/>
      <stop offset="100%" stop-color="#ffc107"/>
    </linearGradient>
    <linearGradient id="teapotHighlight" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.6)"/>
      <stop offset="100%" stop-color="rgba(255,255,255,0)"/>
    </linearGradient>
    <radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffde7"/>
      <stop offset="100%" stop-color="#f5f5f5"/>
    </radialGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff9c4" stop-opacity="1"/>
      <stop offset="100%" stop-color="#fff176" stop-opacity="0"/>
    </radialGradient>
    <symbol id="star" viewBox="0 0 10 10">
      <polygon points="5,0 6.2,3.5 10,3.8 7,6 8,9.5 5,7.5 2,9.5 3,6 0,3.8 3.8,3.5" fill="#fffde7"/>
    </symbol>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Crescent Moon -->
  <g transform="translate(220,220)">
    <path d="M0,-50 A50,50 0 1,1 0,50 A35,35 0 1,0 0,-35 Z" fill="url(#moonGrad)"/>
  </g>
  <!-- Flying Teapot -->
  <g transform="translate(80,80) rotate(-20)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#teapotBody)"/>
    <ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#teapotHighlight)" />
    <!-- Lid -->
    <ellipse cx="0" cy="-22" rx="20" ry="8" fill="#e65100"/>
    <rect x="-5" y="-30" width="10" height="8" rx="3" fill="#ef6c00"/>
    <!-- Spout -->
    <path d="M40,-5 C60,-10 70,10 50,20" fill="none" stroke="#ffab40" stroke-width="6" stroke-linecap="round"/>
    <!-- Handle -->
    <path d="M-40,-5 C-60,-15 -60,15 -40,5" fill="none" stroke="#ffab40" stroke-width="6" stroke-linecap="round"/>
    <!-- Wings -->
    <g opacity="0.8">
      <path d="M-15,0 C-40,-20 -60,-50 -30,-60 C-10,-55 -5,-30 -15,0 Z" fill="#fff" transform="translate(-60,0) rotate(10)" filter="url(#glow)"/>
      <path d="M-15,0 C-40,20 -60,50 -30,60 C-10,55 -5,30 -15,0 Z" fill="#fff" transform="translate(-60,0) scale(1,-1) rotate(10)" filter="url(#glow)"/>
    </g>
  </g>
  <!-- Stream of Stars -->
  <g>
    <use href="#star" x="130" y="115" width="12" height="12" filter="url(#glow)"/>
    <use href="#star" x="145" y="130" width="8" height="8" filter="url(#glow)"/>
    <use href="#star" x="155" y="150" width="10" height="10" filter="url(#glow)"/>
    <use href="#star" x="165" y="170" width="6" height="6" filter="url(#glow)"/>
    <use href="#star" x="180" y="190" width="14" height="14" filter="url(#glow)"/>
    <use href="#star" x="140" y="140" width="6" height="6" fill="#fff9c4" filter="url(#glow)"/>
    <use href="#star" x="150" y="160" width="5" height="5" fill="#fff9c4" filter="url(#glow)"/>
  </g>
</svg>
SVG by o3 high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <!-- Gradients -->
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#021026"/>
      <stop offset="50%" stop-color="#0a1b4d"/>
      <stop offset="100%" stop-color="#102060"/>
    </linearGradient>

    <radialGradient id="moonGrad" cx="50%" cy="50%" r="60%">
      <stop offset="0%" stop-color="#fff9c4"/>
      <stop offset="60%" stop-color="#ffe082"/>
      <stop offset="100%" stop-color="#ffca28"/>
    </radialGradient>

    <linearGradient id="potGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#aed9ff"/>
      <stop offset="50%" stop-color="#5ca8ff"/>
      <stop offset="100%" stop-color="#2970ff"/>
    </linearGradient>

    <linearGradient id="wingGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#e0f3ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#8bbdff" stop-opacity="0.8"/>
    </linearGradient>

    <radialGradient id="starGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="50%" stop-color="#fff4a6"/>
      <stop offset="100%" stop-color="#ffd740"/>
    </radialGradient>

    <!-- Star glow -->
    <filter id="starGlow" x="-200%" y="-200%" width="400%" height="400%">
      <feGaussianBlur stdDeviation="1.5" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>

    <!-- Crescent moon mask -->
    <mask id="crescentMask">
      <rect width="300" height="300" fill="black"/>
      <circle cx="220" cy="150" r="60" fill="white"/>
      <circle cx="245" cy="140" r="50" fill="black"/>
    </mask>

    <!-- Star symbol -->
    <symbol id="starSymbol" viewBox="-5 -5 10 10">
      <polygon points="0,-5 1.9,-1.5 4.8,-1.5 2.3,0.6 3.6,4.5 0,2.5 -3.6,4.5 -2.3,0.6 -4.8,-1.5 -1.9,-1.5" fill="url(#starGrad)"/>
    </symbol>
  </defs>

  <!-- Night sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Crescent moon -->
  <circle cx="220" cy="150" r="60" fill="url(#moonGrad)" mask="url(#crescentMask)" filter="url(#starGlow)"/>

  <!-- Flying teapot -->
  <g transform="translate(80 60) rotate(-20)">
    <!-- Wings -->
    <path d="M-5 -10 C-30 -30 -45 -30 -50 -10 C-35 -5 -20 -5 -5 -10 Z" fill="url(#wingGrad)" opacity="0.8"/>
    <path d="M5 -10 C30 -30 45 -30 50 -10 C35 -5 20 -5 5 -10 Z" fill="url(#wingGrad)" opacity="0.8"/>
    <!-- Pot body -->
    <ellipse cx="0" cy="20" rx="30" ry="20" fill="url(#potGrad)"/>
    <ellipse cx="0" cy="3" rx="24" ry="8" fill="#e6f3ff" stroke="#d0e8ff" stroke-width="1"/>
    <circle cx="0" cy="-5" r="3" fill="#ffffff" stroke="#d0e8ff" stroke-width="0.5"/>
    <!-- Spout -->
    <path d="M25 5 C45 -5 45 35 25 25 L25 20 C35 20 35 0 25 5 Z" fill="url(#potGrad)"/>
    <!-- Handle -->
    <path d="M-25 10 C-45 0 -45 40 -25 30" fill="none" stroke="url(#potGrad)" stroke-width="6" stroke-linecap="round"/>
  </g>

  <!-- Pouring stars -->
  <g filter="url(#starGlow)">
    <use href="#starSymbol" x="120" y="70"  width="6"  height="6"/>
    <use href="#starSymbol" x="130" y="80"  width="8"  height="8"/>
    <use href="#starSymbol" x="140" y="92"  width="10" height="10"/>
    <use href="#starSymbol" x="152" y="104" width="8"  height="8"/>
    <use href="#starSymbol" x="165" y="118" width="6"  height="6"/>
    <use href="#starSymbol" x="178" y="130" width="10" height="10"/>
    <use href="#starSymbol" x="190" y="142" width="12" height="12"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission demonstrates more creativity and better technical execution.

    The addition of propellers on the teapot enhances the concept of it flying, and the vibrant yellow crescent moon contrasts beautifully with the blue teapot and dark background.

    The overall composition is visually appealing and adheres more closely to 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
11
Player 2
13
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
Player 2
4
Ellipses

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

Player 1
3
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
1
Paths

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

Player 1
5
Player 2
4
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
5
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
1
Player 2
1
Masks

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
17

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

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
15
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
7
Player 2
8
Use Elements

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

Player 1
7
Player 2
7

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