Back

SVG Drawing Match #457

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flying teapot pouring stars over a tiny cityscape"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#03045e"/>
    </linearGradient>
    <radialGradient id="teapotGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff9f1c"/>
      <stop offset="100%" stop-color="#ff3f34"/>
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1.5" fill="#ffff99"/>
    </pattern>
    <linearGradient id="buildingsGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#222831"/>
      <stop offset="100%" stop-color="#393e46"/>
    </linearGradient>
  </defs>
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <!-- Tiny Cityscape -->
  <g transform="translate(0, 200)">
    <rect x="20" y="0" width="20" height="50" fill="url(#buildingsGradient)" />
    <rect x="50" y="0" width="15" height="30" fill="url(#buildingsGradient)" />
    <rect x="80" y="0" width="25" height="60" fill="url(#buildingsGradient)" />
    <rect x="115" y="0" width="10" height="40" fill="url(#buildingsGradient)" />
    <rect x="135" y="0" width="20" height="50" fill="url(#buildingsGradient)" />
    <rect x="170" y="0" width="15" height="35" fill="url(#buildingsGradient)" />
    <rect x="200" y="0" width="20" height="60" fill="url(#buildingsGradient)" />
    <rect x="235" y="0" width="10" height="30" fill="url(#buildingsGradient)" />
    <rect x="255" y="0" width="15" height="45" fill="url(#buildingsGradient)" />
  </g>
  <!-- Flying Teapot -->
  <g transform="translate(150, 100) scale(1.2)">
    <!-- Body -->
    <path d="M0,-20 C-20,-20 -20,10 0,10 C20,10 20,-20 0,-20Z" fill="url(#teapotGradient)" stroke="#ffffff" stroke-width="1"/>
    <!-- Spout -->
    <path d="M0,-15 C-5,-10 -5,-5 0,-5" stroke="#ffffff" stroke-width="2"/>
    <circle cx="-10,-10" r="3" fill="#ffffff"/>
    <!-- Handle -->
    <path d="M15,-15 C20,-10 20,-5 15,0" stroke="#ffffff" stroke-width="2"/>
    <!-- Wings -->
    <g fill="rgba(255,255,255,0.6)">
      <path d="M-25,-5 Q-40,-15 -25,-25 Q-35,-15 -25,-5Z" transform="rotate(-30)"/>
      <path d="M25,-5 Q40,-15 25,-25 Q35,-15 25,-5Z" transform="rotate(30)"/>
    </g>
  </g>
  <!-- Pouring Stars -->
  <g>
    <use href="#starPattern" x="120" y="130">
      <animateTransform attributeName="transform" type="translate" from="0,0" to="0,100" dur="5s" repeatCount="indefinite" />
    </use>
    <use href="#starPattern" x="150" y="140">
      <animateTransform attributeName="transform" type="translate" from="0,0" to="0,100" dur="6s" repeatCount="indefinite" />
    </use>
    <use href="#starPattern" x="180" y="135">
      <animateTransform attributeName="transform" type="translate" from="0,0" to="0,100" dur="4s" repeatCount="indefinite" />
    </use>
    <use href="#starPattern" x="160" y="150">
      <animateTransform attributeName="transform" type="translate" from="0,0" to="0,100" dur="5.5s" repeatCount="indefinite" />
    </use>
    <use href="#starPattern" x="140" y="145">
      <animateTransform attributeName="transform" type="translate" from="0,0" to="0,100" dur="4.5s" repeatCount="indefinite" />
    </use>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%" >
      <stop offset="0%" stop-color="#1358b3" stop-opacity="1" />
      <stop offset="100%" stop-color="#3a86e5" stop-opacity="1" />
    </linearGradient>
    <radialGradient id="starGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#fff" stop-opacity="1" />
      <stop offset="100%" stop-color="#ff0" stop-opacity="0" />
    </radialGradient>
    <linearGradient id="potGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#a96476" stop-opacity="1" />
      <stop offset="100%" stop-color="#841115" stop-opacity="1" />
    </linearGradient>
    <pattern id="cityPattern" x="10" y="150" width="120" height="100" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="20" rx="2" fill="#83464e" />
      <rect x="20" y="10" width="15" height="30" rx="3" fill="#83464e" />
      <rect x="40" y="20" width="20" height="40" rx="4" fill="#83464e" />
      <rect x="70" y="10" width="15" height="30" rx="3" fill="#83464e" />
      <rect x="90" y="0" width="10" height="20" rx="2" fill="#83464e" />
    </pattern>
  </defs>
  
  <!-- Background sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)" />
  
  <!-- Cityscape -->
  <rect x="10" y="250" width="280" height="40" fill="url(#cityPattern)" />
  
  <!-- Flying teapot -->
  <g transform="translate(70, 70) rotate(30)">
    <path d="M 30 5 L 60 30 0 30 30 5 Z" fill="url(#potGrad)" rx="5" />
    <ellipse cx="30" cy="35" rx="25" ry="10" fill="#584a3e" />
    <rect x="20" y="45" width="20" height="5" fill="#584a3e" rx="2" />
    <path d="M 30 50 L 50 55 30 60 Z" fill="#584a3e" />
    <circle cx="50" cy="30" r="5" fill="#fff" />
  </g>
  
  <!-- Pouring stars -->
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="2" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="10" cy="20" r="2" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="rotate" from="0 10 20" to="360 10 20" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="-15" cy="15" r="2" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="rotate" from="0 -15 15" to="360 -15 15" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="25" cy="-10" r="2" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="rotate" from="0 25 -10" to="360 25 -10" dur="2s" repeatCount="indefinite" />
    </circle>
    <path d="M 0 0 L 3 4 -3 4 Z" fill="url(#starGrad)">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="2s" repeatCount="indefinite" />
    </path>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's image more clearly represents the concept of a flying teapot pouring stars over a cityscape.

    The teapot is more discernible, and the stars are visibly being poured over the city, adhering closely to the prompt.

    Additionally, the color contrast between the teapot, stars, and cityscape enhances the visual appeal, making it a technically stronger submission.

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
17
Player 2
17
Rectangles

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

Player 1
10
Player 2
8
Circles

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

Player 1
2
Player 2
5
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
8

Interactivity Metrics

Animations

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

Player 1
5
Player 2
5
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
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
16
Player 2
9
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
4
Player 2
4
Use Elements

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

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