Back

SVG Drawing Match #1222

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail wearing a top hat, surfing a rainbow wave"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with subtle gradient -->
  <rect width="300" height="300" fill="url(#backgroundGradient)"/>
  
  <!-- Rainbow wave path -->
  <defs>
    <path id="wave" d="M0,200 Q150,180 300,200 Q230,220 300,240 Q150,260 0,240 Q-50,220 -50,200 Z"/>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="300" y2="0">
      <stop offset="0%" style="stop-color:#FF0000;stop-opacity:1"/>
      <stop offset="20%" style="stop-color:#FFA500;stop-opacity:1"/>
      <stop offset="40%" style="stop-color:#FFFF00;stop-opacity:1"/>
      <stop offset="60%" style="stop-color:#00FF00;stop-opacity:1"/>
      <stop offset="80%" style="stop-color:#00FFFF;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4B0082;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="backgroundGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4682B4;stop-opacity:1"/>
    </linearGradient>
  </defs>

  <!-- Wave -->
  <use href="#wave" fill="url(#rainbowGradient)"/>

  <!-- Snail body -->
  <g transform="translate(150,220)">
    <!-- Shell -->
    <path d="M0,0 Q30,-20 60,0 Q90,20 120,0 Q150,-20 180,0 Q210,20 240,0 Q270,-20 300,0 L300,50 L0,50 Z" 
          fill="url(#shellGradient)" transform="rotate(90)"/>
    <defs>
      <linearGradient id="shellGradient" x1="0" y1="0" x2="300" y2="0">
        <stop offset="0%" style="stop-color:#FFB5E8;stop-opacity:1"/>
        <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1"/>
      </linearGradient>
    </defs>

    <!-- Snail body -->
    <ellipse cx="150" cy="100" rx="40" ry="60" fill="#4D4D4D" opacity="0.8"/>
    
    <!-- Top hat -->
    <path d="M130,60 L170,60 L160,40 L140,40 Z" fill="#000000"/>
    <path d="M130,60 L170,60 L160,40 L140,40 Z" fill="#000000" transform="translate(0,-20)"/>
    <rect x="135" y="50" width="30" height="10" fill="#6c5ce7"/>
    <path d="M150,45 L160,35 L140,35 Z" fill="#6c5ce7"/>
    
    <!-- Face -->
    <circle cx="140" cy="80" r="8" fill="#ffffff"/>
    <circle cx="160" cy="80" r="8" fill="#ffffff"/>
    <path d="M140,90 Q150,95 160,90" fill="#ffffff"/>
    
    <!-- Hat decoration -->
    <path d="M150,30 L160,20 L140,20 Z" fill="#6c5ce7"/>
  </g>

  <!-- Water effects -->
  <g transform="translate(150,220)" opacity="0.6">
    <circle cx="130" cy="240" r="5" fill="url(#dropletGradient)"/>
    <circle cx="170" cy="240" r="5" fill="url(#dropletGradient)"/>
    <circle cx="150" cy="250" r="3" fill="url(#dropletGradient)"/>
  </g>
  <defs>
    <linearGradient id="dropletGradient" x1="0" y1="0" x2="0" y2="5">
      <stop offset="0%" style="stop-color:#4682B4;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4682B4;stop-opacity:0"/>
    </linearGradient>
  </defs>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="50%" stop-color="#FFA500" />
      <stop offset="100%" stop-color="#FF8C00" />
    </radialGradient>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="red" />
      <stop offset="14%" stop-color="orange" />
      <stop offset="28%" stop-color="yellow" />
      <stop offset="42%" stop-color="green" />
      <stop offset="57%" stop-color="blue" />
      <stop offset="71%" stop-color="indigo" />
      <stop offset="85%" stop-color="violet" />
      <stop offset="100%" stop-color="red" />
    </linearGradient>
    <pattern id="topHatPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="black" />
      <circle cx="5" cy="5" r="3" fill="white" />
    </pattern>

  </defs>
  <path d="M50 180 c 0,0 20,-40 60,-40 c 40,0 60,40 60,40 c 0,0 20,30 60,0 c 40,-30 60,-30 60,-30" fill="url(#rainbowGradient)" stroke="white" stroke-width="3" />
  <path d="M100 150 c 0,0 20,-20 40,0 c 20,20 30,10 30,10" fill="none" stroke="white" stroke-width="5"/>
  <ellipse cx="120" cy="160" rx="15" ry="10" fill="#A0522D"/>
  <path d="M 80 120 a 40 30 0 1 0 60 0" fill="url(#shellGradient)" stroke="brown" stroke-width="2"/>
  <path d="M 90 100 a 10 8 0 1 0 20 0 a 10 8 0 1 0 -20 0" fill="white"/>
  <circle cx="95" cy="95" r="3" fill="black"/>
  <circle cx="115" cy="95" r="3" fill="black"/>
  <rect x="85" y="70" width="30" height="20" fill="url(#topHatPattern)" stroke="black"/>
  <ellipse cx="105" y="70" rx="15" ry="5" fill="black"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission effectively captures the whimsical concept of a snail wearing a top hat and surfing a rainbow wave.

    The image clearly depicts the elements of the prompt with vibrant colors and a cohesive design.

    In contrast, Player 1's image lacks clarity and adherence to the theme, making it less visually appealing and harder to interpret.

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

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

Player 1
2
Player 2
2
Circles

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

Player 1
5
Player 2
3
Ellipses

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

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

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

Player 1
7
Player 2
4
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
13

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
4
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
35
Player 2
13
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
5
Player 2
3
Use Elements

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

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