Back

SVG Drawing Match #1108

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with giant teapot waterfall, stylized vector"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="islandGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#6dd5ed" />
      <stop offset="100%" stop-color="#2193b0" />
    </linearGradient>
    <linearGradient id="teapotGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff7e5f" />
      <stop offset="100%" stop-color="#feb47b" />
    </linearGradient>
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#a0e0ec" />
      <stop offset="100%" stop-color="#0076ff" />
    </radialGradient>
  </defs>
  
  <rect width="300" height="300" fill="#87ceeb" />
  
  <ellipse cx="150" cy="225" rx="100" ry="30" fill="url(#islandGradient)" />
  
  <path d="M50 225 Q150 150 250 225 Q200 280 100 280 Z" fill="#8bc34a" />
  
  <g transform="translate(125, 120)">
    <path d="M-30 -15 L30 -15 L20 15 L-20 15 Z" fill="url(#teapotGradient)" />
    <path d="M-20 -15 A20 15 0 1 1 20 -15 A20 15 0 1 1 -20 -15 Z" fill="#fff" />
    <path d="M-20 -15 L-40 -30 L-40 -25 L-20 -10 Z" fill="url(#teapotGradient)" />
    <circle cx="0" cy="-15" r="6" fill="#fff" />
  </g>
  
  <path d="M150 145 Q160 200 140 250 Q170 240 150 280 L150 280 Q160 250 155 240 Q170 210 150 145 Z" fill="url(#waterGradient)" />

  <path d="M145 120 Q150 95 170 80 Q160 60 145 120 Z" fill="#7f4c96" opacity="0.8" />
  
  <path d="M250 130 Q230 150 240 170 Q220 150 250 130 Z" fill="#ffb74d" opacity="0.6" />
  
  <path d="M50 180 Q30 190 40 210 Q20 200 50 180 Z" fill="#ff8591" opacity="0.7" />
  
  <text x="150" y="20" font-family="Arial" font-size="20" text-anchor="middle" fill="#ffffff">
    Floating Island
  </text>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#ff69b4" stop-opacity="1"/>
      <stop offset="1" stop-color="#ffd7be" stop-opacity="1"/>
    </linearGradient>
    <linearGradient id="grad2" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#87ceeb" stop-opacity="1"/>
      <stop offset="1" stop-color="#4682b4" stop-opacity="1"/>
    </linearGradient>
    <pattern id="pat1" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#fff" rx="2"/>
      <circle cx="10" cy="10" r="4" fill="#666"/>
    </pattern>
  </defs>
  <g transform="translate(150 150)">
    <circle cx="0" cy="0" r="120" fill="url(#grad1)" stroke="#fff" stroke-width="5"/>
    <g transform="rotate(-30)">
      <rect x="-60" y="-30" width="120" height="60" fill="#fff" rx="10"/>
      <rect x="-55" y="-25" width="110" height="50" fill="url(#pat1)" rx="8"/>
      <path d="M-50 0 L50 0 L50 -20 L-50 -20 Z" fill="#fff" stroke="#666" stroke-width="2"/>
    </g>
    <g transform="translate(0 -80)">
      <path d="M-20 0 C-20 20 -10 30 0 30 L20 30 C30 30 40 20 40 0 L40 -20 C40 -20 30 -30 20 -30 L0 -30 C-10 -30 -20 -20 -20 0 Z" fill="url(#grad2)"/>
      <path d="M-10 0 C-10 10 -5 15 0 15 L10 15 C15 15 20 10 20 0 L20 -10 C20 -15 15 -20 10 -20 L0 -20 C-5 -20 -10 -15 -10 0 Z" fill="#fff" stroke="#666" stroke-width="2"/>
    </g>
    <g transform="translate(0 -120)">
      <circle cx="0" cy="0" r="10" fill="#fff" stroke="#666" stroke-width="2"/>
      <circle cx="0" cy="0" r="5" fill="#666"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 1

Judge's Analysis

    Player 1's submission better adheres to the prompt with a visible floating island and a suggestion of a waterfall, capturing the fantastical element of the theme.

    The composition, though minimal, creatively uses color and shapes to imply a teapot.

    Player 2's image lacks clear elements related to the floating island or the teapot waterfall, making it less aligned with 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
10
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
1
Player 2
4
Ellipses

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

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

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

Player 1
8
Player 2
3
Groups

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

Player 1
1
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
6

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

Complexity Metrics

Path Commands

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

Player 1
37
Player 2
23
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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