Back

SVG Drawing Match #1522

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Golden snail atop a rainbow swamp with silver stars falling"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow swamp -->
  <rect x="0" y="200" width="300" height="100" fill="url(#rainbow)" />
  
  <!-- Golden snail -->
  <circle cx="150" cy="180" r="20" fill="#DAA520" />
  <path d="M150,180 L140,200 Q150,210 160,200 L150,180 Z" fill="#CD853F" />
  
  <!-- Silver stars falling -->
  <circle cx="50" cy="50" r="2" fill="#C0C0C0">
    <animate attributeName="cy" values="50;250;50" dur="3s" repeatCount="indefinite" />
  </circle>
  <circle cx="100" cy="20" r="3" fill="#C0C0C0">
    <animate attributeName="cy" values="20;250;20" dur="4s" repeatCount="indefinite" />
  </circle>
  <circle cx="150" cy="70" r="2" fill="#C0C0C0">
    <animate attributeName="cy" values="70;250;70" dur="2.5s" repeatCount="indefinite" />
  </circle>
  
  <!-- Gradient for rainbow -->
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FF0000" />
      <stop offset="16.7%" style="stop-color:#FFA500" />
      <stop offset="33.3%" style="stop-color:#FFFF00" />
      <stop offset="50%" style="stop-color:#008000" />
      <stop offset="66.7%" style="stop-color:#0000FF" />
      <stop offset="83.3%" style="stop-color:#4B0082" />
      <stop offset="100%" style="stop-color:#EE82EE" />
    </linearGradient>
  </defs>
</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="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color: red; stop-opacity: 1" />
      <stop offset="20%" style="stop-color: orange; stop-opacity: 1" />
      <stop offset="40%" style="stop-color: yellow; stop-opacity: 1" />
      <stop offset="60%" style="stop-color: green; stop-opacity: 1" />
      <stop offset="80%" style="stop-color: blue; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: violet; stop-opacity: 1" />
    </linearGradient>
    <radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: gold; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: darkgoldenrod; stop-opacity: 1" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="deepskyblue" />
  <ellipse cx="150" cy="240" rx="120" ry="30" fill="url(#rainbowGradient)" />
  <ellipse cx="150" cy="250" rx="140" ry="40" fill="mediumseagreen" />
  <g filter="url(#glow)">
    <path d="M150 200 Q130 170 150 140 Q170 170 150 200 Z" fill="lightcoral" />
    <path d="M150 180 Q135 150 150 120 Q165 150 150 180 Z" fill="lightcoral" />
    <path d="M140 120 Q130 100 140 90 Q150 100 140 120 Z" fill="lightcoral" />
    <path d="M160 120 Q170 100 160 90 Q150 100 160 120 Z" fill="lightcoral" />
    <circle cx="150" cy="130" r="25" fill="url(#snailShellGradient)" />
  </g>
  <circle cx="150" cy="130" r="10" fill="goldenrod" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(50, 20) rotate(45)" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(80, 40) rotate(60)" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(200, 50) rotate(75)" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(10, 90) rotate(30)" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(120, 10) rotate(90)" />
  <polygon points="0,0 10,0 5,-10" fill="silver" transform="translate(250, 20) rotate(150)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's submission effectively captures the prompt with a distinct rainbow swamp and a golden snail, while incorporating silver stars in a simple yet clear composition.

    The use of a gradient for the swamp adds visual interest and aligns well with the theme.

    Player 2, although creative, does not incorporate the rainbow aspect and lacks the dynamic visual appeal of the first image.

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
6
Player 2
15
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
4
Player 2
2
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
6
Paths

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

Player 1
1
Player 2
4
Groups

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
5

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
3
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
6

Complexity Metrics

Path Commands

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

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

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