Back

SVG Drawing Match #1530

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a small house, surrounded by balloons"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <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>
    <linearGradient id="grassGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(50,205,50);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(34,139,34);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="rockGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(192,192,192);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(128,128,128);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="balloonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgb(255,99,71);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,69,0);stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)" />
  <ellipse cx="150" cy="220" rx="100" ry="40" fill="url(#rockGradient)" />
  <polygon points="75,220 150,140 225,220" fill="url(#grassGradient)" />
  <rect x="135" y="160" width="30" height="30" fill="saddlebrown" />
  <polygon points="135,160 150,140 165,160" fill="peru" />
  <ellipse cx="150" cy="130" rx="6" ry="12" fill="url(#balloonGradient)" />
  <ellipse cx="175" cy="110" rx="8" ry="16" fill="url(#balloonGradient)" />
  <ellipse cx="125" cy="105" rx="6" ry="12" fill="url(#balloonGradient)" />
  <line x1="150" y1="142" x2="150" y2="128" stroke="black" stroke-width="0.5" />
  <line x1="175" y1="142" x2="175" y2="100" stroke="black" stroke-width="0.5" />
  <line x1="125" y1="142" x2="125" y2="98" stroke="black" stroke-width="0.5" />
</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="300">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <radialGradient id="islandGradient" cx="0.5" cy="0.6" r="0.8">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <linearGradient id="houseGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#A0522D"/>
    </linearGradient>
    <linearGradient id="roofGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF6347"/>
      <stop offset="100%" stop-color="#FF4500"/>
    </linearGradient>
    <radialGradient id="balloonGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#FF1493"/>
    </radialGradient>
    <radialGradient id="balloonGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </radialGradient>
    <radialGradient id="balloonGradient3" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#32CD32"/>
      <stop offset="100%" stop-color="#7CFC00"/>
    </radialGradient>
    <radialGradient id="balloonGradient4" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <radialGradient id="balloonGradient5" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </radialGradient>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Floating Island -->
  <ellipse cx="150" cy="220" rx="100" ry="40" fill="url(#islandGradient)" />
  <path d="M50,220 Q75,180 150,200 Q225,180 250,220 Z" fill="url(#islandGradient)" opacity="0.8"/>

  <!-- House -->
  <rect x="125" y="180" width="50" height="40" fill="url(#houseGradient)" stroke="#654321" stroke-width="2"/>
  <polygon points="125,180 150,160 175,180" fill="url(#roofGradient)" stroke="#8B0000" stroke-width="2"/>
  <rect x="140" y="190" width="10" height="10" fill="#FFFFFF" stroke="#000000" stroke-width="1"/>
  <rect x="160" y="190" width="10" height="10" fill="#FFFFFF" stroke="#000000" stroke-width="1"/>
  <rect x="145" y="200" width="10" height="20" fill="#8B4513" stroke="#654321" stroke-width="1"/>

  <!-- Balloons -->
  <g>
    <!-- Balloon 1 -->
    <circle cx="80" cy="100" r="15" fill="url(#balloonGradient1)" stroke="#C71585" stroke-width="2"/>
    <line x1="80" y1="115" x2="80" y2="180" stroke="#C71585" stroke-width="1"/>
    
    <!-- Balloon 2 -->
    <circle cx="220" cy="80" r="12" fill="url(#balloonGradient2)" stroke="#1E90FF" stroke-width="2"/>
    <line x1="220" y1="92" x2="220" y2="180" stroke="#1E90FF" stroke-width="1"/>
    
    <!-- Balloon 3 -->
    <circle cx="60" cy="150" r="10" fill="url(#balloonGradient3)" stroke="#32CD32" stroke-width="2"/>
    <line x1="60" y1="160" x2="60" y2="180" stroke="#32CD32" stroke-width="1"/>
    
    <!-- Balloon 4 -->
    <circle cx="240" cy="130" r="14" fill="url(#balloonGradient4)" stroke="#FFD700" stroke-width="2"/>
    <line x1="240" y1="144" x2="240" y2="180" stroke="#FFD700" stroke-width="1"/>
    
    <!-- Balloon 5 -->
    <circle cx="150" cy="60" r="13" fill="url(#balloonGradient5)" stroke="#8A2BE2" stroke-width="2"/>
    <line x1="150" y1="73" x2="150" y2="180" stroke="#8A2BE2" stroke-width="1"/>
  </g>
  
  <!-- Clouds -->
  <g opacity="0.8">
    <ellipse cx="60" cy="50" rx="20" ry="10" fill="#FFFFFF"/>
    <ellipse cx="80" cy="50" rx="25" ry="12"/>
    <ellipse cx="100" cy="50" rx="20" ry="10"/>
    
    <ellipse cx="220" cy="70" rx="15" ry="8" fill="#FFFFFF"/>
    <ellipse cx="235" cy="70" rx="20" ry="10"/>
    <ellipse cx="250" cy="70" rx="15" ry="8"/>
  </g>
  
  <!-- Shadows and Details -->
  <ellipse cx="150" cy="220" rx="100" ry="10" fill="#2E8B57" opacity="0.3"/>
</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 demonstrates greater creativity and visual appeal.

    The vibrant colors and varied balloons add an element of whimsy, while the floating island is more dynamic and detailed.

    Player 1’s submission, though adhering to the prompt, lacks the same level of detail and visual interest.

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
25
Rectangles

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

Player 1
2
Player 2
5
Circles

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

Player 1
Player 2
5
Ellipses

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

Player 1
4
Player 2
8
Lines

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

Player 1
3
Player 2
5
Polygons

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

Player 1
2
Player 2
1
Paths

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

Player 1
Player 2
1
Groups

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
23

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