Back

SVG Drawing Match #202

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating cityscape on a giant whale's back beneath a colorful aurora sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient and stars -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0b0b2d;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a1a4a;stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Aurora effect -->
  <path d="M50 100 Q150 50 250 100 Q350 150 200 200 Q150 250 50 200 Q-50 150 50 100" 
        fill="none" stroke="#fff" stroke-width="2" filter="url(#glow)"/>
  <path d="M100 150 Q200 100 300 150 Q350 200 250 250 Q150 200 100 150" 
        fill="none" stroke="#7fffd5" stroke-width="2" filter="url(#glow)"/>
  <path d="M150 200 Q250 250 350 200 Q300 150 250 100 Q200 50 150 100 Q100 150 150 200" 
        fill="none" stroke="#ff00ff" stroke-width="2" filter="url(#glow)"/>

  <!-- Whale -->
  <g transform="translate(50,200)">
    <path d="M-100-50 C-50-50 0-40 50-30 100-20 150-10 170 0 170 20 170 40 150 50 120 60 80 60 40 50 20 40 0 30 -20 30 -40 30 -50 25 -60 20 -70 10 -80 0 -90-10 -100-20" 
          fill="#2d5a88" />
    <path d="M-30-20 L-20-30 L-10-25 L0-20 L10-25 L20-30 L30-20 L40-15 L50-20 L60-15 L70-20 L80-15 L90-20 L100-15 L110-20 L120-15 L130-20" 
          fill="#2d5a88"/>
    <ellipse cx="0" cy="0" rx="20" ry="10" fill="#2d5a88"/>
    <path d="M0 20 L10 30 L-10 30" fill="#2d5a88"/>
  </g>

  <!-- Cityscape -->
  <g transform="translate(150,100)">
    <rect x="-100" y="-50" width="200" height="100" fill="url(#skyGradient)" rx="20"/>
    <ellipse cx="0" cy="-30" rx="80" ry="40" fill="gradient" transform="rotate(15)"/>
    <rect x="-50" y="-20" width="100" height="60" fill="#4a4a4a" rx="10"/>
    <path d="M-40 -40 L40 -40 L20 -80 -20 -80" fill="#666"/>
    <path d="M-30 -50 L30 -50 L20 -90 -20 -90" fill="#888"/>
    <rect x="-20" y="-10" width="40" height="40" fill="#fff" rx="5"/>
  </g>

  <!-- Stars -->
  <g opacity="0.6">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="150" cy="80" r="1" fill="white"/>
    <circle cx="250" cy="30" r="1" fill="white"/>
    <circle cx="200" cy="120" r="1" fill="white"/>
    <circle cx="100" cy="150" r="1" fill="white"/>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="auroraGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff0080" />
      <stop offset="25%" stop-color="#ff80ff" />
      <stop offset="50%" stop-color="#8080ff" />
      <stop offset="75%" stop-color="#80ffff" />
      <stop offset="100%" stop-color="#80ff80" />
    </linearGradient>
    <radialGradient id="cityLight" cx="0.5" cy="0.5" r="0.7">
      <stop offset="0%" stop-color="#ffd700" />
      <stop offset="100%" stop-color="transparent" />
    </radialGradient>
    <pattern id="buildingPattern" patternUnits="userSpaceOnUse" width="10" height="20">
      <rect width="10" height="20" fill="#2e3b4e"/>
      <rect x="2" y="2" width="2" height="2" fill="#d4dadd"/>
      <rect x="6" y="2" width="2" height="2" fill="#d4dadd"/>
      <rect x="2" y="6" width="2" height="2" fill="#d4dadd"/>
      <rect x="6" y="6" width="2" height="2" fill="#d4dadd"/>
      <rect x="2" y="10" width="2" height="2" fill="#d4dadd"/>
      <rect x="6" y="10" width="2" height="2" fill="#d4dadd"/>
      <rect x="2" y="14" width="2" height="2" fill="#d4dadd"/>
      <rect x="6" y="14" width="2" height="2" fill="#d4dadd"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#auroraGradient)" />
  <g>
    <path d="M50,150 C30,170 30,230 50,250 C75,290 225,290 250,250 C270,230 270,170 250,150" fill="#5f9ea0" stroke="#3b6b73" stroke-width="3"/>
    <ellipse cx="100" cy="230" rx="38" ry="12" fill="url(#cityLight)" />
    <ellipse cx="200" cy="230" rx="38" ry="12" fill="url(#cityLight)" />
    <rect x="20" y="180" width="30" height="70" fill="url(#buildingPattern)" />
    <rect x="80" y="160" width="30" height="90" fill="url(#buildingPattern)" />
    <rect x="140" y="170" width="30" height="80" fill="url(#buildingPattern)" />
    <rect x="210" y="175" width="30" height="75" fill="url(#buildingPattern)" />
  </g>
  <path d="M50,150 Q150,50 250,150 Q150,250 50,150 Z" fill="none" stroke="#fff" stroke-width="2" stroke-dasharray="4"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt with a clearer representation of a cityscape on a whale-like form beneath a colorful aurora sky.

    The composition is more coherent, with distinct buildings and a vibrant sky that effectively captures the whimsical and fantastical nature of the idea.

    Player 1's image is abstract and lacks clarity in depicting the cityscape and whale, making it less effective in fulfilling 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
19
Player 2
18
Rectangles

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

Player 1
4
Player 2
14
Circles

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

Player 1
5
Player 2
Ellipses

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

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

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

Player 1
8
Player 2
2
Groups

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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