Back

SVG Drawing Match #2068

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin in a space suit on a bright orange surfboard riding a cosmic wave"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cosmicWave" cx="50%" cy="50%" r="50%" fx="30%" fy="70%">
      <stop offset="0%" stop-color="purple" />
      <stop offset="50%" stop-color="blue" />
      <stop offset="100%" stop-color="darkblue" />
    </radialGradient>
    <pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1" fill="white" opacity="0.5" />
      <circle cx="10" cy="8" r="0.5" fill="white" opacity="0.8" />
      <circle cx="18" cy="15" r="1.5" fill="white" opacity="0.3" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#stars)" />
  <path d="M0 200 C 50 150, 100 250, 150 200 C 200 150, 250 220, 300 180 V 300 H 0 Z" fill="url(#cosmicWave)" />
  <path d="M100 160 C 120 150, 180 150, 200 160 L 220 180 C 190 130, 130 130, 110 180 Z" fill="orange" stroke="black" stroke-width="2" />
  <ellipse cx="155" cy="120" rx="25" ry="35" fill="white" />
  <circle cx="140" cy="110" r="7" fill="black" />
  <circle cx="170" cy="110" r="7" fill="black" />
  <path d="M145 125 C 150 130, 160 130, 165 125" stroke="orange" stroke-width="3" stroke-linecap="round"/>
  <path d="M130 135 L 170 135 L 160 150 L 140 150 Z" fill="orange"/>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
  <stop offset="0%" style="stop-color:rgb(255,69,0);stop-opacity:1" />
  <stop offset="100%" style="stop-color:rgb(255,140,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
  <stop offset="0%" style="stop-color:rgb(135,206,250);stop-opacity:1" />
  <stop offset="100%" style="stop-color:rgb(70,130,180);stop-opacity:1" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#grad2)" />
<path d="M150 250 C150 250 150 280 150 300 C150 320 150 350 150 370 C150 390 150 420 150 440 C150 460 150 490 150 510 C150 530 150 560 150 580 C150 600 150 630 150 650 C150 670 150 700 150 720 C150 740 150 770 150 790 C150 810 150 840 150 860 C150 880 150 910 150 930 C150 950 150 980 150 1000" stroke="url(#grad1)" stroke-width="15" stroke-linecap="round" stroke-linejoin="round" fill="none" transform="translate(-100 -300)"/>
<path d="M100 100 Q150 150 200 100 T300 100" fill="none" stroke="white" stroke-width="15"/>
<ellipse cx="150" cy="150" rx="100" ry="30" fill="white"/>
<path d="M100 100 C100 100 100 150 100 150 C100 150 150 150 150 150 C150 150 200 150 200 150 C200 150 200 100 200 100" fill="white"/>
<ellipse cx="150" cy="170" rx="50" ry="50" fill="black"/>
<ellipse cx="150" cy="200" rx="10" ry="10" fill="white"/>
<ellipse cx="150" cy="220" rx="50" ry="20" fill="white"/>
<path d="M120 240 C120 240 150 250 180 240" stroke="black" stroke-width="5" fill="none"/>
<path d="M120 240 C120 240 150 270 180 240" stroke="black" stroke-width="5" fill="none"/>
<path d="M120 260 C120 260 150 280 180 260" stroke="black" stroke-width="5" fill="none"/>
<path d="M150 290 C150 290 150 300 150 310" stroke="black" stroke-width="5" fill="none"/>
<path d="M120 320 C120 320 150 340 180 320" stroke="black" stroke-width="5" fill="none"/>
<rect x="100" y="350" width="100" height="50" rx="25" fill="url(#grad1)"/>
<path d="M100 350 C100 350 125 375 150 375 C175 375 200 350 200 350" fill="none" stroke="white" stroke-width="10"/>
<path d="M100 400 C100 400 125 425 150 425 C175 425 200 400 200 400" fill="none" stroke="white" stroke-width="10"/>
<circle cx="150" cy="425" r="25" fill="white"/>
<path d="M150 425 C150 425 175 450 150 450 C125 450 150 425 150 425" fill="none" stroke="white" stroke-width="10"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's submission better represents the idea of a penguin in a space suit on a bright orange surfboard riding a cosmic wave.

    The use of a cosmic background and visible wave adds to the adherence to the theme.

    While Player 2's image is more abstract, it lacks clear elements related to the prompt, such as a surfboard or cosmic wave, making Player 1's image more aligned with the concept and visually appealing.

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
11
Player 2
18
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
5
Player 2
1
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
2

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
1

Complexity Metrics

Path Commands

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

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