Back

SVG Drawing Match #583

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whimsical snail taxi with a cityscape shell gliding through pastel clouds"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="shellGradient">
      <stop offset="0%" stop-color="#FFB6C1"/>
      <stop offset="100%" stop-color="#FF69B4"/>
    </linearGradient>
    <linearGradient id="cloudGradient">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#FFB6C1"/>
    </linearGradient>
    <pattern id="buildingPattern" width="40" height="60" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="40" height="60" fill="#87CEEB" rx="5"/>
      <rect x="10" y="10" width="20" height="40" fill="#FFD700" rx="3"/>
      <circle cx="15" cy="25" r="3" fill="#696969"/>
      <circle cx="25" cy="25" r="3" fill="#696969"/>
    </pattern>
  </defs>
  <g transform="translate(150,150)">
    <!-- Snail Body -->
    <path d="M0,0 Q50,50 100,0 Q50,-50 0,0" fill="url(#shellGradient)" stroke="#FF69B4" stroke-width="2"/>
    
    <!-- Shell Cityscape -->
    <g transform="translate(-40, -40)">
      <rect x="-40" y="-60" width="80" height="120" fill="#87CEEB" rx="20"/>
      <rect x="-35" y="-55" width="70" height="110" fill="#FFD700" rx="15"/>
      <rect x="-30" y="-50" width="60" height="100" fill="#FF6347" rx="10"/>
      <rect x="-25" y="-45" width="50" height="90" fill="#4169E1" rx="5"/>
      <rect x="-20" y="-40" width="40" height="80" fill="#808080" rx="0"/>
    </g>
    
    <!-- Taxi Details -->
    <rect x="-20" y="-20" width="40" height="10" fill="#FF69B4" rx="3"/>
    <circle cx="-25" cy="-25" r="3" fill="#FFD700"/>
    <path d="M-30,-30 L-20,-20 L-10,-30" fill="#CD5C5C"/>
    
    <!-- Clouds -->
    <g opacity="0.8">
      <rect x="-60" y="-80" width="80" height="40" rx="40" fill="url(#cloudGradient)"/>
      <rect x="-40" y="-70" width="60" height="30" rx="30" fill="url(#cloudGradient)"/>
      <rect x="-20" y="-80" width="80" height="40" rx="40" fill="url(#cloudGradient)"/>
    </g>
    
    <!-- Tail -->
    <path d="M0,0 Q-50,50 -100,0 Q-50,-50 0,0" fill="url(#shellGradient)" opacity="0.5"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Pastel cloud background -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#c2e0ff" />
      <stop offset="100%" stop-color="#ffe6f2" />
    </linearGradient>
    <pattern id="cloudPattern" width="300" height="300" patternUnits="userSpaceOnUse">
      <path d="M25,180 q15,-20 30,0 t30,0 t30,0 q15,-25 30,0 t40,0" fill="none" stroke="#ffffff" stroke-width="15" stroke-linecap="round" opacity="0.4"/>
      <path d="M15,220 q15,-20 30,0 t30,0 t30,0 q15,-25 30,0 t40,0" fill="none" stroke="#ffffff" stroke-width="18" stroke-linecap="round" opacity="0.3"/>
      <path d="M55,150 q15,-20 30,0 t30,0 t30,0 q15,-25 30,0 t40,0" fill="none" stroke="#ffffff" stroke-width="12" stroke-linecap="round" opacity="0.5"/>
    </pattern>
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    <linearGradient id="snailBodyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ffd9b3" />
      <stop offset="100%" stop-color="#ffb380" />
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#7fb0e6" />
      <stop offset="100%" stop-color="#2a5a8c" />
    </radialGradient>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#cloudPattern)" />
  
  <!-- Snail body -->
  <g transform="translate(50, 170)">
    <!-- Lower body -->
    <path d="M10,20 C5,40 15,60 40,60 C70,60 85,40 90,20 C95,0 90,-15 80,-15 C70,-15 65,0 60,5 L60,30 C60,32 58,35 55,35 L20,35 C15,35 10,30 10,20 Z" 
          fill="url(#snailBodyGradient)" />
    
    <!-- Head and antennae -->
    <ellipse cx="12" cy="15" rx="12" ry="10" fill="#ffcc99" />
    <circle cx="5" cy="12" r="2.5" fill="#333" />
    <circle cx="5" cy="12" r="0.8" fill="white" />
    <path d="M12,7 C12,0 5,-5 3,-12" stroke="#ffcc99" stroke-width="2" fill="none" />
    <path d="M18,7 C18,0 22,-5 25,-15" stroke="#ffcc99" stroke-width="2" fill="none" />
    <circle cx="3" cy="-12" r="2" fill="#ffe6cc" />
    <circle cx="25" cy="-15" r="2" fill="#ffe6cc" />
    
    <!-- Taxi elements -->
    <rect x="30" y="10" width="30" height="20" rx="3" ry="3" fill="#ffde59" />
    <rect x="30" y="20" width="30" height="10" rx="2" ry="2" fill="#ffde59" />
    <text x="35" y="26" font-family="Arial" font-size="7" fill="#333" font-weight="bold">TAXI</text>
    <path d="M30,20 L60,20" stroke="#333" stroke-width="0.7" />
    <rect x="35" y="12" width="8" height="5" rx="1" ry="1" fill="#333" />
    <rect x="47" y="12" width="8" height="5" rx="1" ry="1" fill="#333" />
    
    <!-- Taxi wheel/slime trail -->
    <ellipse cx="40" cy="60" rx="30" ry="3" fill="#a6e6ff" opacity="0.6" />
  </g>
  
  <!-- Shell with cityscape -->
  <g transform="translate(150, 150)">
    <!-- Main shell spiral -->
    <path d="M0,0 
             a40,30 0 0,1 40,10 
             a50,40 0 0,1 10,40 
             a60,50 0 0,1 -30,30 
             a70,60 0 0,1 -60,0 
             a65,55 0 0,1 -30,-40 
             a45,35 0 0,1 10,-40 
             a30,25 0 0,1 30,-10 
             a20,15 0 0,1 30,10 Z" 
          fill="url(#shellGradient)" />
          
    <!-- Cityscape silhouette inside shell -->
    <g transform="translate(-45, -25) scale(0.9)">
      <!-- City buildings -->
      <rect x="0" y="10" width="10" height="30" fill="#1a3f66" />
      <rect x="10" y="0" width="12" height="40" fill="#1a3f66" />
      <polygon points="22,25 22,40 30,40 30,15 26,20" fill="#1a3f66" />
      <rect x="30" y="5" width="8" height="35" fill="#1a3f66" />
      <polygon points="38,30 38,40 50,40 50,10 44,20" fill="#1a3f66" />
      <rect x="50" y="15" width="15" height="25" fill="#1a3f66" />
      <rect x="65" y="5" width="10" height="35" fill="#1a3f66" />
      <polygon points="75,20 75,40 85,40 85,10 80,15" fill="#1a3f66" />
      <rect x="85" y="25" width="15" height="15" fill="#1a3f66" />
      
      <!-- Windows -->
      <g fill="#ffffcc" opacity="0.7">
        <rect x="2" y="15" width="2" height="2" />
        <rect x="6" y="15" width="2" height="2" />
        <rect x="2" y="20" width="2" height="2" />
        <rect x="6" y="20" width="2" height="2" />
        <rect x="2" y="25" width="2" height="2" />
        <rect x="6" y="25" width="2" height="2" />
        <rect x="2" y="30" width="2" height="2" />
        <rect x="6" y="30" width="2" height="2" />
        
        <rect x="12" y="5" width="2" height="2" />
        <rect x="18" y="5" width="2" height="2" />
        <rect x="12" y="10" width="2" height="2" />
        <rect x="18" y="10" width="2" height="2" />
        <rect x="12" y="15" width="2" height="2" />
        <rect x="18" y="15" width="2" height="2" />
        <rect x="12" y="20" width="2" height="2" />
        <rect x="18" y="20" width="2" height="2" />
        <rect x="12" y="25" width="2" height="2" />
        <rect x="18" y="25" width="2" height="2" />
        <rect x="12" y="30" width="2" height="2" />
        <rect x="18" y="30" width="2" height="2" />
        
        <rect x="24" y="20" width="2" height="2" />
        <rect x="28" y="20" width="2" height="2" />
        <rect x="24" y="25" width="2" height="2" />
        <rect x="28" y="25" width="2" height="2" />
        <rect x="24" y="30" width="2" height="2" />
        <rect x="28" y="30" width="2" height="2" />
        
        <rect x="32" y="10" width="2" height="2" />
        <rect x="36" y="10" width="2" height="2" />
        <rect x="32" y="15" width="2" height="2" />
        <rect x="36" y="15" width="2" height="2" />
        <rect x="32" y="20" width="2" height="2" />
        <rect x="36" y="20" width="2" height="2" />
        <rect x="32" y="25" width="2" height="2" />
        <rect x="36" y="25" width="2" height="2" />
        <rect x="32" y="30" width="2" height="2" />
        <rect x="36" y="30" width="2" height="2" />
        
        <rect x="40" y="15" width="2" height="2" />
        <rect x="46" y="15" width="2" height="2" />
        <rect x="40" y="20" width="2" height="2" />
        <rect x="46" y="20" width="2" height="2" />
        <rect x="40" y="25" width="2" height="2" />
        <rect x="46" y="25" width="2" height="2" />
        <rect x="40" y="30" width="2" height="2" />
        <rect x="46" y="30" width="2" height="2" />
        
        <rect x="54" y="20" width="2" height="2" />
        <rect x="60" y="20" width="2" height="2" />
        <rect x="54" y="25" width="2" height="2" />
        <rect x="60" y="25" width="2" height="2" />
        <rect x="54" y="30" width="2" height="2" />
        <rect x="60" y="30" width="2" height="2" />
        
        <rect x="67" y="10" width="2" height="2" />
        <rect x="72" y="10" width="2" height="2" />
        <rect x="67" y="15" width="2" height="2" />
        <rect x="72" y="15" width="2" height="2" />
        <rect x="67" y="20" width="2" height="2" />
        <rect x="72" y="20" width="2" height="2" />
        <rect x="67" y="25" width="2" height="2" />
        <rect x="72" y="25" width="2" height="2" />
        <rect x="67" y="30" width="2" height="2" />
        <rect x="72" y="30" width="2" height="2" />
        
        <rect x="78" y="15" width="2" height="2" />
        <rect x="82" y="15" width="2" height="2" />
        <rect x="78" y="20" width="2" height="2" />
        <rect x="82" y="20" width="2" height="2" />
        <rect x="78" y="25" width="2" height="2" />
        <rect x="82" y="25" width="2" height="2" />
        <rect x="78" y="30" width="2" height="2" />
        <rect x="82" y="30" width="2" height="2" />
        
        <rect x="88" y="30" width="2" height="2" />
        <rect x="93" y="30" width="2" height="2" />
        <rect x="88" y="35" width="2" height="2" />
        <rect x="93" y="35" width="2" height="2" />
      </g>
    </g>
    
    <!-- Shell details -->
    <path d="M0,0 
             a40,30 0 0,1 40,10 
             a50,40 0 0,1 10,40" 
          fill="none" stroke="#4d88c4" stroke-width="1.5" opacity="0.6" />
    <path d="M0,0 
             a40,30 0 0,1 40,10 
             a50,40 0 0,1 10,40 
             a60,50 0 0,1 -30,30" 
          fill="none" stroke="#4d88c4" stroke-width="1" opacity="0.5" />
  </g>
  
  <!-- Glimmers and sparkles -->
  <g filter="url(#glow)">
    <circle cx="120" cy="100" r="2" fill="white" opacity="0.8" />
    <circle cx="190" cy="80" r="1.5" fill="white" opacity="0.7" />
    <circle cx="220" cy="120" r="2" fill="white" opacity="0.9" />
    <circle cx="150" cy="50" r="1" fill="white" opacity="0.6" />
    <circle cx="80" cy="120" r="1.5" fill="white" opacity="0.8" />
    <circle cx="240" cy="160" r="1" fill="white" opacity="0.7" />
  </g>
  
  <!-- Small decorative clouds -->
  <path d="M50,80 q10,-10 20,0 t20,0 t15,0" fill="white" opacity="0.6" />
  <path d="M200,60 q12,-12 24,0 t24,0 t18,0" fill="white" opacity="0.5" />
  <path d="M230,100 q8,-8 16,0 t16,0 t12,0" fill="white" opacity="0.7" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission effectively captures the whimsical concept with a snail carrying a cityscape on its shell, set against a pastel cloud background.

    The design is cohesive and visually appealing, fulfilling the prompt with creativity and technical quality.

    Player 1's image, although colorful, lacks clarity and does not clearly represent the theme of a snail taxi with a cityscape shell.

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
17
Player 2
112
Rectangles

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

Player 1
11
Player 2
84
Circles

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

Player 1
3
Player 2
10
Ellipses

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

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

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

Player 1
3
Player 2
13
Groups

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

Player 1
3
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
15

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

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
63
Max Group Nesting

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

Player 1
1
Player 2
2
Defs Elements

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

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

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