Back

SVG Drawing Match #1653

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flying whale with a cityscape on its back, under a starry sky"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="radial-gradient(circle at 150 30, #000, #052)"/>
  <g transform="translate(50,100)">
    <path d="M0,0 Q100,100 200,0" fill="url(#grad1)" filter="url(#glow)"/>
    <path d="M180,20 Q200,40 220,20" fill="#036" filter="url(#glow)"/>
    <path d="M20,20 Q0,40 20,60" fill="#036" filter="url(#glow)"/>
  </g>
  <g transform="translate(100,150)">
    <rect width="100" height="50" fill="url(#grad2)"/>
    <rect x="100" width="80" height="60" fill="url(#grad3)"/>
    <rect x="180" width="60" height="70" fill="url(#grad4)"/>
  </g>
  <g transform="translate(70,120)">
    <circle cx="0" cy="0" r="15" fill="#ff4"/>
    <circle cx="30" cy="0" r="15" fill="#ff4"/>
  </g>
  <g transform="translate(150,180)">
    <rect width="40" height="20" fill="#666"/>
    <rect x="50" width="30" height="15" fill="#666"/>
  </g>
  <rect width="300" height="300" fill="url(#stars)" opacity="0.3"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background sky with stars -->
  <defs>
    <radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.75">
      <stop offset="0%" stop-color="#001848"/>
      <stop offset="100%" stop-color="#000222"/>
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="white" />
      <circle cx="7" cy="3" r="1" fill="white" />
      <circle cx="4" cy="7" r="1" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.3" />
  
  <!-- Flying Whale -->
  <g transform="translate(50, 150)">
    <path d="M0 0 Q30 -50 90 -30 Q150 0 210 -10 Q180 40 90 20 Q60 40 0 0 Z" fill="#88C1D0" />
    <ellipse cx="210" cy="-10" rx="6" ry="6" fill="#FFFFFF" />
    <circle cx="30" cy="-20" r="3" fill="#002B36" />

    <!-- Splashes representing wings -->
    <path d="M20 -20 Q10 -80 0 -50 Q-5 -110 30 -80 Q50 -130 90 -90 Q120 -160 130 -120" fill="none" stroke="#88C1D0" stroke-width="3" />
    <path d="M70 -30 Q60 -70 90 -50 Q100 -90 130 -60" fill="none" stroke="#88C1D0" stroke-width="3" />
  </g>

  <!-- Cityscape on the whale's back -->
  <g transform="translate(50, 100)">
    <rect x="50" y="0" width="10" height="30" fill="#303F9F" />
    <rect x="70" y="-10" width="12" height="40" fill="#5C6BC0" />
    <rect x="90" y="-5" width="8" height="35" fill="#7986CB" />
    <rect x="110" y="-15" width="15" height="45" fill="#9FA8DA" />
    <rect x="140" y="-8" width="10" height="38" fill="#C5CAE9" />
    <rect x="160" y="0" width="12" height="30" fill="#E8EAF6" />

    <!-- Windows using small circles -->
    <circle cx="55" cy="5" r="1.5" fill="#FFD700" />
    <circle cx="75" cy="-5" r="1.5" fill="#FFD700" />
    <circle cx="75" cy="5" r="1.5" fill="#FFD700" />
    <circle cx="95" cy="-2" r="1.5" fill="#FFD700" />
    <circle cx="95" cy="8" r="1.5" fill="#FFD700" />
    <circle cx="115" cy="-10" r="1.5" fill="#FFD700" />
    <circle cx="115" cy="0" r="1.5" fill="#FFD700" />
    <circle cx="145" cy="-3" r="1.5" fill="#FFD700" />
    <circle cx="165" cy="5" r="1.5" fill="#FFD700" />
  </g>
</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 is a more cohesive representation of the prompt.

    It clearly depicts a whale with a cityscape on its back under a starry sky.

    The use of colors and composition is more refined, providing a visually appealing and imaginative interpretation.

    Player 1's submission lacks clarity and detail in conveying the concept effectively.

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

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

Player 1
7
Player 2
8
Circles

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

Player 1
3
Player 2
13
Ellipses

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

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

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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