Back

SVG Drawing Match #2615

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A fish riding a bicycle across a rainbow bridge."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="#e0f7fa"/>
  <!-- Rainbow Bridge -->
  <defs>
    <linearGradient id="rainbowGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16%" stop-color="#ff7f00"/>
      <stop offset="33%" stop-color="#ffff00"/>
      <stop offset="50%" stop-color="#00ff00"/>
      <stop offset="66%" stop-color="#0000ff"/>
      <stop offset="83%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#8f00ff"/>
    </linearGradient>
    <clipPath id="rainbowClip">
      <path d="M10,150 A140,140 0 0,1 290,150 L290,170 A120,120 0 0,0 10,170 Z" />
    </clipPath>
  </defs>
  <rect x="10" y="150" width="280" height="20" fill="url(#rainbowGradient)" clip-path="url(#rainbowClip)" />
  
  <!-- Bicycle -->
  <!-- Rear Wheel -->
  <circle cx="90" cy="210" r="25" fill="none" stroke="#555" stroke-width="3"/>
  <circle cx="90" cy="210" r="12" fill="#bbb"/>
  <!-- Front Wheel -->
  <circle cx="210" cy="210" r="25" fill="none" stroke="#555" stroke-width="3"/>
  <circle cx="210" cy="210" r="12" fill="#bbb"/>
  <!-- Frame -->
  <line x1="90" y1="210" x2="150" y2="180" stroke="#333" stroke-width="3"/>
  <line x1="150" y1="180" x2="210" y2="210" stroke="#333" stroke-width="3"/>
  <line x1="150" y1="180" x2="150" y2="210" stroke="#333" stroke-width="3"/>
  <line x1="90" y1="210" x2="150" y2="210" stroke="#333" stroke-width="3"/>
  <!-- Handlebar -->
  <line x1="210" y1="210" x2="230" y2="190" stroke="#333" stroke-width="3"/>
  <line x1="230" y1="190" x2="215" y2="180" stroke="#333" stroke-width="3"/>
  
  <!-- Fish Riding the Bicycle -->
  <!-- Fish Body -->
  <g transform="translate(140, 150)">
    <defs>
      <radialGradient id="fishBodyGradient" cx="50%" cy="50%" r="50%">
        <stop offset="0%" stop-color="#ffa500"/>
        <stop offset="100%" stop-color="#ff4500"/>
      </radialGradient>
    </defs>
    <ellipse cx="0" cy="0" rx="20" ry="12" fill="url(#fishBodyGradient)"/>
    <!-- Fish Tail -->
    <polygon points="-20,0 -35,-8 -35,8" fill="#ff7f50"/>
    <!-- Fish Eye -->
    <circle cx="10" cy="-3" r="2" fill="#fff"/>
    <circle cx="11" cy="-3" r="1" fill="#000"/>
    <!-- Fins -->
    <polygon points="0,12 8,18 -2,18" fill="#ff6347"/>
  </g>
  <!-- Positioning fish on the seat (adding extra metaphorical adjustment) -->
  <g transform="translate(150,210)">
    <!-- A slight shadow to connect fish position to bicycle seat -->
    <ellipse cx="0" cy="0" rx="12" ry="4" fill="rgba(0,0,0,0.2)"/>
  </g>
  
  <!-- Bicycle Seat -->
  <rect x="145" y="200" width="10" height="6" fill="#333" transform="rotate(-15,150,203)"/>
  
  <!-- Ground reference (optional artistic touches) -->
  <path d="M0,290 Q150,270 300,290 L300,300 L0,300 Z" fill="#a7d7c5"/>
</svg>
SVG by GPT-4.1 (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradients for rainbow bridge -->
    <linearGradient id="rainbow" x1="0" y1="200" x2="300" y2="100" gradientUnits="userSpaceOnUse">
      <stop stop-color="#FF3E3E" offset="5%"/>
      <stop stop-color="#FFDF4E" offset="18%"/>
      <stop stop-color="#4FFF66" offset="36%"/>
      <stop stop-color="#3EEAFF" offset="56%"/>
      <stop stop-color="#5F4FFF" offset="75%"/>
      <stop stop-color="#FF4FDD" offset="94%"/>
    </linearGradient>
    <!-- Gradient for fish body -->
    <radialGradient id="fishBody" cx="68%" cy="36%" r="80%">
      <stop stop-color="#2BF9D5" offset="0"/>
      <stop stop-color="#2681F9" offset="0.57"/>
      <stop stop-color="#123A81" offset="1"/>
    </radialGradient>
    <!-- Gradient for fish fins -->
    <linearGradient id="finGradient" x1="0" y1="0" x2="1" y2="1">
      <stop stop-color="#FFE86F"/>
      <stop stop-color="#FDB67F"/>
      <stop stop-color="#F9844D"/>
    </linearGradient>
    <!-- Pattern for bike tires -->
    <pattern id="wheelPattern" width="8" height="8" patternUnits="userSpaceOnUse">
      <circle cx="4" cy="4" r="3" stroke="#888" stroke-width="0.6" fill="none"/>
      <circle cx="4" cy="4" r="1" fill="#fff"/>
    </pattern>
    <!-- Shadow for bridge -->
    <radialGradient id="shadowGrad" cx="50%" cy="82%" r="50%">
      <stop offset="0%" stop-color="#222" stop-opacity="0.15"/>
      <stop offset="100%" stop-color="#222" stop-opacity="0"/>
    </radialGradient>
  </defs>

  <!-- Rainbow bridge: segmented, glowing, with shadow -->
  <ellipse cx="150" cy="170" rx="115" ry="38" fill="url(#rainbow)" opacity="0.97" />
  <ellipse cx="150" cy="178" rx="115" ry="44" fill="url(#shadowGrad)" opacity="0.36"/>
  <!-- White highlight path -->
  <path d="M40,165 Q115,120 260,165" stroke="#fff" stroke-opacity="0.44" stroke-width="6" fill="none" filter="url(#glow)"/>

  <!-- Add elliptical bridge segments (arched) for stylization -->
  <g opacity="0.23">
    <ellipse cx="150" cy="170" rx="105" ry="32" fill="#fff"/>
    <ellipse cx="150" cy="170" rx="85" ry="28" fill="#fff"/>
    <ellipse cx="150" cy="170" rx="65" ry="18" fill="#fff"/>
  </g>

  <!-- Bicycle wheels -->
  <g>
    <circle cx="94" cy="170" r="21" fill="url(#wheelPattern)" stroke="#222" stroke-width="2.5"/>
    <circle cx="175" cy="160" r="20" fill="url(#wheelPattern)" stroke="#222" stroke-width="2.5"/>
    <!-- wheel spokes -->
    <g stroke="#aaa" stroke-width="1">
      <line x1="94" y1="170" x2="75.3" y2="170"/>
      <line x1="94" y1="170" x2="112.7" y2="170"/>
      <line x1="94" y1="170" x2="83" y2="153.8"/>
      <line x1="94" y1="170" x2="105" y2="186.2"/>
      <line x1="94" y1="170" x2="83" y2="186.2"/>
      <line x1="94" y1="170" x2="105" y2="153.8"/>
    </g>
    <g stroke="#aaa" stroke-width="1">
      <line x1="175" y1="160" x2="195" y2="160"/>
      <line x1="175" y1="160" x2="155" y2="160"/>
      <line x1="175" y1="160" x2="166" y2="144"/>
      <line x1="175" y1="160" x2="184" y2="176"/>
      <line x1="175" y1="160" x2="166" y2="176"/>
      <line x1="175" y1="160" x2="184" y2="144"/>
    </g>
  </g>

  <!-- Bicycle frame: stylized, a bit whimsical -->
  <g stroke="#FFA200" stroke-width="6" stroke-linecap="round">
    <polyline points="94,170 130,126 175,160" fill="none"/>
    <line x1="130" y1="126" x2="135" y2="176"/>
    <line x1="135" y1="176" x2="94" y2="170"/>
    <line x1="135" y1="176" x2="175" y2="160"/>
  </g>
  <!-- Bicycle seat and handles -->
  <rect x="127" y="115" width="14" height="13" rx="7" fill="#333" />
  <rect x="170" y="155" width="20" height="5" rx="2.5" fill="#6C7ECD" />
  <line x1="175" y1="152" x2="190" y2="135" stroke="#6C7ECD" stroke-width="5" stroke-linecap="round"/>
  <!-- Pedal -->
  <rect x="105" y="158" width="5" height="24" rx="2.5" fill="#BBB"/>
  <circle cx="108" cy="170" r="3" fill="#333"/>

  <!-- Fish: body -->
  <g>
    <!-- Fish's body shape -->
    <ellipse cx="130" cy="108" rx="42" ry="28" fill="url(#fishBody)" filter="url(#fishGlow)"/>
    <!-- Lower belly highlight -->
    <ellipse cx="130" cy="116" rx="30" ry="10" fill="#fff" opacity="0.13"/>
    <!-- Back fin -->
    <polygon points="98,109 66,102 97,121" fill="url(#finGradient)" opacity="0.80"/>
    <!-- Tail fin -->
    <polygon points="68,100 50,100 68,117 83,108" fill="url(#finGradient)" opacity="0.97"/>
    <!-- Dorsal fins -->
    <ellipse cx="140" cy="83" rx="11" ry="5" transform="rotate(-15 140 83)" fill="url(#finGradient)" opacity="0.85"/>
    <ellipse cx="115" cy="90" rx="7" ry="2.7" transform="rotate(-23 115 90)" fill="url(#finGradient)" opacity="0.68"/>
    <!-- Pectoral fin -->
    <ellipse cx="156" cy="125" rx="8" ry="18" transform="rotate(36 156 125)" fill="url(#finGradient)" opacity="0.85"/>
    <!-- Fish face -->
    <ellipse cx="159" cy="110" rx="8" ry="10.5" fill="url(#fishBody)" opacity="0.73"/>
    <!-- Scales: stylized arc patterns -->
    <g opacity="0.15">
      <path d="M108,120 q5,-5 10,0" stroke="#fff" stroke-width="2" fill="none"/>
      <path d="M120,122 q5,-6 11,1" stroke="#fff" stroke-width="2" fill="none"/>
      <path d="M128,128 q6,-5 12,3" stroke="#fff" stroke-width="2" fill="none"/>
      <path d="M137,118 q4,-6 8,1" stroke="#fff" stroke-width="2" fill="none"/>
      <path d="M147,124 q6,-4 13,2" stroke="#fff" stroke-width="2" fill="none"/>
    </g>
    <!-- Fish eye -->
    <circle cx="163" cy="105" r="4" fill="#fff" />
    <circle cx="164" cy="106" r="1.4" fill="#274F76" />
    <!-- Glint in eye -->
    <circle cx="162.5" cy="104" r="0.8" fill="#fff"/>
    <!-- Smile -->
    <path d="M165,114 q2,4 9,-2" stroke="#fff" stroke-width="1.2" fill="none"/>
    <path d="M161,113 q3,2 6,-2" stroke="#000" stroke-width="0.7" fill="none"/>
    <!-- Bubbles (imagination, whimsy) -->
    <g opacity="0.29">
      <circle cx="181" cy="90" r="3.7" fill="#fff"/>
      <circle cx="184" cy="80" r="2.2" fill="#99EFFF"/>
      <circle cx="178" cy="75" r="1.1" fill="#bff"/>
    </g>
  </g>

  <!-- Fish's hands (fins as hands) on handlebars -->
  <ellipse cx="190" cy="135" rx="6" ry="2.6" fill="url(#finGradient)" opacity="0.95" transform="rotate(-5 190 135)"/>
  <ellipse cx="130" cy="126" rx="6" ry="2.8" fill="url(#finGradient)" opacity="0.9" transform="rotate(10 130 126)"/>

  <!-- Environment: floating sparkles on the rainbow bridge -->
  <g>
    <circle cx="80" cy="168" r="2.1" fill="#fff" opacity="0.9"/>
    <circle cx="92" cy="183" r="1.5" fill="#FF6CF1" opacity="0.8"/>
    <circle cx="205" cy="176" r="1.3" fill="#68FFD8" opacity="0.79"/>
    <circle cx="142" cy="145" r="1.7" fill="#FFDB6C" opacity="0.7"/>
    <circle cx="170" cy="179" r="2" fill="#6CCDFF" opacity="0.82"/>
    <circle cx="232" cy="167" r="1.5" fill="#fff" opacity="0.65"/>
    <circle cx="115" cy="175" r="1.4" fill="#FFE785" opacity="0.85"/>
    <circle cx="200" cy="164" r="1.6" fill="#FF3E3E" opacity="0.8"/>
    <circle cx="159" cy="172" r="1.3" fill="#fff" opacity="0.65"/>
  </g>

  <filter id="fishGlow">
    <feGaussianBlur stdDeviation="2" result="blur"/>
    <feMerge>
      <feMergeNode in="blur"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>

  <!-- Optional: subtle filter glow for bridge highlight -->
  <filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
    <feGaussianBlur stdDeviation="2.7" result="coloredBlur"/>
    <feMerge>
      <feMergeNode in="coloredBlur"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 (2025-04-14) Player 2

Judge's Analysis

    Player 2's image demonstrates superior creativity and technical quality.

    The fish is more detailed and visually appealing, and the rainbow bridge is prominently included, enhancing adherence to the prompt.

    Player 1's submission, while clear, is simpler and lacks the richness and imaginative depth seen in Player 2's design.

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
21
Player 2
63
Rectangles

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

Player 1
3
Player 2
3
Circles

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

Player 1
6
Player 2
20
Ellipses

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

Player 1
2
Player 2
13
Lines

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

Player 1
6
Player 2
16
Polygons

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

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

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
23
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
29

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
3
Player 2
5

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
16
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
3
Player 2
5
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