Back

SVG Drawing Match #416

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with clockwork trees and a waterfall cascading into clouds"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky and clouds -->
  <rect x="0" y="0" width="300" height="300" fill="#b3e0ff" />
  <circle cx="150" cy="100" r="80" fill="#ffffff" />
  <circle cx="110" cy="50" r="30" fill="#ffffff" />
  <circle cx="170" cy="50" r="20" fill="#ffffff" />
  <circle cx="130" cy="90" r="25" fill="#ffffff" />
  <circle cx="190" cy="90" r="20" fill="#ffffff" />
  
  <!-- Floating island -->
  <ellipse cx="150" cy="200" rx="180" ry="40" fill="#a1d76a" />
  
  <!-- Clockwork trees -->
  <rect x="110" y="170" width="20" height="40" fill="#8da0b3" />
  <rect x="150" y="160" width="15" height="50" fill="#8da0b3" />
  <rect x="190" y="175" width="15" height="35" fill="#8da0b3" />
  
  <!-- Waterfall -->
  <path d="M 120 200 Q 130 150 140 200 Q 150 150 160 200 Q 170 150 180 200 Q 190 150 200 200" fill="url(#water)" />
  <defs>
    <linearGradient id="water">
      <stop offset="0%" stop-color="#66d9e8" />
      <stop offset="100%" stop-color="#0080d6" />
    </linearGradient>
  </defs>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0FFFF;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFFFFF;stop-opacity:0" />
    </radialGradient>
    <pattern id="gearPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect width="40" height="40" fill="#F0E68C" />
      <circle cx="20" cy="20" r="10" fill="#8B4513" />
      <circle cx="20" cy="20" r="18" fill="none" stroke="#8B4513" stroke-width="2" />
    </pattern>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ADD8E6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1E90FF;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <g transform="translate(100,150)">
    <circle cx="0" cy="0" r="100" fill="#3CB371" />
    <g transform="rotate(45)">
      <rect x="-50" y="-50" width="100" height="20" fill="url(#gearPattern)" />
      <rect x="-50" y="0" width="100" height="20" fill="url(#gearPattern)" />
      <rect x="-50" y="50" width="100" height="20" fill="url(#gearPattern)" />
    </g>
    <g transform="rotate(-45)">
      <rect x="-50" y="-50" width="100" height="20" fill="url(#gearPattern)" />
      <rect x="-50" y="0" width="100" height="20" fill="url(#gearPattern)" />
      <rect x="-50" y="50" width="100" height="20" fill="url(#gearPattern)" />
    </g>
    <path d="M0,0 L100,50 L100,150 L0,200 Z" fill="#00FF7F" />
    <path d="M0,0 L-100,50 L-100,150 L0,200 Z" fill="#00FF7F" />
  </g>
  <path d="M100,100 Q150,100 150,150 T100,200" stroke="#FFFFFF" stroke-width="2" fill="none" />
  <path d="M100,200 L100,250 L150,250 C150,250 175,225 175,200 L175,175 C175,175 150,150 150,150 Z" fill="url(#waterGradient)" />
  <g transform="translate(150,250)">
    <circle cx="0" cy="0" r="20" fill="url(#cloudGradient)" />
    <circle cx="30" cy="0" r="20" fill="url(#cloudGradient)" />
    <circle cx="-30" cy="0" r="20" fill="url(#cloudGradient)" />
    <circle cx="15" cy="-15" r="20" fill="url(#cloudGradient)" />
    <circle cx="-15" cy="-15" r="20" fill="url(#cloudGradient)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission captures the concept more effectively with the inclusion of a waterfall and a semblance of clockwork-like elements in the trees.

    The composition shows creativity and adherence to the prompt by incorporating these details, and it has a more dynamic visual appeal with the use of gradients and textures suggesting clouds.

    Player 1's image is simpler and lacks the intricate elements described in 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
20
Rectangles

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

Player 1
4
Player 2
8
Circles

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
5

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