Back

SVG Drawing Match #598

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin juggling colorful planets in space"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="planet1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff7e00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffcb00;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="planet2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00bfff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1e90ff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="planet3" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff1493;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="penguinBody" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#303030;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="penguinBelly" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e6e6e6;stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="black" />
  
  <circle cx="75" cy="45" r="20" fill="url(#planet1)" />
  <circle cx="150" cy="70" r="15" fill="url(#planet2)" />
  <circle cx="220" cy="50" r="25" fill="url(#planet3)" />

  <g transform="translate(125, 180)">
    <path d="M-20,-40 Q-30,-60 0,-80 Q30,-60 20,-40 L0,0 Z" fill="url(#penguinBody)" />
    <circle cx="0" cy="-50" r="20" fill="url(#penguinBelly)" />
    <circle cx="-8" cy="-55" r="3" fill="black" />
    <circle cx="8" cy="-55" r="3" fill="black" />
    <path d="M-10,-40 Q-15,-30 -10,-20 Q0,-10 10,-20 Q15,-30 10,-40 Z" fill="#ff8080" />
    <path d="M-15,-60 Q-10,-70 0,-75 Q10,-70 15,-60" fill="black" />
  </g>
  
  <path d="M-10,0 L-20,40" stroke="black" stroke-width="5" />
  <path d="M0,0 L10,40" stroke="black" stroke-width="5" />
  <path d="M-30,50 C-20,60 -10,60 -10,70" stroke="black" stroke-width="2" fill="transparent" />
  
  <text x="50%" y="290" font-size="14" text-anchor="middle" fill="white">Penguin Juggling Planets</text>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="penguinBodyGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:#2C3E50; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#34495E; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient1" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:#E74C3C; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#C0392B; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:#1ABC9C; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#16A085; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:#F1C40F; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#F39C12; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="backgroundGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:#000428; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#004e92; stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#backgroundGradient)" />
  <ellipse cx="150" cy="220" rx="35" ry="50" fill="url(#penguinBodyGradient)" />
  <ellipse cx="150" cy="220" rx="25" ry="40" fill="white" />
  <circle cx="140" cy="210" r="5" fill="#34495E" />
  <circle cx="160" cy="210" r="5" fill="#34495E" />
  <path d="M145 220 Q150 230 155 220" stroke="#34495E" stroke-width="3" fill="none" />
  <circle cx="90" cy="70" r="15" fill="url(#planetGradient1)" />
  <circle cx="150" cy="40" r="10" fill="url(#planetGradient2)" />
  <circle cx="230" cy="80" r="20" fill="url(#planetGradient3)" />
  <path d="M90 70 Q150 150 230 80" stroke="white" stroke-width="2" fill="none" stroke-dasharray="5,5" />
  <path d="M90 70 Q120 60 150 40" stroke="white" stroke-width="2" fill="none" stroke-dasharray="5,5" />
  <path d="M150 40 Q190 60 230 80" stroke="white" stroke-width="2" fill="none" stroke-dasharray="5,5" />
  <circle cx="150" cy="160" r="30" fill="#2C3E50" />
  <ellipse cx="130" cy="150" rx="5" ry="10" fill="black" />
  <ellipse cx="170" cy="150" rx="5" ry="10" fill="black" />
  <path d="M140 170 Q150 180 160 170" stroke="black" stroke-width="3" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image offers a more sophisticated and visually appealing depiction with a clear space background and planets connected by dotted lines, enhancing the idea of juggling.

    The penguin design is more refined and expressive, adhering well to the prompt.

    In contrast, Player 1's image is simpler, lacking the detailed elements that make the scene visually engaging and technically polished.

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
13
Player 2
16
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
6
Player 2
6
Ellipses

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
4

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
1
Player 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
19
Player 2
10
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
5
Player 2
5
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
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