Back

SVG Drawing Match #603

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giant snail racing a miniature spaceship over a rainbow bridge"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: red; stop-opacity: 1" />
      <stop offset="16%" style="stop-color: orange; stop-opacity: 1" />
      <stop offset="32%" style="stop-color: yellow; stop-opacity: 1" />
      <stop offset="48%" style="stop-color: green; stop-opacity: 1" />
      <stop offset="64%" style="stop-color: blue; stop-opacity: 1" />
      <stop offset="80%" style="stop-color: indigo; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: violet; stop-opacity: 1" />
    </linearGradient>
    <radialGradient id="snailShell" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #8B4513; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #D2691E; stop-opacity: 1" />
    </radialGradient>
    <radialGradient id="spaceship" cx="50%" cy="50%" r="40%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #00BFFF; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #1E90FF; stop-opacity: 1" />
    </radialGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="lightblue" />
  
  <ellipse cx="150" cy="250" rx="160" ry="20" fill="url(#rainbow)" />
  
  <g transform="translate(120, 180)">
    <path d="M20,0 C20,-40 80,-40 80,0 C80,40 20,40 20,0 Z" fill="url(#snailShell)" />
    <circle cx="40" cy="-15" r="10" fill="green" />
    <circle cx="20" cy="-10" r="25" fill="#6B8E23" />
    <circle cx="45" cy="-50" r="5" fill="red" />
    <circle cx="50" cy="-55" r="5" fill="yellow" />
    <path d="M10,0 Q30,10 50,0" stroke="black" stroke-width="2" fill="none" />
    <circle cx="20" cy="10" r="5" fill="#FFD700" />
  </g>
  
  <g transform="translate(190, 150)">
    <polygon points="0,-10 15,10 -15,10" fill="url(#spaceship)" />
    <polygon points="0,-15 7.5,0 -7.5,0" fill="black" />
    <circle cx="0" cy="-10" r="3" fill="white" />
    <path d="M0,10 L-5,15 L5,15 Z" fill="#FF4500" />
  </g>

  <path d="M120,190 Q150,175 180,190" stroke="black" stroke-width="2" fill="none" />
  <path d="M200,170 Q210,150 230,160" stroke="black" stroke-width="2" fill="none" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" style="stop-color:#FF0000;stop-opacity:1" />
      <stop offset="0.2" style="stop-color:#FFA500;stop-opacity:1" />
      <stop offset="0.4" style="stop-color:#FFFF00;stop-opacity:1" />
      <stop offset="0.6" style="stop-color:#008000;stop-opacity:1" />
      <stop offset="0.8" style="stop-color:#0000FF;stop-opacity:1" />
      <stop offset="1" style="stop-color:#4B0082;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="snailShell" cx="150" cy="150" r="80" fx="150" fy="150">
      <stop offset="0" style="stop-color:#0066CC;stop-opacity:1" />
      <stop offset="1" style="stop-color:#0099FF;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="spaceship" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" style="stop-color:#99CCFF;stop-opacity:1" />
      <stop offset="1" style="stop-color:#003366;stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#rainbow)" opacity="0.1"/>
  <rect width="300" height="300" fill="#87CEEB" />

  <!-- Rainbow bridge -->
  <path d="M50,200 Q150,180 250,200 L250,130 L50,130 L50,200" fill="url(#rainbow)" opacity="0.8"/>
  <rect x="50" y="130" width="200" height="70" fill="none" stroke="#FFFFFF" stroke-width="2" rx="10"/>

  <!-- Giant snail -->
  <path d="M100,220 Q130,240 160,220 190,200 160,180 130,160 100,180 70,200 30,220 50,240 70,260" fill="url(#snailShell)"/>
  <ellipse cx="130" cy="220" rx="40" ry="30" fill="#4D4D4D" opacity="0.8"/>
  <circle cx="140" cy="200" r="8" fill="#FFFFFF"/>
  <circle cx="140" cy="200" r="4" fill="#000000"/>
  <path d="M120,200 Q140,190 160,200" stroke="#000000" stroke-width="2" fill="none"/>

  <!-- Miniature spaceship -->
  <path d="M250,220 Q260,210 270,220 280,230 270,240 260,250 250,240" fill="url(#spaceship)" filter="url(#glow)"/>
  <rect x="265" y="225" width="10" height="10" fill="#003366" rx="2"/>
  <path d="M250,220 Q255,215 265,220" stroke="#00FFFF" stroke-width="2" fill="none"/>

  <!-- Stars -->
  <circle cx="50" cy="50" r="1" fill="#FFFFFF"/>
  <circle cx="150" cy="80" r="1" fill="#FFFFFF"/>
  <circle cx="250" cy="60" r="1" fill="#FFFFFF"/>
  <circle cx="200" cy="100" r="1" fill="#FFFFFF"/>
  <circle cx="100" cy="120" r="1" fill="#FFFFFF"/>
  <circle cx="220" cy="150" r="1" fill="#FFFFFF"/>
  <circle cx="180" cy="200" r="1" fill="#FFFFFF"/>
  <circle cx="120" cy="250" r="1" fill="#FFFFFF"/>
  <circle cx="280" cy="280" r="1" fill="#FFFFFF"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission more effectively captures the concept of 'a giant snail racing a miniature spaceship over a rainbow bridge.' The snail and spaceship are clearly represented and the rainbow bridge is visually distinct, enhancing the composition.

    In contrast, Player 1's image lacks clarity and detail, making it difficult to discern the elements described in 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
15
Player 2
21
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
6
Player 2
11
Ellipses

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

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

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

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