Back

SVG Drawing Match #2617

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat flying a hot air balloon shaped like a fish over a mountain."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients -->
  <defs>
    <linearGradient id="mountainGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#00008B"/>
    </linearGradient>
    <linearGradient id="balloonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF4500"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <radialGradient id="catFur" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </radialGradient>
    <filter id="fuzzy" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" />
    </filter>
  </defs>
  
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
  
  <!-- Mountain background -->
  <path d="M0,220 L50,150 L100,180 L150,120 L200,160 L250,140 L300,200 L300,300 L0,300 Z" fill="url(#mountainGradient)" />
  
  <!-- Hot air balloon shaped like a fish -->
  <g id="balloon">
    <!-- Fish shape -->
    <path d="M150,70 
             C140,70 130,80 125,90 
             C110,90 100,110 105,125 
             C95,140 100,160 115,165 
             C110,180 115,195 130,195 
             C150,200 150,210 170,210 
             C190,210 190,200 210,195 
             C225,195 230,180 225,165 
             C240,160 245,140 235,125 
             C240,110 230,90 215,90 
             C210,80 200,70 190,70 
             C175,50 125,50 110,70 
             Z" fill="url(#balloonGradient)" stroke="#FF6347" stroke-width="2"/>
             
    <!-- Decorative scales -->
    <g transform="translate(120,80)">
      <circle cx="0" cy="0" r="3" fill="#FFDAB9"/>
      <circle cx="10" cy="5" r="3" fill="#FFDAB9"/>
      <circle cx="20" cy="0" r="3" fill="#FFDAB9"/>
    </g>
    
    <!-- Basket attached at the bottom of the fish balloon -->
    <g id="basket" transform="translate(145,210)">
      <rect x="-10" y="0" width="20" height="15" fill="#8B4513" stroke="#5D3312" stroke-width="1" />
      <line x1="-10" y1="0" x2="-20" y2="-20" stroke="#8B4513" stroke-width="2"/>
      <line x1="10" y1="0" x2="20" y2="-20" stroke="#8B4513" stroke-width="2"/>
      <line x1="-20" y1="-20" x2="20" y2="-20" stroke="#8B4513" stroke-width="2"/>
    </g>
  </g>
  
  <!-- Cat figure inside the basket -->
  <g id="cat" transform="translate(145,210)">
    <!-- Cat body -->
    <ellipse cx="0" cy="-10" rx="7" ry="5" fill="url(#catFur)" filter="url(#fuzzy)"/>
    <!-- Cat head -->
    <circle cx="0" cy="-20" r="5" fill="url(#catFur)" filter="url(#fuzzy)"/>
    <!-- Ears -->
    <polygon points="-3,-25 0,-20  -6,-20" fill="url(#catFur)" filter="url(#fuzzy)"/>
    <polygon points="3,-25 0,-20  6,-20" fill="url(#catFur)" filter="url(#fuzzy)"/>
    <!-- Eyes -->
    <circle cx="-1.5" cy="-21" r="0.8" fill="#000"/>
    <circle cx="1.5" cy="-21" r="0.8" fill="#000"/>
    <!-- Whiskers -->
    <line x1="-5" y1="-20" x2="-10" y2="-20" stroke="#000" stroke-width="0.5"/>
    <line x1="5" y1="-20" x2="10" y2="-20" stroke="#000" stroke-width="0.5"/>
  </g>
  
  <!-- Ropes connecting balloon and basket -->
  <line x1="140" y1="140" x2="135" y2="210" stroke="#8B4513" stroke-width="2"/>
  <line x1="160" y1="140" x2="165" y2="210" stroke="#8B4513" stroke-width="2"/>
  
</svg>
SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#E0BBE4"/>
    </linearGradient>
    <radialGradient id="sunGrad" cx="0.8" cy="0.2" r="0.15">
      <stop offset="0%" stop-color="#FFF9C4" stop-opacity="1"/>
      <stop offset="100%" stop-color="#FFEB3B" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="mountGrad1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#556B2F"/>
      <stop offset="100%" stop-color="#8FBC8F"/>
    </linearGradient>
    <linearGradient id="fishGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FF7F50"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <circle cx="240" cy="60" r="30" fill="url(#sunGrad)"/>
  <g fill="#FFFFFF" opacity="0.7">
    <circle cx="80" cy="60" r="12"/>
    <circle cx="90" cy="50" r="15"/>
    <circle cx="100" cy="60" r="10"/>
    <circle cx="200" cy="40" r="8"/>
    <circle cx="210" cy="50" r="12"/>
    <circle cx="220" cy="45" r="9"/>
  </g>
  <polygon points="0,220 100,130 200,220" fill="url(#mountGrad1)"/>
  <polygon points="50,220 150,140 250,220" fill="#6B8E23"/>
  <polygon points="100,220 180,160 300,220" fill="#556B2F"/>
  <g transform="translate(100,20)">
    <path d="M50,80 C70,50 140,50 160,80 C180,110 140,130 120,120 C100,140 60,120 50,80 Z" fill="url(#fishGrad)" stroke="#E65C00" stroke-width="2"/>
    <path d="M50,80 L20,70 L20,90 Z" fill="#FF8C00" stroke="#E65C00" stroke-width="1"/>
    <path d="M100,50 L110,30 L120,50 Z" fill="#FF8C00" stroke="#E65C00" stroke-width="1"/>
    <circle cx="140" cy="85" r="5" fill="#FFFFFF"/>
    <circle cx="142" cy="83" r="2" fill="#000000"/>
    <line x1="85" y1="115" x2="100" y2="150" stroke="#8B4513" stroke-width="2"/>
    <line x1="115" y1="115" x2="120" y2="150" stroke="#8B4513" stroke-width="2"/>
    <rect x="90" y="150" width="30" height="20" rx="3" fill="#8B4513" stroke="#5A3215" stroke-width="1"/>
    <line x1="100" y1="150" x2="100" y2="170" stroke="#5A3215" stroke-width="2"/>
    <line x1="120" y1="150" x2="120" y2="170" stroke="#5A3215" stroke-width="2"/>
    <g transform="translate(100,155)">
      <ellipse cx="5" cy="10" rx="8" ry="6" fill="#FFF5EE" stroke="#D2691E" stroke-width="1"/>
      <circle cx="5" cy="5" r="5" fill="#FFF5EE" stroke="#D2691E" stroke-width="1"/>
      <polygon points="2,2 4,0 6,2" fill="#FFF5EE" stroke="#D2691E" stroke-width="1"/>
      <polygon points="8,2 10,0 12,2" fill="#FFF5EE" stroke="#D2691E" stroke-width="1"/>
      <circle cx="3" cy="5" r="1" fill="#000"/>
      <circle cx="7" cy="5" r="1" fill="#000"/>
      <line x1="2" y1="7" x2="-2" y2="7" stroke="#000" stroke-width="0.5"/>
      <line x1="8" y1="7" x2="12" y2="7" stroke="#000" stroke-width="0.5"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission adheres more closely to the prompt, clearly depicting a fish-shaped hot air balloon with a visible cat in the basket flying over a mountain.

    The composition is well-balanced, with additional details like the sun and clouds enhancing the visual appeal.

    Player 1's submission, while creative, is less clear in representing the fish shape and lacks the cat's visibility, making it less aligned with 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
20
Player 2
29
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
6
Player 2
12
Ellipses

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

Player 1
1
Player 2
1
Lines

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

Player 1
7
Player 2
6
Polygons

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

Player 1
2
Player 2
5
Paths

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

Player 1
2
Player 2
3
Groups

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
18

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
3
Player 2
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
23
Player 2
13
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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