Back

SVG Drawing Match #2448

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating house tethered to a giant balloon over a surreal checkerboard landscape."

SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="0%" r="100%" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#ffe87c"/>
      <stop offset="60%" stop-color="#ff7eb9"/>
      <stop offset="100%" stop-color="#7bcfff"/>
    </radialGradient>
    <linearGradient id="wallGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffe0a3"/>
      <stop offset="100%" stop-color="#ffb347"/>
    </linearGradient>
    <linearGradient id="roofGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#d7263d"/>
    </linearGradient>
    <radialGradient id="balloonGrad" cx="50%" cy="50%" r="50%" fx="45%" fy="45%">
      <stop offset="0%" stop-color="#ffdd57"/>
      <stop offset="50%" stop-color="#ff4b6e"/>
      <stop offset="100%" stop-color="#7e57c2"/>
    </radialGradient>
    <pattern id="checker" width="40" height="40" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#ff66cc"/>
      <rect x="20" y="20" width="20" height="20" fill="#ff66cc"/>
      <rect x="20" y="0" width="20" height="20" fill="#6633ff"/>
      <rect x="0" y="20" width="20" height="20" fill="#6633ff"/>
    </pattern>
    <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
      <feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.5"/>
    </filter>
  </defs>
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Checkerboard ground -->
  <polygon points="50,150 250,150 300,300 0,300" fill="url(#checker)"/>
  <!-- Floating House -->
  <g filter="url(#shadow)">
    <rect x="120" y="160" width="60" height="40" fill="url(#wallGrad)" stroke="#333" stroke-width="1"/>
    <polygon points="120,160 150,130 180,160" fill="url(#roofGrad)" stroke="#333" stroke-width="1"/>
    <rect x="135" y="170" width="10" height="10" fill="#fff" stroke="#333" stroke-width="1"/>
    <rect x="155" y="170" width="10" height="10" fill="#fff" stroke="#333" stroke-width="1"/>
  </g>
  <!-- Tether Rope -->
  <path d="M150,130 C140,110 160,110 155,90 C150,70 160,70 150,120"
        fill="none" stroke="#8b4513" stroke-width="2" stroke-linecap="round"/>
  <!-- Giant Balloon -->
  <ellipse cx="150" cy="60" rx="50" ry="60" fill="url(#balloonGrad)" stroke="#d7263d" stroke-width="2"/>
  <ellipse cx="140" cy="50" rx="15" ry="8" fill="#fff" fill-opacity="0.7"/>
</svg>
SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#483D8B"/>
    </linearGradient>
    <radialGradient id="balloonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF5F6D" />
      <stop offset="100%" stop-color="#FFC371" />
    </radialGradient>
    <linearGradient id="houseBodyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FDEBD0"/>
      <stop offset="100%" stop-color="#FAD7A0"/>
    </linearGradient>
    <linearGradient id="roofGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#3498DB"/>
      <stop offset="100%" stop-color="#9B59B6"/>
    </linearGradient>
    <pattern id="checkerboard" width="60" height="60" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="30" height="30" fill="#9b59b6" />
      <rect x="30" y="30" width="30" height="30" fill="#9b59b6" />
      <rect x="30" y="0" width="30" height="30" fill="#f1c40f" />
      <rect x="0" y="30" width="30" height="30" fill="#f1c40f" />
    </pattern>
  </defs>
  
  <!-- Sky Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Surreal Checkerboard Landscape -->
  <rect x="0" y="240" width="300" height="60" fill="url(#checkerboard)" />
  
  <!-- Giant Balloon -->
  <circle cx="150" cy="40" r="50" fill="url(#balloonGradient)" stroke="black" stroke-width="2" />
  <!-- Subtle balloon highlight -->
  <circle cx="130" cy="30" r="8" fill="white" opacity="0.5" />
  
  <!-- Tether (Rope) -->
  <path d="M150,90 Q150,125 150,160" stroke="saddlebrown" stroke-width="2" fill="none" stroke-dasharray="4,3" />
  
  <!-- Floating House -->
  <g id="house">
    <!-- Roof -->
    <polygon points="120,180 150,160 180,180" fill="url(#roofGradient)" stroke="black" stroke-width="1" />
    <!-- House Body -->
    <rect x="120" y="180" width="60" height="30" fill="url(#houseBodyGradient)" stroke="black" stroke-width="1" />
    <!-- Windows -->
    <rect x="132" y="190" width="12" height="12" fill="white" stroke="black" stroke-width="0.5" />
    <rect x="156" y="190" width="12" height="12" fill="white" stroke="black" stroke-width="0.5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission demonstrates superior creativity and visual appeal with a vibrant gradient sky and a surreal checkerboard pattern that enhances the whimsical theme of the floating house.

    The warm glow on the balloon adds depth, creating a more dynamic and engaging composition compared to Player 2's simpler approach.

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
13
Player 2
13
Rectangles

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

Player 1
8
Player 2
9
Circles

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

Player 1
Player 2
2
Ellipses

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

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

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

Player 1
1
Player 2
1
Groups

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
4
Patterns

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

Player 1
1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
12

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