Back

SVG Drawing Match #1859

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating islands connected by rainbow bridges"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#F0F8FF" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Sun -->
  <circle cx="280" cy="20" r="20" fill="yellow" />

  <!-- Island 1 -->
  <path d="M50 200 Q100 180 150 200 Q200 220 250 200 Q200 180 150 160 Q100 140 50 160 Z" fill="#8db600" />
  <path d="M100 195 Q120 185 150 195 Q180 205 200 195 Q180 185 150 195 Q120 205 100 195" fill="#b3cc33" />
  
  <!-- Island 2 -->
  <path d="M180 130 Q200 120 220 130 Q240 140 250 160 Q240 180 220 190 Q200 200 180 190 Q160 180 150 160 Z" fill="#8db600" />
  <path d="M205 135 Q215 130 220 135 Q225 140 230 160 Q225 180 220 185 Q215 190 205 185 Q195 180 190 160 Q195 140 205 135" fill="#b3cc33" />

  <!-- Rainbow bridge -->
  <path d="M50 200 Q100 180 150 200 Q200 220 250 200" fill="none" stroke="#ff0000" stroke-width="10" />
  <path d="M50 195 Q100 175 150 195 Q200 215 250 195" fill="none" stroke="#ffcc00" stroke-width="10" />
  <path d="M50 190 Q100 170 150 190 Q200 210 250 190" fill="none" stroke="#33cc33" stroke-width="10" />
  <path d="M50 185 Q100 165 150 185 Q200 205 250 185" fill="none" stroke="#3399ff" stroke-width="10" />
  
</svg>
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="100%">
      <stop offset="0%" stop-color="#87ceeb"/>
      <stop offset="100%" stop-color="#1e90ff"/>
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16.6%" stop-color="#ff7f00"/>
      <stop offset="33.2%" stop-color="#ffff00"/>
      <stop offset="49.8%" stop-color="#00ff00"/>
      <stop offset="66.4%" stop-color="#0000ff"/>
      <stop offset="83%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#8f00ff"/>
    </linearGradient>
    <linearGradient id="grassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#32cd32"/>
      <stop offset="100%" stop-color="#228b22"/>
    </linearGradient>
    <radialGradient id="sunGradient" cx="0.8" cy="0.2" r="0.3">
      <stop offset="0%" stop-color="#fff176"/>
      <stop offset="100%" stop-color="#ffeb3b"/>
    </radialGradient>
    <radialGradient id="cloudGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#f0f0f0"/>
    </radialGradient>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="url(#sunGradient)" />
  
  <!-- Clouds -->
  <g>
    <ellipse cx="80" cy="80" rx="40" ry="20" fill="url(#cloudGradient)" />
    <ellipse cx="100" cy="80" rx="40" ry="20" fill="url(#cloudGradient)" />
    <ellipse cx="90" cy="75" rx="40" ry="20" fill="url(#cloudGradient)" />
    
    <ellipse cx="220" cy="100" rx="30" ry="15" fill="url(#cloudGradient)" />
    <ellipse cx="235" cy="100" rx="30" ry="15" fill="url(#cloudGradient)" />
    <ellipse cx="225" cy="95" rx="30" ry="15" fill="url(#cloudGradient)" />
  </g>
  
  <!-- Floating Islands -->
  <g>
    <!-- Island 1 -->
    <ellipse cx="70" cy="200" rx="50" ry="20" fill="url(#grassGradient)" />
    <g>
      <rect x="55" y="185" width="5" height="15" fill="#8b4513" />
      <circle cx="57.5" cy="180" r="7" fill="#228b22" />
    </g>
    <g>
      <rect x="65" y="185" width="5" height="15" fill="#8b4513" />
      <circle cx="67.5" cy="180" r="7" fill="#228b22" />
    </g>
    
    <!-- Island 2 -->
    <ellipse cx="150" cy="150" rx="60" ry="25" fill="url(#grassGradient)" />
    <g>
      <rect x="135" y="135" width="5" height="15" fill="#8b4513" />
      <circle cx="137.5" cy="130" r="7" fill="#228b22" />
    </g>
    <g>
      <rect x="155" y="135" width="5" height="15" fill="#8b4513" />
      <circle cx="157.5" cy="130" r="7" fill="#228b22" />
    </g>
    
    <!-- Island 3 -->
    <ellipse cx="230" cy="200" rx="50" ry="20" fill="url(#grassGradient)" />
    <g>
      <rect x="215" y="185" width="5" height="15" fill="#8b4513" />
      <circle cx="217.5" cy="180" r="7" fill="#228b22" />
    </g>
    <g>
      <rect x="225" y="185" width="5" height="15" fill="#8b4513" />
      <circle cx="227.5" cy="180" r="7" fill="#228b22" />
    </g>
  </g>
  
  <!-- Rainbow Bridges -->
  <g>
    <path d="M 100,200 Q 120,180 150,150" stroke="url(#rainbowGradient)" stroke-width="5" fill="none"/>
    <path d="M 200,150 Q 220,180 230,200" stroke="url(#rainbowGradient)" stroke-width="5" fill="none"/>
    <path d="M 100,200 Q 165,100 230,200" stroke="url(#rainbowGradient)" stroke-width="5" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more effectively captures the concept of floating islands connected by rainbow bridges.

    The depiction of multiple islands with distinct rainbow bridges and additional elements like trees and clouds enhances the creativity and visual appeal.

    The composition is more dynamic and technically polished compared to Player 1's simpler design.

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
10
Player 2
26
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
1
Player 2
7
Ellipses

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

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

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
16

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

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
6
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
5
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