Back

SVG Drawing Match #2284

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin riding a rocket through a galaxy of donuts."

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Galaxy background -->
  <defs>
    <radialGradient id="sky" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#001F4D" />
      <stop offset="100%" stop-color="#150485" />
    </radialGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
  
  <!-- Donut galaxy rings -->
  <circle cx="150" cy="150" r="130" fill="none" stroke="#F8CF48" stroke-width="5" />
  <circle cx="150" cy="150" r="105" fill="none" stroke="#F8CF48" stroke-width="5" />
  <circle cx="150" cy="150" r="80" fill="none" stroke="#F8CF48" stroke-width="5" />
  <circle cx="150" cy="150" r="55" fill="none" stroke="#F8CF48" stroke-width="5" />
  <circle cx="150" cy="150" r="30" fill="none" stroke="#F8CF48" stroke-width="5" />
  
  <!-- Donuts in the galaxy -->
  <circle cx="100" cy="100" r="10" fill="#955438" />
  <circle cx="200" cy="200" r="10" fill="#955438" />
  <circle cx="80" cy="220" r="10" fill="#955438" />
  <circle cx="220" cy="80" r="10" fill="#955438" />
  
  <!-- Rocket body -->
  <polygon points="140,140 160,140 160,60 140,60" fill="#7F7F7F" />
  <polygon points="140,60 95,45 140,30" fill="#B3B3B3" />
  
  <!-- Rocket window -->
  <circle cx="150" cy="100" r="10" fill="#C4E1FF" />
  
  <!-- Penguin -->
  <circle cx="150" cy="190" r="20" fill="#333333" />
  <path d="M150 180 Q130 160 150 140 Q170 160 150 180" fill="#333333" />
  <circle cx="145" cy="185" r="2" fill="#FFFFFF" />
  
</svg>
SVG by Gemini 2.5 Flash Preview High 04-17
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgb(20,0,50);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1" />
    </radialGradient>
    <pattern id="donutPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <circle cx="20" cy="20" r="15" fill="#FFC0CB"/>
      <circle cx="20" cy="20" r="5" fill="white"/>
      <circle cx="15" cy="10" r="2" fill="#8B0000"/>
      <circle cx="25" cy="30" r="2" fill="#8B0000"/>
    </pattern>
    <linearGradient id="rocketGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFA500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF4500;stop-opacity:1" />
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="url(#galaxyGradient)"/>

  <circle cx="50" cy="50" r="30" fill="url(#donutPattern)"/>
  <circle cx="250" cy="80" r="40" fill="url(#donutPattern)"/>
  <circle cx="100" cy="200" r="25" fill="url(#donutPattern)"/>
  <circle cx="180" cy="250" r="35" fill="url(#donutPattern)"/>
  <circle cx="280" cy="20" r="20" fill="url(#donutPattern)"/>
  <circle cx="20" cy="280" r="28" fill="url(#donutPattern)"/>

  <g transform="translate(150, 150) rotate(-30)">
    <path d="M -20 -70 L 20 -70 L 20 70 L -20 70 Z" fill="url(#rocketGradient)"/>
    <path d="M -20 70 L -30 80 L 30 80 L 20 70 Z" fill="#FFFF00"/>
    <circle cx="0" cy="-70" r="20" fill="#C0C0C0"/>

    <g transform="translate(0, 40)">
      <path d="M -10 -20 Q 0 -30 10 -20 L 10 10 Q 0 20 -10 10 Z" fill="#00008B"/>
      <circle cx="0" cy="-15" r="5" fill="white"/>
      <circle cx="-5" cy="-10" r="2" fill="black"/>
      <circle cx="5" cy="-10" r="2" fill="black"/>
      <path d="M -5 5 L -10 10 L 10 10 L 5 5 Z" fill="#8B0000"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Flash Preview High 04-17 Player 2

Judge's Analysis

    Player 2's image is more visually dynamic and adheres more closely to the prompt.

    The depiction of the rocket and the galaxy of donuts is clear and colorful, with the penguin visible on the rocket.

    Player 1's submission lacks clarity in representing a penguin or a rocket, and the donuts are minimally detailed, making it less effective in fulfilling 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
16
Player 2
19
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
12
Player 2
14
Ellipses

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
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
3
Player 2
20
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
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.