Back

SVG Drawing Match #754

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A fish riding a bicycle through a desert of giant ice cream cones"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">

    <!-- Background Gradient -->
    <defs>
        <linearGradient id="desertGrad" x1="0" y1="0" x2="0" y2="1">
            <stop offset="0%" stop-color="#FFD27F"/>
            <stop offset="100%" stop-color="#FFE4B5"/>
        </linearGradient>
        <radialGradient id="iceCreamGrad" cx="0.5" cy="0.5" r="0.8">
            <stop offset="0%" stop-color="#FFB3BA"/>
            <stop offset="50%" stop-color="#FFA0A0"/>
            <stop offset="100%" stop-color="#FF6F69"/>
        </radialGradient>
    </defs>
    <rect width="300" height="300" fill="url(#desertGrad)"/>

    <!-- Ice Cream Cones -->
    <g transform="translate(50,50)">
        <path d="M0,0 Q15,-15 30,0 L15,80 Z" fill="#D2691E" stroke="#8B4513" stroke-width="2"/>
        <circle cx="15" cy="-7" r="20" fill="url(#iceCreamGrad)" stroke="#FF6F69" stroke-width="2"/>
    </g>
    <g transform="translate(180,30)">
        <path d="M0,0 Q20,-20 40,0 L20,100 Z" fill="#D2691E" stroke="#8B4513" stroke-width="2"/>
        <circle cx="20" cy="-10" r="25" fill="url(#iceCreamGrad)" stroke="#FF6F69" stroke-width="2"/>
    </g>
    <g transform="translate(80,120)">
        <path d="M0,0 Q25,-25 50,0 L25,90 Z" fill="#D2691E" stroke="#8B4513" stroke-width="2"/>
        <circle cx="25" cy="-12" r="22" fill="url(#iceCreamGrad)" stroke="#FF6F69" stroke-width="2"/>
    </g>

    <!-- Fish Riding Bicycle -->
    <g transform="translate(130,180)">
        <!-- Bicycle -->
        <circle cx="0" cy="0" r="15" fill="none" stroke="#333" stroke-width="3"/>
        <circle cx="55" cy="0" r="15" fill="none" stroke="#333" stroke-width="3"/>
        <line x1="0" y1="0" x2="28" y2="0" stroke="#333" stroke-width="3"/>
        <line x1="28" y1="0" x2="55" y2="0" stroke="#333" stroke-width="3"/>
        <line x1="28" y1="0" x2="28" y2="-20" stroke="#333" stroke-width="3"/>
        <line x1="28" y1="-20" x2="48" y2="-15" stroke="#333" stroke-width="3"/>
        <line x1="28" y1="-20" x2="18" y2="-30" stroke="#333" stroke-width="3"/>

        <!-- Fish -->
        <ellipse cx="28" cy="-30" rx="20" ry="10" fill="#FFA500" stroke="#FF4500" stroke-width="2"/>
        <path d="M8,-30 Q0,-40 8,-50" fill="none" stroke="#FF4500" stroke-width="2"/>
        <path d="M48,-30 Q56,-40 48,-50" fill="none" stroke="#FF4500" stroke-width="2"/>
        <circle cx="20" cy="-30" r="2" fill="#000"/>
    </g>

</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert background with gradient sand dunes -->
  <defs>
    <linearGradient id="sandGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffd700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff8c00;stop-opacity:1" />
    </linearGradient>
    <path id="conePath" d="M50 0 L25 50 L75 50 Z"/>
    <pattern id="wheelPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="none" stroke="black" stroke-width="1"/>
      <line x1="10" y1="0" x2="10" y2="20" stroke="black" stroke-width="0.5"/>
      <line x1="0" y1="10" x2="20" y2="10" stroke="black" stroke-width="0.5"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="skyblue"/>
  <rect width="300" height="300" fill="url(#sandGrad)" opacity="0.7"/>

  <!-- Ice cream cones -->
  <g id="coneGroup" opacity="0.8">
    <use href="#conePath" x="50" y="150" fill="#f5deb3" transform="scale(3)"/>
    <use href="#conePath" x="120" y="180" fill="#f5deb3" transform="scale(2.5) rotate(30)"/>
    <use href="#conePath" x="200" y="160" fill="#f5deb3" transform="scale(3)rotate(-20)"/>
  </g>

  <!-- Bicycle -->
  <g id="bicycle" transform="translate(150 200)">
    <!-- Wheels -->
    <circle cx="0" cy="0" r="15" fill="none" stroke="black" stroke-width="2"/>
    <circle cx="60" cy="0" r="15" fill="none" stroke="black" stroke-width="2"/>
    <circle cx="30" cy="40" r="10" fill="none" stroke="black" stroke-width="2"/>
    
    <!-- Frame -->
    <path d="M0 0 L60 0 L60 -20 L30 -40 L0 -40 Z" fill="none" stroke="black" stroke-width="3"/>
    <path d="M30 -40 L30 -60" fill="none" stroke="black" stroke-width="3"/>
    
    <!-- Pedals -->
    <ellipse cx="30" cy="-50" rx="10" ry="5" fill="gray"/>
  </g>

  <!-- Fish -->
  <path id="fish" d="M140 180 C160 170 190 160 190 145 C190 130 180 120 170 120 C160 120 140 130 140 140 C140 160 130 170 120 180 C110 170 100 160 90 155 L140 180 Z"
       fill="url(#gradient1)" stroke="black" stroke-width="2"/>
  <defs>
    <linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:blue;stop-opacity:1" />
      <stop offset="100%" style="stop-color:teal;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Fish details -->
  <circle cx="135" cy="150" r="3" fill="white"/>
  <circle cx="135" cy="150" r="1.5" fill="black"/>
  <path d="M140 145 L160 140" fill="none" stroke="black" stroke-width="1"/>
  <path d="M140 135 L155 130" fill="none" stroke="black" stroke-width="1"/>

  <!-- Stars in the sky -->
  <g id="stars" opacity="0.5">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="80" cy="70" r="1" fill="white"/>
    <circle cx="110" cy="40" r="1" fill="white"/>
    <circle cx="140" cy="60" r="1" fill="white"/>
    <circle cx="170" cy="30" r="1" fill="white"/>
    <circle cx="200" cy="50" r="1" fill="white"/>
  </g>
</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 submission adheres more closely to the prompt by clearly depicting a fish riding a bicycle through a desert with giant ice cream cones, which are prominently featured and creatively integrated.

    The composition effectively uses color contrast and positioning to create an engaging scene.

    Player 2's image, while visually appealing, lacks the presence of ice cream cones, making it less representative of the given idea.

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
18
Player 2
23
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
6
Player 2
12
Ellipses

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

Player 1
1
Player 2
1
Lines

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

Player 1
5
Player 2
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
5
Player 2
6
Groups

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
16
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
5

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

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
24
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
2
Player 2
4
Use Elements

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

Player 1
Player 2
3

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