Back

SVG Drawing Match #789

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail carrying a tiny city on its shell under a starry night sky"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#000428"/>
      <stop offset="100%" stop-color="#004e92"/>
    </radialGradient>
    <linearGradient id="snailGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff7e5f"/>
      <stop offset="100%" stop-color="#feb47b"/>
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1" fill="#fff"/>
    </pattern>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="5" height="10" fill="#333"/>
      <rect x="10" y="5" width="5" height="15" fill="#555"/>
      <rect x="15" y="0" width="5" height="12" fill="#444"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.8"/>
  <ellipse cx="150" cy="250" rx="100" ry="50" fill="#666" opacity="0.5"/>
  <path d="M150,250 C100,200 200,150 150,100 C100,150 200,200 150,250 Z" fill="url(#snailGradient)"/>
  <circle cx="150" cy="100" r="40" fill="url(#cityPattern)"/>
  <path d="M150,100 L130,120 L170,120 Z" fill="#444"/>
  <path d="M150,100 L130,120 L170,120 Z" fill="#555" transform="rotate(90,150,100)"/>
  <path d="M150,100 L130,120 L170,120 Z" fill="#666" transform="rotate(180,150,100)"/>
  <path d="M150,100 L130,120 L170,120 Z" fill="#777" transform="rotate(270,150,100)"/>
  <circle cx="150" cy="100" r="10" fill="#ffcc00"/>
  <path d="M120,230 Q140,210 160,230" stroke="#333" stroke-width="5" fill="none"/>
  <circle cx="120" cy="230" r="10" fill="#333"/>
  <circle cx="160" cy="230" r="10" fill="#333"/>
  <path d="M150,100 L150,250" stroke="#333" stroke-width="2" stroke-dasharray="5,5" opacity="0.5"/>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #1c2a42; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #000; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #f9d5c9; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #e5a296; stop-opacity:1" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect x="0" y="0" width="40" height="40" fill="#6c757d" />
      <rect x="10" y="10" width="20" height="20" fill="#28a745" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)" />
  <g transform="translate(150, 150)">
    <circle cx="0" cy="-120" r="50" fill="url(#shellGradient)" />
    <path d="M-50,-120 Q0,-180 50,-120 T0,-60" fill="url(#shellGradient)" />
    <g transform="translate(0, -120)" fill="url(#cityPattern)">
      <rect x="-30" y="-20" width="60" height="20" />
      <rect x="-20" y="-40" width="40" height="20" />
      <rect x="-10" y="-60" width="20" height="20" />
    </g>
    <circle cx="0" cy="0" r="15" fill="#000" />
    <line x1="-5" y1="-5" x2="5" y2="5" stroke="#fff" stroke-width="2" />
    <line x1="5" y1="-5" x2="-5" y2="5" stroke="#fff" stroke-width="2" />
    <g transform="translate(0, 15)">
      <circle cx="0" cy="0" r="3" fill="#fff" />
      <circle cx="0" cy="0" r="2" fill="#000" />
    </g>
  </g>
  <g transform="translate(150, 150)">
    <circle cx="100" cy="-100" r="2" fill="#fff" />
    <circle cx="150" cy="-150" r="2" fill="#fff" />
    <circle cx="200" cy="-120" r="2" fill="#fff" />
    <circle cx="50" cy="-150" r="2" fill="#fff" />
    <circle cx="80" cy="-180" r="2" fill="#fff" />
    <circle cx="120" cy="-180" r="2" fill="#fff" />
    <circle cx="180" cy="-180" r="2" fill="#fff" />
    <circle cx="220" cy="-150" r="2" fill="#fff" />
    <circle cx="250" cy="-120" r="2" fill="#fff" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image effectively captures the concept of a snail carrying a city with a more defined structure on the shell, and the starry background enhances the night sky theme.

    Player 2's submission is more abstract and less clear in conveying the prompt.

    The technical quality and creativity in Player 1's image provide a more cohesive and visually appealing representation of the idea.

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
18
Player 2
22
Rectangles

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

Player 1
5
Player 2
6
Circles

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

Player 1
5
Player 2
13
Ellipses

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
4

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
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
24
Player 2
3
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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