Back

SVG Drawing Match #1659

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Galactic snail gliding on a rainbow path through space"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#00022e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00083c;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%">
      <stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4b0082;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
      <stop offset="14.28%" style="stop-color:#ff7f00;stop-opacity:1" />
      <stop offset="28.57%" style="stop-color:#ffff00;stop-opacity:1" />
      <stop offset="42.86%" style="stop-color:#00ff00;stop-opacity:1" />
      <stop offset="57.14%" style="stop-color:#0000ff;stop-opacity:1" />
      <stop offset="71.43%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="85.71%" style="stop-color:#8f00ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff0000;stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  <g transform="translate(150,150)">
    <circle r="20" fill="#4b0082" filter="url(#glow)"/>
    <path d="M-20,0 A20,20 0 0,1 0,20 L0,40 Q20,40 40,20 L20,0 Z" fill="url(#shellGradient)" filter="url(#glow)"/>
    <path d="M-40,20 Q-60,40 -40,60 Q-20,80 -40,100 Q-60,120 -40,140 Q-20,160 -40,180" stroke="url(#rainbow)" stroke-width="4" fill="none"/>
  </g>
  <g transform="translate(150,150)">
    <circle r="1" fill="#fff"/>
    <circle r="1" fill="#fff" transform="translate(10,10)"/>
  </g>
  <g transform="translate(100,100)">
    <circle r="0.5" fill="#fff"/>
    <circle r="0.5" fill="#fff" transform="translate(10,10)"/>
  </g>
  <g transform="translate(200,200)">
    <circle r="0.5" fill="#fff"/>
    <circle r="0.5" fill="#fff" transform="translate(10,10)"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #FF5F6D; stop-opacity: 1" />
      <stop offset="25%" style="stop-color: #FFC371; stop-opacity: 1" />
      <stop offset="50%" style="stop-color: #47E3FF; stop-opacity: 1" />
      <stop offset="75%" style="stop-color: #61B15A; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #B06AB6; stop-opacity: 1" />
    </linearGradient>
    <radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #FFD700; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #FF4500; stop-opacity: 1" />
    </radialGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="black" />
  
  <path d="M150 250 Q130 210 80 180 Q40 150 100 130 Q140 120 150 80 Q160 40 220 70 Q260 90 230 150 Q200 200 150 250 Z" fill="url(#rainbowGradient)" stroke="white" stroke-width="2"/>
  
  <ellipse cx="120" cy="130" rx="20" ry="10" fill="#B0E0E6" opacity="0.7"/>
  
  <g transform="translate(50 70)">
    <path d="M60 100 C50 130, 90 130, 80 100 C75 80, 70 60, 90 60 C100 60, 95 80, 90 90 C85 100, 70 100, 60 100" fill="url(#snailShellGradient)" />
    <circle cx="80" cy="55" r="10" fill="lavender" />
    <circle cx="78" cy="54" r="5" fill="purple" />
    <path d="M90 100 L110 90 C130 80, 135 120, 145 100" stroke="white" stroke-width="2" fill="none" />
  </g>
  
  <g>
    <circle cx="250" cy="50" r="5" fill="#FFD700" />
    <circle cx="70" cy="30" r="4" fill="#FF6347" />
    <circle cx="180" cy="20" r="3" fill="#1E90FF" />
    <circle cx="220" cy="100" r="6" fill="#32CD32" />
    <circle cx="40" cy="250" r="2" fill="#FF1493" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission effectively captures the idea of a 'galactic snail' with a creative and colorful design that suggests a snail's form through abstract shapes.

    The use of gradients and surrounding celestial elements enhances the space theme, creating a visually appealing composition.

    In contrast, Player 1's image is less defined and doesn't as clearly represent a snail or a rainbow path, lacking the same level of creativity 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
10
Player 2
12
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
7
Player 2
7
Ellipses

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

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

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
10

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
11
Player 2
16
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
4
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