Back

SVG Drawing Match #698

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flamingo in astronaut gear, floating gently amidst stars"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="flamingoGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#FFC67D" stop-opacity="1"/>
      <stop offset="1" stop-color="#FF99CC" stop-opacity="1"/>
    </linearGradient>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#FFFFFF" stop-opacity="0.5"/>
      <stop offset="1" stop-color="#AAAAAA" stop-opacity="0.1"/>
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="url(#starGradient)"/>
      <circle cx="10" cy="10" r="5" fill="#FFFFFF"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)"/>
  <g transform="translate(150 150)">
    <g transform="rotate(30)">
      <path d="M-30-10L30-10L30 10L-30 10Z" fill="url(#flamingoGradient)"/>
      <path d="M-20-15L20-15L20-5L-20-5Z" fill="#FFC67D"/>
      <path d="M-10-20L10-20L10-15L-10-15Z" fill="#FF99CC"/>
      <circle cx="0" cy="-15" r="10" fill="#FFC67D"/>
    </g>
    <g transform="translate(0 -30) rotate(-30)">
      <path d="M-20-5L20-5L20 5L-20 5Z" fill="#AAAAAA"/>
      <path d="M-10-10L10-10L10-5L-10-5Z" fill="#CCCCCC"/>
      <circle cx="0" cy="-5" r="10" fill="#AAAAAA"/>
    </g>
    <g transform="translate(0 30) rotate(30)">
      <path d="M-20-5L20-5L20 5L-20 5Z" fill="#AAAAAA"/>
      <path d="M-10-10L10-10L10-5L-10-5Z" fill="#CCCCCC"/>
      <circle cx="0" cy="-5" r="10" fill="#AAAAAA"/>
    </g>
    <circle cx="0" cy="0" r="10" fill="#FFFFFF"/>
    <circle cx="0" cy="0" r="5" fill="#AAAAAA"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="black" />
  
  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="white" />
  <circle cx="100" cy="200" r="2" fill="white" />
  <circle cx="150" cy="100" r="2" fill="white" />
  <circle cx="200" cy="250" r="2" fill="white" />
  <circle cx="250" cy="150" r="2" fill="white" />
  
  <!-- Flamingo Body -->
  <ellipse cx="150" cy="150" rx="40" ry="80" fill="#FF69B4" />
  
  <!-- Flamingo Neck -->
  <path d="M150,120 Q180,100 160,180" fill="#FF69B4" />
  
  <!-- Astronaut Helmet -->
  <circle cx="150" cy="100" r="60" fill="silver" />
  
  <!-- Astronaut Visor -->
  <ellipse cx="150" cy="100" rx="50" ry="40" fill="#292929" />
  
  <!-- Astronaut Suit -->
  <rect x="120" y="160" width="60" height="80" fill="white" />
  
  <!-- Astronaut Jetpack -->
  <circle cx="150" cy="240" r="20" fill="gray" />
  <path d="M150,240 Q160,260 160,280 Q150,270 140,280 Q140,260 150,240" fill="gray" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt by clearly depicting a flamingo in astronaut gear, with the presence of stars enhancing the space theme.

    The technical quality is stronger, with more defined shapes and colors, making it visually appealing.

    Player 1's image lacks clarity and detail, making it difficult to discern the intended theme.

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
15
Player 2
13
Rectangles

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

Player 1
2
Player 2
2
Circles

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

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

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

Player 1
7
Player 2
2
Groups

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

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

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
4
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
35
Player 2
6
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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