Back

SVG Drawing Match #1393

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a single giant dandelion and hovering bee"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(173,216,230);stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Floating Island -->
  <g id="island">
    <polygon points="150,200 100,270 200,270" fill="saddlebrown" stroke="white" stroke-width="1" />
    <ellipse cx="150" cy="190" rx="60" ry="20" fill="forestgreen" />
  </g>
  
  <!-- Dandelion -->
  <line x1="150" y1="160" x2="150" y2="110" stroke="#8FBC8F" stroke-width="4" />
  <circle cx="150" cy="100" r="40" fill="none" stroke="white" stroke-width="2" />
  <!-- Dandelion Seeds -->
  <g fill="white">
    <line x1="150" y1="60" x2="140" y2="30" stroke="white" stroke-width="1" />
    <line x1="150" y1="60" x2="160" y2="30" stroke="white" stroke-width="1" />
    <circle cx="140" cy="30" r="2" />
    <circle cx="160" cy="30" r="2" />
    <line x1="190" y1="80" x2="210" y2="60" stroke="white" stroke-width="1" />
    <circle cx="210" cy="60" r="2" />
    <line x1="110" y1="80" x2="90" y2="60" stroke="white" stroke-width="1" />
    <circle cx="90" cy="60" r="2" />
  </g>
  
  <!-- Hovering Bee -->
  <g id="bee" transform="rotate(-10, 80, 100)">
    <ellipse cx="80" cy="100" rx="15" ry="10" fill="yellow" stroke="black" stroke-width="2"/>
    <!-- Stripes -->
    <line x1="75" y1="95" x2="85" y2="95" stroke="black" stroke-width="2"/>
    <line x1="75" y1="100" x2="85" y2="100" stroke="black" stroke-width="2"/>
    <line x1="75" y1="105" x2="85" y2="105" stroke="black" stroke-width="2"/>
    <!-- Wings -->
    <ellipse cx="75" cy="90" rx="8" ry="5" fill="lightblue" fill-opacity="0.6"/>
    <ellipse cx="85" cy="90" rx="8" ry="5" fill="lightblue" fill-opacity="0.6"/>
    <!-- Stinger -->
    <polygon points="67,100 70,103 70,97" fill="black"/>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Island -->
  <g transform="translate(50, 150)">
    <ellipse cx="100" cy="50" rx="70" ry="30" fill="#32CD32" opacity="0.7" />
    <path d="M100,80C130,80 150,60 150,40L150,20C150,0 120,0 100,20L50,40C50,60 70,80 100,80Z" fill="#228B22" opacity="0.5" />
  </g>

  <!-- Dandelion -->
  <g transform="translate(120, 50)">
    <circle cx="0" cy="0" r="30" fill="#F2C464" />
    <path d="M0,0L-30,60L-60,0L0,60L60,0L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
    <path d="M-30,60L-60,90L-90,60L-60,30L-30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
    <path d="M30,60L60,90L90,60L60,30L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
    <path d="M0,60L-30,90L-60,60L0,30L30,60Z" fill="#F7DC6F" stroke="#F2C464" stroke-width="2" />
  </g>

  <!-- Bee -->
  <g transform="translate(180, 80)">
    <ellipse cx="0" cy="0" rx="10" ry="5" fill="#F7DC6F" stroke="#000" stroke-width="2" />
    <path d="M-10,0L-20,-10L-10,-20L0,-10L10,-20L20,-10L10,0Z" fill="#F2C464" stroke="#000" stroke-width="2" />
    <path d="M-10,0L-10,10L-20,20L-30,10L-20,0Z" fill="#F2C464" stroke="#000" stroke-width="2" />
    <circle cx="10" cy="5" r="2" fill="#000" />
  </g>

  <!-- Gradients and patterns -->
  <defs>
    <linearGradient id="grad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#66CCCC" />
      <stop offset="100%" stop-color="#3399FF" />
    </linearGradient>
    <pattern id="pat" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="5" height="5" fill="#CCCCCC" />
      <rect x="5" y="5" width="5" height="5" fill="#CCCCCC" />
    </pattern>
  </defs>

  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#grad)" opacity="0.3" />

  <!-- Island shadow -->
  <ellipse cx="150" cy="250" rx="70" ry="30" fill="#000" opacity="0.2" />

  <!-- Texture -->
  <rect x="0" y="0" width="300" height="300" fill="url(#pat)" opacity="0.1" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's submission clearly adheres to the prompt with a simple yet effective depiction of a floating island, a distinct giant dandelion, and a hovering bee.

    The composition is minimalistic but directly represents the idea given.

    Player 2's submission is more abstract and less recognizable, making it harder to relate to the prompt's elements.

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
20
Player 2
16
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
5
Player 2
2
Ellipses

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

Player 1
4
Player 2
3
Lines

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

Player 1
8
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
8

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
3

Complexity Metrics

Path Commands

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

Player 1
Player 2
46
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

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

Similar Challenges