Back

SVG Drawing Match #208

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a cityscape on its shell, moving across a starry desert night"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001840"/>
      <stop offset="100%" stop-color="#00001a"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="80%" cy="20%" r="15%" fx="80%" fy="20%">
      <stop offset="0%" stop-color="#ffffee" />
      <stop offset="100%" stop-color="#dddddd" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="60" height="60">
      <!-- Buildings -->
      <rect x="5" y="30" width="10" height="30" fill="#2e3d49"/>
      <rect x="20" y="20" width="15" height="40" fill="#3a4b59"/>
      <polygon points="40,30 50,10 60,30" fill="#2e3d49"/>
      <rect x="45" y="25" width="5" height="25" fill="#1c262e"/>
      <!-- Windows -->
      <rect x="7" y="35" width="2" height="2" fill="#fff"/>
      <rect x="12" y="40" width="2" height="2" fill="#fff"/>
      <rect x="22" y="25" width="3" height="3" fill="#fff"/>
      <rect x="27" y="35" width="3" height="3" fill="#fff"/>
      <rect x="42" y="35" width="2" height="2" fill="#fff"/>
      <rect x="47" y="30" width="2" height="2" fill="#fff"/>
    </pattern>
  </defs>

  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Stars -->
  <g fill="#ffffff" opacity="0.8">
    <circle cx="50" cy="50" r="1.5"/>
    <circle cx="120" cy="80" r="1"/>
    <circle cx="200" cy="40" r="2"/>
    <circle cx="250" cy="70" r="1.2"/>
    <circle cx="180" cy="150" r="1"/>
    <circle cx="70" cy="200" r="1.5"/>
    <circle cx="220" cy="220" r="1"/>
    <circle cx="160" cy="60" r="1.3"/>
    <circle cx="90" cy="140" r="1"/>
    <circle cx="130" cy="190" r="1.4"/>
  </g>

  <!-- Moon -->
  <circle cx="240" cy="60" r="15" fill="url(#moonGradient)"/>
  
  <!-- Desert -->
  <ellipse cx="150" cy="280" rx="200" ry="40" fill="#d2b48c"/>
  <path d="M0,280 Q75,260 150,280 T300,280" fill="#c19a6b" opacity="0.8"/>
  
  <!-- Snail Body -->
  <g>
    <ellipse cx="150" cy="240" rx="40" ry="20" fill="#8b5a2b"/>
    <circle cx="110" cy="235" r="10" fill="#a9744a"/>
    <circle cx="130" cy="233" r="4" fill="#fff"/>
    <circle cx="135" cy="230" r="1.5" fill="#000"/>
    <circle cx="90" cy="230" r="10" fill="#a9744a"/>
    <circle cx="100" cy="228" r="4" fill="#fff"/>
    <circle cx="105" cy="225" r="1.5" fill="#000"/>
  </g>
  
  <!-- Snail Shell with Cityscape -->
  <g>
    <circle cx="150" cy="240" r="30" fill="url(#cityPattern)" stroke="#4b5d67" stroke-width="2"/>
  </g>
  
  <!-- Motion Lines -->
  <path d="M100,260 q20,10 40,0" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.5"/>
  <path d="M150,270 q20,-10 40,0" stroke="#ffffff" stroke-width="1" fill="none" opacity="0.5"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#1a2a6c"/>
      <stop offset="100%" stop-color="#b21f1f"/>
    </radialGradient>
    
    <linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#fccb90"/>
      <stop offset="100%" stop-color="#d88a17"/>
    </linearGradient>
    
    <pattern id="cityPattern" x="0" y="0" width="1" height="1" patternUnits="userSpaceOnUse" viewBox="0 0 100 100">
      <rect x="5" y="80" width="15" height="20" fill="#4d4dff"/>
      <rect x="25" y="60" width="20" height="40" fill="#7878ff"/>
      <rect x="50" y="70" width="10" height="30" fill="#a3a3ff"/>
      <rect x="65" y="55" width="20" height="45" fill="#4f4f8b"/>
      <rect x="90" y="75" width="8" height="25" fill="#8080ff"/>
    </pattern>
  </defs>

  <!-- Starry Sky -->
  <rect width="300" height="150" fill="url(#skyGradient)"/>
  <circle cx="20" cy="20" r="2" fill="white"/>
  <circle cx="60" cy="40" r="1.5" fill="white"/>
  <circle cx="200" cy="30" r="2" fill="white"/>
  <circle cx="150" cy="10" r="1" fill="white"/>
  <circle cx="250" cy="50" r="1.5" fill="white"/>
  <circle cx="80" cy="15" r="1.2" fill="white"/>
  <circle cx="180" cy="80" r="2" fill="white"/>
  <circle cx="270" cy="20" r="1" fill="white"/>
  <circle cx="230" cy="75" r="1.3" fill="white"/>
  
  <!-- Desert -->
  <rect y="150" width="300" height="150" fill="url(#desertGradient)"/>

  <!-- Snail Body -->
  <ellipse cx="150" cy="230" rx="40" ry="20" fill="#8b4513" />
  <ellipse cx="120" cy="225" rx="20" ry="25" fill="#6f4e37"/>

  <!-- Snail Shell with Cityscape -->
  <circle cx="120" cy="200" r="40" fill="url(#cityPattern)" stroke="#4d4dff" stroke-width="3"/>

  <!-- Snail Tentacles -->
  <line x1="105" y1="205" x2="95" y2="190" stroke="#8b4513" stroke-width="2"/>
  <line x1="135" y1="205" x2="145" y2="190" stroke="#8b4513" stroke-width="2"/>
  <circle cx="95" cy="190" r="3" fill="#6f4e37"/>
  <circle cx="145" cy="190" r="3" fill="#6f4e37"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's submission effectively captures the prompt by incorporating a tangible cityscape on the snail's shell, enhancing the creativity and adherence to the idea.

    The use of a starry night sky and desert setting adds to the visual appeal.

    In contrast, Player 2's image lacks the cityscape element and is less aligned with the prompt, making Player 1's image the stronger choice 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
34
Player 2
23
Rectangles

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

Player 1
10
Player 2
7
Circles

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

Player 1
18
Player 2
12
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
2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
3
Player 2
Groups

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

Player 1
3
Player 2

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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