Back

SVG Drawing Match #1323

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale-shaped hot air balloon with a city on its back"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="whaleGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#87CEEB" />
      <stop offset="0.5" stop-color="#4682B4" />
      <stop offset="1" stop-color="#2E4053" />
    </linearGradient>
    <pattern id="cityPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#F7F7F7" rx="2" />
      <rect x="5" y="5" width="10" height="10" fill="#CCCCCC" rx="1" />
      <circle cx="10" cy="10" r="2" fill="#999999" />
    </pattern>
  </defs>
  <g transform="translate(150, 150)">
    <path d="M -100, -50 C -100, -25 -75, 0 -50, 25 L 0, 50 L 50, 25 C 75, 0 100, -25 100, -50 Z" fill="url(#whaleGradient)" />
    <g transform="translate(0, -30)">
      <rect x="-40" y="-20" width="80" height="40" fill="url(#cityPattern)" rx="5" />
      <rect x="-30" y="-15" width="60" height="30" fill="#F7F7F7" rx="3" />
      <circle cx="0" cy="-10" r="10" fill="#CCCCCC" />
      <path d="M -20, -10 L 20, -10 L 20, 0 L -20, 0 Z" fill="#999999" />
    </g>
    <g transform="translate(-40, -50)">
      <circle cx="0" cy="0" r="10" fill="#FFC107" />
      <circle cx="0" cy="0" r="5" fill="#FFFFFF" />
    </g>
    <g transform="translate(40, -50)">
      <circle cx="0" cy="0" r="10" fill="#FFC107" />
      <circle cx="0" cy="0" r="5" fill="#FFFFFF" />
    </g>
    <g transform="translate(0, -70)">
      <circle cx="0" cy="0" r="20" fill="#FFC107" />
      <circle cx="0" cy="0" r="10" fill="#FFFFFF" />
    </g>
  </g>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<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%" style="stop-color:#1a237e"/>
      <stop offset="100%" style="stop-color:#4a148c"/>
    </linearGradient>
    <pattern id="cityPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="2" y="8" width="6" height="12" fill="#263238"/>
      <rect x="12" y="4" width="4" height="16" fill="#37474f"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="50" cy="30" r="1"/>
    <circle cx="150" cy="20" r="1.5"/>
    <circle cx="250" cy="40" r="1"/>
    <circle cx="80" cy="60" r="1"/>
    <circle cx="200" cy="50" r="1.2"/>
  </g>

  <!-- Whale Balloon Body -->
  <path d="M50,150 C50,80 120,50 150,50 C180,50 250,80 250,150 C250,220 180,250 150,250 C120,250 50,220 50,150" 
        fill="#1976d2" stroke="#0d47a1" stroke-width="2"/>
  
  <!-- Whale Features -->
  <path d="M230,130 Q240,130 245,140" stroke="#0d47a1" stroke-width="4" fill="none"/>
  <circle cx="230" cy="130" r="5" fill="#0d47a1"/>
  <path d="M50,150 Q30,140 40,120" fill="#1565c0"/>

  <!-- City on Back -->
  <path d="M100,120 C100,120 200,120 200,120 C200,120 180,80 150,80 C120,80 100,120 100,120" 
        fill="url(#cityPattern)"/>
  
  <!-- Buildings -->
  <g fill="#455a64">
    <rect x="120" y="90" width="10" height="30"/>
    <rect x="140" y="70" width="15" height="50"/>
    <rect x="165" y="85" width="12" height="35"/>
    <rect x="185" y="95" width="8" height="25"/>
  </g>

  <!-- Balloon Basket -->
  <rect x="140" y="260" width="20" height="15" fill="#795548"/>
  
  <!-- Ropes -->
  <g stroke="#8d6e63" stroke-width="1">
    <line x1="145" y1="250" x2="140" y2="260"/>
    <line x1="155" y1="250" x2="160" y2="260"/>
  </g>

  <!-- Clouds -->
  <g fill="white" opacity="0.3">
    <path d="M60,200 Q70,190 80,200 Q90,180 100,200 Q80,210 60,200"/>
    <path d="M200,220 Q210,210 220,220 Q230,200 240,220 Q220,230 200,220"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image more effectively adheres to the prompt with a clear depiction of a whale-shaped hot air balloon carrying a city.

    The use of a night sky background and the integration of the cityscape into the whale shape enhances the visual appeal and creativity.

    Player 1's image is less clear in representing the prompt, lacking the distinct whale and city elements.

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
14
Player 2
22
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
8
Player 2
6
Ellipses

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

Player 1
Player 2
Lines

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

Player 1
Player 2
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
2
Player 2
6
Groups

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
9

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
5
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
11
Player 2
21
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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