Back

SVG Drawing Match #2159

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A moose riding a unicycle on a rainbow bridge"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient for Rainbow Bridge -->
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
      <stop offset="16.66%" style="stop-color:#ff7f00;stop-opacity:1" />
      <stop offset="33.33%" style="stop-color:#ffff00;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#00ff00;stop-opacity:1" />
      <stop offset="66.66%" style="stop-color:#0000ff;stop-opacity:1" />
      <stop offset="83.33%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9400d3;stop-opacity:1" />
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="lightblue" />
  
  <!-- Rainbow Bridge -->
  <path d="M20,240 Q150,180 280,240" fill="none" stroke="url(#rainbowGradient)" stroke-width="14" />
  
  <!-- Unicycle -->
  <circle cx="150" cy="230" r="20" fill="gray" />
  <line x1="150" y1="210" x2="150" y2="175" stroke="darkgray" stroke-width="4" />
  <rect x="145" y="175" width="10" height="5" fill="darkgray" />
  
  <!-- Moose Body -->
  <ellipse cx="150" cy="150" rx="30" ry="25" fill="#8b4513" />
  
  <!-- Moose Legs -->
  <rect x="135" y="155" width="5" height="50" fill="#8b4513" />
  <rect x="160" y="155" width="5" height="50" fill="#8b4513" />
  
  <!-- Moose Head -->
  <ellipse cx="150" cy="120" rx="20" ry="15" fill="#8b4513" />
  
  <!-- Moose Antlers -->
  <path d="M130,110 Q120,100 110,110 Q120,90 130,100" fill="none" stroke="#8b4513" stroke-width="4" />
  <path d="M170,110 Q180,100 190,110 Q180,90 170,100" fill="none" stroke="#8b4513" stroke-width="4" />
  
  <!-- Moose Eyes -->
  <circle cx="144" cy="118" r="2" fill="black" />
  <circle cx="156" cy="118" r="2" fill="black" />
  
  <!-- Smile -->
  <path d="M146,122 Q150,126 154,122" fill="none" stroke="black" stroke-width="1" />
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="red"/>
      <stop offset="17%" stop-color="orange"/>
      <stop offset="34%" stop-color="yellow"/>
      <stop offset="51%" stop-color="green"/>
      <stop offset="68%" stop-color="blue"/>
      <stop offset="85%" stop-color="indigo"/>
      <stop offset="100%" stop-color="violet"/>
    </linearGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="lightblue"/>
      <stop offset="100%" stop-color="white"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  <path d="M50 150 Q150 50 250 150" stroke="url(#rainbow)" stroke-width="10" fill="none"/>
  <g transform="translate(150 200)">
    <circle cx="0" cy="0" r="20" fill="brown"/>
    <circle cx="0" cy="-30" r="15" fill="white"/>
    <circle cx="5" cy="-35" r="5" fill="black"/>
    <circle cx="-5" cy="-35" r="5" fill="black"/>
    <path d="M-15 -45 Q0 -20 15 -45" stroke="black" stroke-width="2" fill="none"/>
    <path d="M-15 -60 Q0 -30 15 -60" stroke="black" stroke-width="2" fill="none"/>
  </g>
  <g transform="translate(100 190)">
    <circle cx="0" cy="0" r="10" fill="black"/>
    <circle cx="0" cy="0" r="5" fill="white"/>
  </g>
  <g transform="translate(200 190)">
    <circle cx="0" cy="0" r="10" fill="black"/>
    <circle cx="0" cy="0" r="5" fill="white"/>
  </g>
  <path d="M150 150 Q120 180 150 210" stroke="brown" stroke-width="5" fill="none"/>
  <path d="M150 150 Q180 180 150 210" stroke="brown" stroke-width="5" fill="none"/>
  <path d="M150 210 L150 240" stroke="brown" stroke-width="5" fill="none"/>
  <path d="M150 240 Q100 280 150 320" stroke="brown" stroke-width="5" fill="none"/>
  <path d="M150 240 Q200 280 150 320" stroke="brown" stroke-width="5" fill="none"/>
  <path d="M150 320 L150 350" stroke="brown" stroke-width="5" fill="none"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image captures the prompt more clearly, depicting a moose with a simplistic yet recognizable form riding a unicycle on a rainbow bridge.

    The use of colors in the rainbow is vibrant and appealing.

    Player 2’s image, while creative, is less clear in illustrating the moose riding a unicycle, making it harder to interpret the scene effectively.

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
18
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
3
Player 2
8
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
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
9
Groups

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

Player 1
Player 2
3

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
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
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
11

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
3

Complexity Metrics

Path Commands

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

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