Back

SVG Drawing Match #2081

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giant snail with a cityscape shell under a starry sky"

SVG by Qwen-2.5-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Sky -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #000033; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #000000; stop-opacity:1"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g>
    <circle cx="100" cy="50" r="2" fill="yellow"/>
    <circle cx="180" cy="40" r="3" fill="yellow"/>
    <circle cx="280" cy="100" r="2" fill="yellow"/>
    <circle cx="50" cy="150" r="3" fill="yellow"/>
    <circle cx="230" cy="170" r="2" fill="yellow"/>
    <circle cx="100" cy="200" r="3" fill="yellow"/>
  </g>

  <!-- Cityscape Shell -->
  <defs>
    <linearGradient id="cityGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #FFA07A; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #8A2BE2; stop-opacity:1"/>
    </linearGradient>
  </defs>
  <path d="M150 150 q 100 0 100 100 t 0 100 q -100 0 -100 -100 t 0 -100 z" fill="url(#cityGradient)"/>
  <g transform="translate(150, 200)">
    <rect x="-20" y="-100" width="40" height="100" fill="#FFD700" rx="5"/>
    <rect x="-10" y="-75" width="20" height="75" fill="#FFD700" rx="5"/>
    <rect x="0" y="-50" width="10" height="50" fill="#FFD700" rx="5"/>
  </g>

  <!-- Giant Snail Body -->
  <defs>
    <linearGradient id="snailGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #66CDAA; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #2E8B57; stop-opacity:1"/>
    </linearGradient>
  </defs>
  <path d="M150 200 q 100 0 100 100 t 0 100 q -100 0 -100 -100 t 0 -100 z" fill="url(#snailGradient)"/>
  <path d="M150 200 q 50 0 50 50 t 0 50 q -50 0 -50 -50 t 0 -50" fill="url(#snailGradient)"/>

  <!-- Snail Eyes -->
  <circle cx="120" cy="180" r="5" fill="#FF69B4"/>
  <circle cx="180" cy="180" r="5" fill="#FF69B4"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry sky -->
  <rect x="0" y="0" width="300" height="300" fill="#0e0b29" />
  <!-- Cityscape shell -->
  <rect x="75" y="50" width="150" height="200" fill="#8b786a" />
  <rect x="85" y="40" width="30" height="10" fill="#786a5f" />
  <rect x="185" y="40" width="30" height="10" fill="#786a5f" />
  <rect x="120" y="70" width="60" height="40" fill="#aa9b8b" />
  <rect x="60" y="120" width="180" height="130" fill="#aa9b8b" />
  <rect x="65" y="160" width="30" height="30" fill="#bbada1" />
  <rect x="105" y="160" width="30" height="30" fill="#bbada1" />
  <rect x="145" y="160" width="30" height="30" fill="#bbada1" />
  <rect x="185" y="160" width="30" height="30" fill="#bbada1" />
  <rect x="95" y="210" width="30" height="30" fill="#a19687" />
  <rect x="135" y="210" width="30" height="30" fill="#a19687" />
  <!-- Giant snail body -->
  <circle cx="150" cy="150" r="80" fill="#f9d71c" />
  <!-- Giant snail shell -->
  <path d="M 150 150 Q 180 110 210 150 Q 180 190 150 150" fill="#eada61" />
  <circle cx="150" cy="150" r="30" fill="#eada61" />
  <!-- Giant snail eye -->
  <circle cx="170" cy="135" r="5" fill="#333" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's submission creatively integrates the cityscape into the snail's shell, using abstract shapes and colors that suggest both a city and a cosmic backdrop.

    The image adheres to the prompt with a striking visual appeal and a clear representation of the starry sky.

    Player 2's design, while interesting, lacks the same clarity and creativity in combining the cityscape with the snail's form, making Player 1's entry more successful overall.

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
15
Player 2
16
Rectangles

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

Player 1
4
Player 2
12
Circles

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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