Back

SVG Drawing Match #238

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flamingo wearing roller skates on a rainbow road"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Rainbow Road -->
  <defs>
    <linearGradient id="rainbow-gradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF0000" />
      <stop offset="16.7%" stop-color="#FFA500" />
      <stop offset="33.4%" stop-color="#FFFF00" />
      <stop offset="50.1%" stop-color="#008000" />
      <stop offset="66.8%" stop-color="#0000FF" />
      <stop offset="83.5%" stop-color="#4B0082" />
      <stop offset="100%" stop-color="#EE82EE" />
    </linearGradient>
  </defs>
  <rect x="0" y="100" width="300" height="50" fill="url(#rainbow-gradient)" rx="10" />
  
  <!-- Flamingo Body -->
  <g transform="translate(120, 70)">
    <path d="M 0, 0
            C 20, 0 20, -20 0, -20
            C -20, -20 -20, 0 0, 0
            Z" fill="#FFC0CB" />
    <path d="M 0, 0
            C 20, 0 20, -40 0, -40
            C -20, -40 -20, 0 0, 0
            Z" fill="#FFC0CB" transform="translate(0, 60)" />
    <ellipse cx="0" cy="30" rx="15" ry="15" fill="#FFFFFF" />
    <ellipse cx="0" cy="30" rx="10" ry="10" fill="#000000" />
  </g>
  
  <!-- Roller Skates -->
  <g transform="translate(120, 200)">
    <rect x="-20" y="-30" width="40" height="50" fill="#3680FF" rx="5" />
    <circle cx="0" cy="-40" r="10" fill="#3680FF" />
    <circle cx="0" cy="20" r="10" fill="#3680FF" />
    <path d="M -10, 0
            C 0, 10 10, 0 -10, 0
            Z" fill="#FFFFFF" />
  </g>
  
  <!-- Legs -->
  <g transform="translate(120, 70)">
    <path d="M 0, 40
            C 10, 60 0, 80 -10, 60
            Z" fill="#FFC0CB" />
    <path d="M 0, 40
            C -10, 60 0, 80 10, 60
            Z" fill="#FFC0CB" />
  </g>
  
  <!-- Wings -->
  <g transform="translate(120, 70)">
    <path d="M 30, -30
            C 0, -10 0, 10 30, 30
            Z" fill="#FFC0CB" />
    <path d="M -30, -30
            C 0, -10 0, 10 -30, 30
            Z" fill="#FFC0CB" />
  </g>
  
  <!-- Beak -->
  <g transform="translate(120, 70)">
    <path d="M 0, 20
            C 10, 10 0, 0 -10, 10
            Z" fill="#FF69B4" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFB6C1;stop-opacity:1" />
    </linearGradient>
    
    <radialGradient id="roadGradient" cx="50%" cy="70%" r="60%">
      <stop offset="0%" style="stop-color:#FF69B4;stop-opacity:1" />
      <stop offset="33%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="66%" style="stop-color:#00FF00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0000FF;stop-opacity:1" />
    </radialGradient>
    
    <linearGradient id="flamingoGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFA07A;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Sky -->
  <rect width="300" height="150" fill="url(#skyGradient)" />

  <!-- Road -->
  <rect width="300" height="150" y="150" fill="url(#roadGradient)" />

  <!-- Flamingo Body -->
  <path d="M150 170 Q160 180 170 200 Q180 220 150 230 Q120 220 110 200 Q100 180 150 170" fill="url(#flamingoGradient)" stroke="#FF6B6B" stroke-width="2" />

  <!-- Flamingo Neck -->
  <path d="M150 170 Q160 160 170 140 Q180 120 190 110" fill="url(#flamingoGradient)" stroke="#FF6B6B" stroke-width="2" />

  <!-- Flamingo Head -->
  <path d="M190 110 Q195 105 200 100 Q205 95 195 90" fill="url(#flamingoGradient)" stroke="#FF6B6B" stroke-width="2" />

  <!-- Skate Wheels -->
  <g transform="translate(140,230)">
    <circle r="5" fill="#C0C0C0" />
    <rect x="-10" y="-2" width="20" height="4" rx="2" fill="#FFD700" />
  </g>
  <g transform="translate(160,230)">
    <circle r="5" fill="#C0C0C0" />
    <rect x="-10" y="-2" width="20" height="4" rx="2" fill="#FFD700" />
  </g>

  <!-- Skate Base -->
  <rect x="135" y="225" width="30" height="10" rx="5" fill="#808080" />
  <rect x="135" y="225" width="30" height="10" rx="5" fill="url(#flamingoGradient)" opacity="0.3" />

  <!-- Flamingo Beak -->
  <path d="M195 105 Q197 100 195 95" fill="#FF4500" />

  <!-- Flamingo Eye -->
  <circle cx="195" cy="100" r="2" fill="#000000" />
  
  <!-- Shadow -->
  <rect x="140" y="230" width="20" height="10" rx="3" fill="#696969" opacity="0.5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's image more effectively captures the concept of a flamingo on a rainbow road with clear representation of a flamingo and a more vibrant depiction of a rainbow.

    The composition is visually appealing and technically well-executed, enhancing the whimsical nature of the prompt.

    Player 1's image, while colorful, lacks clarity in depicting the flamingo and roller skates, making it less adherent to 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
14
Player 2
14
Rectangles

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

Player 1
2
Player 2
7
Circles

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

Player 1
2
Player 2
3
Ellipses

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

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

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

Player 1
8
Player 2
4
Groups

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

Player 1
5
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
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
6
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
26
Player 2
13
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
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.

Similar Challenges