Back

SVG Drawing Match #1676

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail with a rocket strapped to its shell zooming through space"

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="gradient1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="blue"/>
      <stop offset="100%" stop-color="purple"/>
    </linearGradient>
    <linearGradient id="gradient2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="yellow"/>
      <stop offset="100%" stop-color="orange"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#gradient1)"/>
  <circle cx="150" cy="150" r="40" fill="green" stroke="black" stroke-width="2"/>
  <ellipse cx="150" cy="150" rx="40" ry="20" fill="white" stroke="black" stroke-width="2"/>
  <path d="M150 110 Q180 130 150 150 Q120 130 150 110" fill="red" stroke="black" stroke-width="2"/>
  <path d="M150 150 L160 130 L170 150 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L160 170 L170 150 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L140 130 L130 150 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L140 170 L130 150 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <rect x="150" y="150" width="50" height="10" fill="url(#gradient2)" stroke="black" stroke-width="2"/>
  <path d="M175 155 Q190 170 200 155 Q190 140 175 155" fill="red" stroke="black" stroke-width="2"/>
  <circle cx="200" cy="155" r="5" fill="white" stroke="black" stroke-width="2"/>
  <path d="M175 155 L175 205 L185 205 L185 155 Z" fill="silver" stroke="black" stroke-width="2"/>
  <path d="M180 160 L180 200 L190 200 L190 160 Z" fill="gold" stroke="black" stroke-width="2"/>
  <path d="M185 165 L185 195 L195 195 L195 165 Z" fill="orange" stroke="black" stroke-width="2"/>
  <ellipse cx="100" cy="250" rx="30" ry="20" fill="white" stroke="black" stroke-width="2"/>
  <path d="M100 250 Q70 270 100 290 Q130 270 100 250" fill="red" stroke="black" stroke-width="2"/>
  <path d="M100 250 L120 270 L140 250 L120 230 Z" fill="blue" stroke="black" stroke-width="2"/>
  <path d="M100 250 L80 270 L60 250 L80 230 Z" fill="blue" stroke="black" stroke-width="2"/>
  <path d="M100 250 L90 260 L110 280 L130 260 Z" fill="green" stroke="black" stroke-width="2"/>
  <path d="M100 250 L110 260 L90 280 L70 260 Z" fill="green" stroke="black" stroke-width="2"/>
  <path d="M150 150 L200 150 L180 100 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L200 150 L180 200 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L150 200 L180 180 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L150 100 L180 120 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L180 150 L160 130 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L180 150 L160 170 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L150 150 L180 130 Z" fill="yellow" stroke="black" stroke-width="2"/>
  <path d="M150 150 L150 150 L180 170 Z" fill="yellow" stroke="black" stroke-width="2"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="snail-shell-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8e3b2e; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f7c6b6; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="rocket-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff5247; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffcc00; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="thrust-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc00; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff0000; stop-opacity:0" />
    </radialGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="black" />
  
  <g transform="translate(90, 150)">
    <path d="M10,0 C20,-20 40,-20 50,0 C70,20 60,40 30,50 C10,60 -20,50 -10,30 C0,20 5,10 10,0 Z" fill="url(#snail-shell-gradient)" />
    <circle cx="10" cy="-10" r="5" fill="#000" />
    
    <path d="M-10,0 L-20,10 L-10,10 Z" fill="green" />
    <path d="M10,0 L20,10 L10,10 Z" fill="green" />
     
    <circle cx="10" cy="30" r="5" fill="yellow" />
    <path d="M10,30 L20,40 L0,40 Z" fill="orange" />
  </g>
  
  <g transform="translate(90, 100)">
    <path d="M0,-40 L-25,-60 L-15,-75 L-10,-70 L-10,-45 Z" fill="url(#rocket-gradient)" />
    <polygon points="-20,-60 -30,-55 -10,-45 -20,-45" fill="white" />
  </g>
  
  <g transform="translate(110, 90)">
    <circle cx="0" cy="0" r="5" fill="url(#thrust-gradient)" />
    <circle cx="-5" cy="5" r="5" fill="url(#thrust-gradient)" />
    <circle cx="5" cy="5" r="5" fill="url(#thrust-gradient)" />
  </g>
  
  <g>
    <text x="60" y="60" font-family="Arial" font-size="20" fill="#fff" opacity="0.5">Zooming through space!</text>
  </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 image better adheres to the prompt with a clearer depiction of a snail and rocket, enhanced by the text 'Zooming through space!' The composition effectively uses space to convey movement and speed, whereas Player 1's design is more abstract, 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
28
Player 2
12
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
2
Player 2
5
Ellipses

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

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

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

Player 1
22
Player 2
5
Groups

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

Player 1
Player 2
4

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

The number of elements with stroke attributes in the SVG.

Player 1
27
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
7

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