Back

SVG Drawing Match #1654

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Frog in a spacesuit on a lily pad orbiting Saturn"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" style="stop-color: #ff69b4"/>
      <stop offset="1" style="stop-color: #ff1493"/>
    </linearGradient>
    <linearGradient id="grad2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" style="stop-color: #87CEEB"/>
      <stop offset="1" style="stop-color: #1E90FF"/>
    </linearGradient>
    <linearGradient id="grad3" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" style="stop-color: #00FA9A"/>
      <stop offset="1" style="stop-color: #32CD32"/>
    </linearGradient>
    <radialGradient id="grad4" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #00FFFF"/>
      <stop offset="100%" style="stop-color: #00008B"/>
    </radialGradient>
  </defs>
  <g transform="translate(150,150)">
    <!-- Saturn -->
    <circle cx="0" cy="0" r="100" fill="url(#grad2)"/>
    <circle cx="0" cy="0" r="110" fill="none" stroke="url(#grad1)" stroke-width="10"/>
    <!-- Ring -->
    <path d="M-115,0A115,115 0 0 1 115,0Z M-100,0A100,100 0 0 0 100,0Z" fill="url(#grad1)"/>
    <!-- Orbit Path -->
    <path d="M-150,0A150,150 0 0 1 150,0" stroke="url(#grad1)" stroke-width="5" fill="none"/>
    <!-- Lily Pad -->
    <circle cx="-120" cy="0" r="30" fill="url(#grad3)"/>
    <!-- Frog -->
    <g transform="translate(-120,0)">
      <ellipse cx="0" cy="0" rx="20" ry="10" fill="green"/>
      <ellipse cx="10" cy="-5" rx="5" ry="3" fill="white"/>
      <ellipse cx=-10 cy="-5" rx="5" ry="3" fill="white"/>
      <circle cx="10" cy="-5" r="1" fill="black"/>
      <circle cx="-10" cy="-5" r="1" fill="black"/>
      <path d="M10,5Q15,10 20,5" stroke="black" fill="none"/>
      <path d="M-10,5Q-15,10 -20,5" stroke="black" fill="none"/>
    </g>
    <!-- Spacesuit -->
    <rect x="-14" y="-15" width="28" height="30" fill="url(#grad4)"/>
    <circle cx="-10" cy="-15" r="5" fill="silver"/>
    <circle cx="10" cy="-15" r="5" fill="silver"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#000428"/>
      <stop offset="100%" stop-color="#004e92"/>
    </radialGradient>
    <radialGradient id="saturnGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F5CBA7"/>
      <stop offset="100%" stop-color="#D68910"/>
    </radialGradient>
    <linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#D2B48C" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#8B5A2B" stop-opacity="0.8"/>
    </linearGradient>
    <radialGradient id="lilyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#76b947"/>
      <stop offset="100%" stop-color="#3a5f0b"/>
    </radialGradient>
    <radialGradient id="frogGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4CAF50"/>
      <stop offset="100%" stop-color="#2E7D32"/>
    </radialGradient>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#cccccc" stop-opacity="0.3"/>
    </radialGradient>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="1" cy="1" r="0.5" fill="#ffffff"/>
      <circle cx="7" cy="5" r="0.3" fill="#ffffff"/>
      <circle cx="3" cy="8" r="0.4" fill="#ffffff"/>
      <circle cx="9" cy="2" r="0.2" fill="#ffffff"/>
    </pattern>
  </defs>
  <!-- Background Space -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <rect width="300" height="300" fill="url(#stars)" opacity="0.2"/>
  
  <!-- Saturn -->
  <g transform="translate(220, 80)">
    <circle cx="0" cy="0" r="50" fill="url(#saturnGradient)"/>
    <ellipse cx="0" cy="0" rx="60" ry="20" fill="url(#ringGradient)" transform="rotate(25)"/>
  </g>
  
  <!-- Lily Pad -->
  <g transform="translate(150, 200)">
    <ellipse cx="0" cy="0" rx="80" ry="40" fill="url(#lilyGradient)" />
    <ellipse cx="-30" cy="-10" rx="20" ry="10" fill="#6AA84F" opacity="0.7"/>
    <ellipse cx="30" cy="10" rx="15" ry="7" fill="#6AA84F" opacity="0.7"/>
    
    <!-- Frog Body -->
    <g id="frog" transform="translate(0, -10)">
      <ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#frogGradient)" />
      <!-- Eyes -->
      <circle cx="-10" cy="-5" r="5" fill="#ffffff"/>
      <circle cx="10" cy="-5" r="5" fill="#ffffff"/>
      <circle cx="-10" cy="-5" r="2" fill="#000000"/>
      <circle cx="10" cy="-5" r="2" fill="#000000"/>
      <!-- Spacesuit -->
      <path d="M-30,15 Q0,50 30,15" fill="#C0C0C0" opacity="0.5"/>
      <circle cx="0" cy="0" r="20" fill="url(#helmetGradient)" stroke="#aaaaaa" stroke-width="2"/>
      <path d="M-15,-10 Q0,-20 15,-10" stroke="#999999" stroke-width="2" fill="none"/>
      <!-- Arms -->
      <path d="M-30,10 Q-40,20 -30,25" stroke="#C0C0C0" stroke-width="4" fill="none"/>
      <path d="M30,10 Q40,20 30,25" stroke="#C0C0C0" stroke-width="4" fill="none"/>
      <!-- Legs -->
      <path d="M-10,15 Q-15,30 -10,35" stroke="#C0C0C0" stroke-width="4" fill="none"/>
      <path d="M10,15 Q15,30 10,35" stroke="#C0C0C0" stroke-width="4" fill="none"/>
    </g>
  </g>
  
  <!-- Orbit Path -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="#ffffff" stroke-dasharray="5,5" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission clearly depicts a frog in a spacesuit on a lily pad with Saturn in the background, adhering closely to the prompt.

    The technical quality and visual appeal are strong, with a clean design and effective use of color to differentiate the elements.

    Player 1's image lacks clarity and adherence to the theme, making Player 2 the clear winner.

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
Player 2
24
Rectangles

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

Player 1
Player 2
2
Circles

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

Player 1
Player 2
11
Ellipses

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

Player 1
Player 2
5
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
Player 2
6
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
Player 2
17

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
4

Complexity Metrics

Path Commands

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

Player 1
Player 2
12
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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