Back

SVG Drawing Match #2170

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two-legged cat juggling four colorful fish under a rainbow arch"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #FF0000" />
      <stop offset="20%" style="stop-color: #FF7F00" />
      <stop offset="40%" style="stop-color: #FFFF00" />
      <stop offset="60%" style="stop-color: #00FF00" />
      <stop offset="80%" style="stop-color: #0000FF" />
      <stop offset="100%" style="stop-color: #8B00FF" />
    </linearGradient>
    <pattern id="fishScale" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="4" fill="rgba(255,255,255,0.2)" />
    </pattern>
  </defs>

  <!-- Rainbow arc -->
  <path d="M20 200 Q150 -50 280 200" fill="none" stroke="url(#rainbowGradient)" stroke-width="15"/>
  
  <!-- Two-legged cat -->
  <g transform="translate(120, 180)">
    <ellipse cx="30" cy="50" rx="15" ry="30" fill="#FFD700"/>
    <ellipse cx="70" cy="50" rx="15" ry="30" fill="#FFD700"/>
    <circle cx="50" cy="30" r="20" fill="#FFD700"/>
    <circle cx="43" cy="28" r="2" fill="#000"/>
    <circle cx="57" cy="28" r="2" fill="#000"/>
    <path d="M45 38 Q50 43 55 38" stroke="#000" stroke-width="1" fill="none"/>
    <line x1="50" y1="0" x2="50" y2="30" stroke="#FFD700" stroke-width="15"/>
    <ellipse cx="50" cy="0" rx="10" ry="15" fill="#FFD700"/>
  </g>

  <!-- Juggling fish -->
  <g transform="translate(50, 70)">
    <circle cx="30" cy="0" r="12" fill="red" />
    <ellipse cx="22" cy="0" rx="8" ry="5" fill="red" fill-opacity="0.8"/>
    <polygon points="1,0 -8,-6 -8,6" fill="darkred"/>
    <circle cx="50" cy="50" r="12" fill="green" />
    <ellipse cx="42" cy="50" rx="8" ry="5" fill="green" fill-opacity="0.8"/>
    <polygon points="21,50 12,44 12,56" fill="darkgreen"/>
    <circle cx="70" cy="100" r="12" fill="blue" />
    <ellipse cx="62" cy="100" rx="8" ry="5" fill="blue" fill-opacity="0.8"/>
    <polygon points="41,100 32,94 32,106" fill="darkblue"/>
    <circle cx="100" cy="25" r="12" fill="purple" />
    <ellipse cx="92" cy="25" rx="8" ry="5" fill="purple" fill-opacity="0.8"/>
    <polygon points="71,25 62,19 62,31" fill="indigo"/>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow Arch -->
  <path d="M 50 150 C 75 100 125 100 150 150 S 225 200 250 150" 
        stroke="none" fill="none">
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="20%" stop-color="#ffa500" />
      <stop offset="40%" stop-color="#ffff00" />
      <stop offset="60%" stop-color="#008000" />
      <stop offset="80%" stop-color="#0000ff" />
      <stop offset="100%" stop-color="#800080" />
    </linearGradient>
    <rect x="50" y="100" width="200" height="50" fill="url(#rainbow)" />
  </path>

  <!-- Two-legged Cat -->
  <g transform="translate(125 175)">
    <circle cx="0" cy="0" r="25" fill="#808080" />
    <path d="M -20 -20 L -20 20 L 20 20 L 20 -20 Z" 
          stroke="none" fill="#808080" />
    <path d="M -15 -15 L -15 15" stroke="#000000" stroke-width="3" />
    <path d="M 15 -15 L 15 15" stroke="#000000" stroke-width="3" />
    <circle cx="-15" cy="25" r="10" fill="#000000" />
    <circle cx="15" cy="25" r="10" fill="#000000" />
  </g>

  <!-- Four Colorful Fish -->
  <g transform="translate(75 225)">
    <g transform="rotate(45)">
      <path d="M 0 0 L 20 10 L 20 -10 Z" 
            stroke="none" fill="#ff0000" />
      <circle cx="15" cy="0" r="5" fill="#ffffff" />
    </g>
  </g>
  <g transform="translate(125 200)">
    <g transform="rotate(135)">
      <path d="M 0 0 L 20 10 L 20 -10 Z" 
            stroke="none" fill="#00ff00" />
      <circle cx="15" cy="0" r="5" fill="#ffffff" />
    </g>
  </g>
  <g transform="translate(175 225)">
    <g transform="rotate(-45)">
      <path d="M 0 0 L 20 10 L 20 -10 Z" 
            stroke="none" fill="#0000ff" />
      <circle cx="15" cy="0" r="5" fill="#ffffff" />
    </g>
  </g>
  <g transform="translate(125 250)">
    <g transform="rotate(-135)">
      <path d="M 0 0 L 20 10 L 20 -10 Z" 
            stroke="none" fill="#ffff00" />
      <circle cx="15" cy="0" r="5" fill="#ffffff" />
    </g>
  </g>

  <!-- Juggling Balls -->
  <circle cx="125" cy="175" r="5" fill="#000000" />
  <circle cx="75" cy="225" r="5" fill="#000000" />
  <circle cx="175" cy="225" r="5" fill="#000000" />
  <circle cx="125" cy="250" r="5" fill="#000000" />
</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 more closely adheres to the prompt with a visible rainbow and four colorful fish clearly being juggled by a two-legged figure resembling a cat.

    The use of bright colors and the inclusion of a full rainbow arch enhance the visual appeal and creativity of the design.

    Player 2's submission lacks a visible rainbow and is less clear in depicting the juggling action.

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
22
Player 2
20
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
8
Player 2
11
Ellipses

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

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

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

Player 1
2
Player 2
8
Groups

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

Player 1
2
Player 2
9

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
4
Player 2
28
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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