Back

SVG Drawing Match #747

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a cityscape shell at sunset"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Sunset gradient for background -->
    <linearGradient id="sunsetGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff7e5f"/>
      <stop offset="50%" stop-color="#feb47b"/>
      <stop offset="100%" stop-color="#ffcc33"/>
    </linearGradient>
    <!-- Gradient for snail body -->
    <linearGradient id="snailBodyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8fd3f4"/>
      <stop offset="100%" stop-color="#84fab0"/>
    </linearGradient>
    <!-- Pattern for cityscape: windows -->
    <pattern id="windowPattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="2" height="2" fill="#ffe066" />
    </pattern>
  </defs>
  <!-- Background rectangle with sunset gradient -->
  <rect x="0" y="0" width="300" height="300" fill="url(#sunsetGradient)" />

  <!-- Snail body -->
  <path d="M50,220 Q80,180 120,190 T200,205 Q240,220 260,240 L250,270 Q220,280 180,270 L70,260 Z" fill="url(#snailBodyGradient)" stroke="#555" stroke-width="2" />

  <!-- Snail head with eye stalk -->
  <g id="snailHead">
    <circle cx="60" cy="200" r="18" fill="url(#snailBodyGradient)" stroke="#555" stroke-width="2" />
    <path d="M60,182 Q55,170 65,165" fill="none" stroke="#333" stroke-width="3" stroke-linecap="round" />
    <circle cx="63" cy="163" r="2" fill="#333" />
  </g>

  <!-- Snail shell: cityscape panorama -->
  <g id="snailShell">
    <!-- Circular shell with cityscape clipping -->
    <clipPath id="shellClip">
      <circle cx="160" cy="110" r="70" />
    </clipPath>
    <circle cx="160" cy="110" r="70" fill="#f7f1e3" stroke="#444" stroke-width="3" />
    <!-- Cityscape buildings inside the shell -->
    <g clip-path="url(#shellClip)">
      <!-- Sky gradient inside shell -->
      <rect x="90" y="40" width="140" height="140" fill="url(#sunsetGradient)" opacity="0.8"/>
      <!-- Buildings -->
      <rect x="105" y="80" width="10" height="40" fill="#2e3d49" />
      <rect x="125" y="70" width="15" height="50" fill="#3a536b" />
      <rect x="145" y="90" width="12" height="30" fill="#283655" />
      <rect x="165" y="65" width="18" height="55" fill="#1f4068" />
      <rect x="190" y="85" width="10" height="35" fill="#162447" />
      <rect x="205" y="75" width="14" height="45" fill="#53354a" />
      <rect x="225" y="95" width="10" height="25" fill="#903749" />
      <!-- Windows pattern on some buildings -->
      <rect x="125" y="75" width="15" height="50" fill="url(#windowPattern)" opacity="0.4"/>
      <rect x="165" y="65" width="18" height="55" fill="url(#windowPattern)" opacity="0.4"/>
    </g>
    <!-- Subtle spiral lines on the shell -->
    <path d="M160,110 m-60,0 a60,60 0 1,0 120,0 a40,40 0 1,1 -80,0" fill="none" stroke="#aaa" stroke-width="1" opacity="0.7"/>
  </g>

  <!-- Additional decorative swirls to evoke movement -->
  <path d="M100,250 C130,230 160,270 190,250" fill="none" stroke="#555" stroke-width="2" stroke-dasharray="4,4" opacity="0.6"/>
  <path d="M110,260 C140,240 170,280 200,260" fill="none" stroke="#555" stroke-width="2" stroke-dasharray="3,3" opacity="0.5"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sunset sky background -->
  <rect x="0" y="0" width="300" height="300" fill="#FFB703"></rect>
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#FF7A00"></circle>
  
  <!-- Cityscape shell with buildings -->
  <path d="M150,150 Q200,100 250,150 Q275,175 275,200 Q260,220 250,225 Q200,250 150,225 Q140,220 125,200 Q125,175 150,150" fill="#4A4A4A"></path>
  <rect x="140" y="170" width="20" height="30" fill="#DDDDDD"></rect>
  <rect x="170" y="160" width="20" height="40" fill="#DDDDDD"></rect>
  <rect x="200" y="175" width="20" height="25" fill="#DDDDDD"></rect>
  
  <!-- Snail body -->
  <circle cx="150" cy="150" r="40" fill="#70C1B3"></circle>
  
  <!-- Snail eyes -->
  <circle cx="135" cy="140" r="5" fill="#FFFFFF"></circle>
  <circle cx="165" cy="140" r="5" fill="#FFFFFF"></circle>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image more effectively combines the concept of a snail with a cityscape shell at sunset.

    The detailed cityscape within the shell and the clear depiction of a snail's body create a cohesive and imaginative scene.

    The use of a gradient background enhances the sunset theme, adding to the visual appeal and adherence to 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
21
Player 2
9
Rectangles

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

Player 1
12
Player 2
4
Circles

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

Player 1
4
Player 2
4
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
5
Player 2
1
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
Patterns

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

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

The number of elements with opacity attributes in the SVG.

Player 1
6
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
18
Player 2
6

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
18
Player 2
7
Max Group Nesting

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

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