Back

SVG Drawing Match #396

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Snail with a cityscape shell crawling on a vibrant rainbow path"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Vibrant rainbow path -->
  <path d="M20 150 C60 50, 240 50, 280 150 C240 250, 60 250, 20 150" fill="url(#rainbow)" />
  
  <!-- Cityscape shell with windows -->
  <path d="M120 150 L140 100 L180 100 L200 150 L160 200 Z" fill="gray" />
  <line x1="125" y1="150" x2="125" y2="100" stroke="black" stroke-width="2" />
  <line x1="135" y1="150" x2="135" y2="100" stroke="black" stroke-width="2" />
  <line x1="145" y1="150" x2="145" y2="100" stroke="black" stroke-width="2" />
  <line x1="155" y1="150" x2="155" y2="100" stroke="black" stroke-width="2" />
  <line x1="165" y1="150" x2="165" y2="200" stroke="black" stroke-width="2" />
  <line x1="175" y1="150" x2="175" y2="200" stroke="black" stroke-width="2" />
  
  <!-- Snail body -->
  <circle cx="120" cy="150" r="20" fill="#68BB59" />
  
  <!-- Snail eyes -->
  <circle cx="115" cy="145" r="3" fill="black" />
  <circle cx="125" cy="145" r="3" fill="black" />
  
  <!-- Gradient for rainbow path -->
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:red;stop-opacity:1" />
      <stop offset="20%" style="stop-color:orange;stop-opacity:1" />
      <stop offset="40%" style="stop-color:yellow;stop-opacity:1" />
      <stop offset="60%" style="stop-color:green;stop-opacity:1" />
      <stop offset="80%" style="stop-color:blue;stop-opacity:1" />
      <stop offset="100%" style="stop-color:purple;stop-opacity:1" />
    </linearGradient>
  </defs>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cityGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="100%" stop-color="#EC407A"/>
    </linearGradient>
    <linearGradient id="pathGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFA000"/>
      <stop offset="100%" stop-color="#FF4081"/>
    </linearGradient>
  </defs>
  <!-- Rainbow Path -->
  <path d="M150 100 Q175 150, 200 100 Q225 50, 250 100 Q275 150, 300 100 Q275 50, 250 0 Q225 -50, 200 0 Q175 50, 150 0 Q175 50, 200 100 Q175 150, 150 100" 
        stroke="url(#pathGradient)" stroke-width="10" fill="none"/>
  <!-- Snail Body -->
  <circle cx="150" cy="110" r="25" fill="#8BC34A"/>
  <!-- Snail Head -->
  <path d="M130 110 Q120 100, 110 110 Q120 120, 130 110" fill="#8BC34A"/>
  <!-- Snail Eyes -->
  <circle cx="105" cy="100" r="5" fill="#212121"/>
  <circle cx="115" cy="100" r="5" fill="#212121"/>
  <!-- Snail Shell -->
  <path d="M150 85 Q160 70, 170 85 Q180 100, 190 85 Q200 70, 190 55 Q180 40, 170 55 Q160 70, 150 55 Q140 40, 130 55 Q140 70, 150 85" 
        fill="url(#cityGradient)" stroke="#212121" stroke-width="2"/>
  <!-- Cityscape within Shell -->
  <rect x="140" y="60" width="10" height="20" fill="#FFC107"/>
  <rect x="160" y="60" width="10" height="25" fill="#FF8A65"/>
  <rect x="180" y="60" width="10" height="30" fill="#FFAB40"/>
  <rect x="145" y="70" width="10" height="20" fill="#E65100"/>
  <rect x="165" y="75" width="10" height="25" fill="#F4511E"/>
  <rect x="185" y="80" width="10" height="30" fill="#F57C00"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's image creatively incorporates a cityscape into the snail's shell using vibrant colors that suggest a lively urban environment.

    The rainbow path is distinct and visually appealing, enhancing the concept effectively.

    Player 1's design is more abstract and less detailed, making it less successful in conveying the idea of a snail with a cityscape shell on a rainbow path.

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
11
Player 2
12
Rectangles

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

Player 1
Player 2
6
Circles

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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