Back

SVG Drawing Match #2337

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A bicycle made of fruits and vegetables racing down a cobblestone road."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
  <!-- Background sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87ceeb"/>
      <stop offset="100%" stop-color="#white"/>
    </linearGradient>
    <!-- Gradient for cobblestones -->
    <linearGradient id="cobbleGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#999"/>
      <stop offset="100%" stop-color="#555"/>
    </linearGradient>
    <!-- Gradient for fruits and vegetables -->
    <linearGradient id="fruitGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#ffcc66"/>
    </linearGradient>
    <linearGradient id="vegetableGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#228b22"/>
      <stop offset="100%" stop-color="#6b8e23"/>
    </linearGradient>
  </defs>
  <!-- Sky background -->
  <rect width="300" height="150" fill="url(#skyGradient)" />

  <!-- Road -->
  <rect y="250" width="300" height="50" fill="url(#cobbleGradient)" />

  <!-- Cobblestones pattern -->
  <g fill="#777">
    <circle cx="30" cy="275" r="8"/>
    <circle cx="70" cy="280" r="6"/>
    <circle cx="110" cy="272" r="7"/>
    <circle cx="150" cy="278" r="5"/>
    <circle cx="190" cy="274" r="8"/>
    <circle cx="230" cy="280" r="6"/>
    <circle cx="270" cy="278" r="7"/>
  </g>

  <!-- Bicycle Frame: made of vegetables and fruits -->
  <!-- Main top tube -->
  <line x1="90" y1="220" x2="150" y2="200" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  <!-- Main down tube -->
  <line x1="150" y1="200" x2="100" y2="240" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  <!-- Seat tube -->
  <line x1="150" y1="200" x2="150" y2="230" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  <!-- Head tube -->
  <line x1="90" y1="220" x2="70" y2="200" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  <!-- Chain stay -->
  <line x1="100" y1="240" x2="70" y2="270" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  <!-- Seat stay -->
  <line x1="150" y1="230" x2="140" y2="270" stroke="#654321" stroke-width="4" stroke-linecap="round"/>
  
  <!-- Wheels: fruits and vegetables -->
  <!-- Front wheel -->
  <circle cx="70" cy="270" r="20" fill="#fff" stroke="#555" stroke-width="3"/>
  <circle cx="70" cy="270" r="18" fill="url(#fruitGradient)" stroke="#444" stroke-width="2"/>
  <!-- Rear wheel -->
  <circle cx="100" cy="240" r="20" fill="#fff" stroke="#555" stroke-width="3"/>
  <circle cx="100" cy="240" r="18" fill="url(#vegetableGradient)" stroke="#444" stroke-width="2"/>

  <!-- Pedals (Vegetable slices) -->
  <circle cx="125" cy="210" r="4" fill="#8b4513"/>
  <circle cx="135" cy="220" r="4" fill="#8b4513"/>
  <circle cx="115" cy="220" r="4" fill="#8b4513"/>
  <circle cx="125" cy="230" r="4" fill="#8b4513"/>

  <!-- Bicycle handlebars (Lettuce leaves) -->
  <path d="M70,200 Q60,190 50,200" stroke="#228b22" stroke-width="4" fill="none"/>
  <path d="M70,200 Q80,210 90,200" stroke="#228b22" stroke-width="4" fill="none"/>
  <circle cx="50" cy="200" r="4" fill="#7cfc00"/>
  <circle cx="90" cy="200" r="4" fill="#7cfc00"/>
  
  <!-- Fruits and Vegetables pixels as seats -->
  <circle cx="150" cy="200" r="6" fill="#ff6347" stroke="#cc3333" stroke-width="2"/>
  <circle cx="80" cy="200" r="5" fill="#ffcc66" stroke="#ccaa33" stroke-width="2"/>
  
  <!-- Riding fruits & vegetables -->
  <!-- A cluster of strawberries (red with green leaves) as riders -->
  <g>
    <circle cx="150" cy="200" r="3" fill="#ff6347"/>
    <circle cx="152" cy="198" r="2" fill="#ff6347"/>
    <circle cx="148" cy="198" r="2" fill="#ff6347"/>
    <!-- Green leafy top -->
    <polygon points="150,195 147,190 153,190" fill="#228b22"/>
  </g>
  
  <!-- Additional fruits & veggies on the bike -->
  <circle cx="110" cy="250" r="4" fill="#ffff00"/>
  <circle cx="130" cy="245" r="4" fill="#ffa500"/>
  <circle cx="140" cy="255" r="4" fill="#c71585"/>
  <circle cx="180" cy="245" r="4" fill="#dda0dd"/>
  <circle cx="170" cy="255" r="4" fill="#9acd32"/>

  <!-- Motion lines to indicate speed -->
  <g stroke="#555" stroke-width="1.5" opacity="0.6">
    <line x1="40" y1="270" x2="20" y2="275"/>
    <line x1="90" y1="225" x2="70" y2="230"/>
    <line x1="160" y1="200" x2="185" y2="195"/>
  </g>
</svg>
SVG by o3 high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Gradients -->
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>
    <radialGradient id="orangeGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFF1C1"/>
      <stop offset="45%" stop-color="#FFA500"/>
      <stop offset="80%" stop-color="#FF8C00"/>
      <stop offset="100%" stop-color="#CC6A00"/>
    </radialGradient>
    <linearGradient id="carrotGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFA64D"/>
      <stop offset="100%" stop-color="#FF4500"/>
    </linearGradient>
    <linearGradient id="bananaGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFFFB2"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <linearGradient id="cucumberGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#A8E6A3"/>
      <stop offset="100%" stop-color="#228B22"/>
    </linearGradient>
    <radialGradient id="berryGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFB3E6"/>
      <stop offset="100%" stop-color="#C71585"/>
    </radialGradient>
    <!-- Cobblestone pattern -->
    <pattern id="cobble" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#615E5A"/>
      <path d="M0 10 H20 M10 0 V20" stroke="#555" stroke-width="1"/>
      <circle cx="10" cy="10" r="4" fill="#6D6A66"/>
    </pattern>
  </defs>

  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Cobblestone road -->
  <rect y="220" width="300" height="80" fill="url(#cobble)"/>

  <!-- Speed lines -->
  <g stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" opacity="0.5">
    <line x1="45" y1="200" x2="15" y2="195"/>
    <line x1="55" y1="210" x2="20" y2="208"/>
    <line x1="70" y1="220" x2="30" y2="225"/>
    <line x1="240" y1="195" x2="270" y2="190"/>
    <line x1="235" y1="205" x2="265" y2="200"/>
  </g>

  <!-- Fruit & veggie bicycle -->
  <g transform="translate(0,-10) rotate(-4 150 150)">
    <!-- Wheels -->
    <g transform="translate(90,220)">
      <circle r="40" fill="url(#orangeGrad)" stroke="#D2691E" stroke-width="4"/>
      <g stroke="#FFEFD5" stroke-width="3">
        <line x1="0" y1="0" x2="35" y2="0"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(30)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(60)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(90)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(120)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(150)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(180)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(210)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(240)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(270)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(300)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(330)"/>
      </g>
    </g>
    <g transform="translate(210,220)">
      <circle r="40" fill="url(#orangeGrad)" stroke="#D2691E" stroke-width="4"/>
      <g stroke="#FFEFD5" stroke-width="3">
        <line x1="0" y1="0" x2="35" y2="0"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(30)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(60)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(90)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(120)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(150)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(180)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(210)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(240)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(270)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(300)"/>
        <line x1="0" y1="0" x2="35" y2="0" transform="rotate(330)"/>
      </g>
    </g>

    <!-- Carrot frame -->
    <path d="M90 220 L150 160 L210 220" fill="none" stroke="url(#carrotGrad)" stroke-width="14" stroke-linecap="round"/>

    <!-- Banana top tube -->
    <path d="M95 200 Q150 140 205 200" fill="none" stroke="url(#bananaGrad)" stroke-width="10" stroke-linecap="round"/>

    <!-- Beet seat -->
    <ellipse cx="150" cy="148" rx="13" ry="7" fill="url(#berryGrad)" stroke="#8B0A50" stroke-width="2"/>

    <!-- Cucumber handlebars -->
    <path d="M205 190 L235 175" fill="none" stroke="url(#cucumberGrad)" stroke-width="10" stroke-linecap="round"/>
    <path d="M235 175 L245 185" fill="none" stroke="url(#cucumberGrad)" stroke-width="10" stroke-linecap="round"/>

    <!-- Carrot leaves -->
    <g transform="translate(150,160) rotate(-30)">
      <path d="M0 0 C-5 -15 5 -15 0 0" fill="#32CD32"/>
      <path d="M5 0 C0 -18 10 -18 5 0" fill="#228B22"/>
      <path d="M-5 0 C-10 -18 0 -18 -5 0" fill="#3CB371"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission is more visually coherent and clearly represents a bicycle made of fruits and vegetables, adhering well to the prompt.

    The composition is clean, with identifiable components such as orange slices for wheels and colorful produce for the frame.

    Player 1's submission, while creative, is less polished and lacks the clarity and visual appeal of 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
41
Player 2
44
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
27
Player 2
3
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
9
Player 2
29
Polygons

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

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

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
21
Player 2
23

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
26

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
19
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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