Back

SVG Drawing Match #2232

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Pineapple riding a unicycle on a tightrope over a canyon."

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="pineappleGradient" cx="50%" cy="50%" r="75%" fx="40%" fy="60%">
      <stop offset="0%" stop-color="#FFEF00" />
      <stop offset="50%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
    </radialGradient>
    <pattern id="crosshatch" width="5" height="5" patternUnits="userSpaceOnUse">
      <path d="M0 0L5 5ZM5 0L0 5" stroke="#4A2700" stroke-width="0.5" />
    </pattern>
  </defs>

  <path d="M20 250 L280 250" stroke="#8B4513" stroke-width="5" stroke-linecap="round" />

  <circle cx="150" cy="200" r="20" fill="#808080" stroke="#404040" stroke-width="2" />
  <path d="M140 200 L140 170" stroke="#808080" stroke-width="4" />
  <path d="M160 200 L160 170" stroke="#808080" stroke-width="4" />
  <g transform="translate(150, 150) rotate(-10)">
    <ellipse cx="0" cy="0" rx="25" ry="15" fill="url(#pineappleGradient)" />
    <path d="M-20 0 L20 0 Z M-15 5 L15 5 Z M-10 10 L10 10 Z M-5 15 L5 15 Z" stroke="#4A2700" stroke-width="1" />
    <path d="M-18 -5 L-10 -15 L0 -20 L10 -15 L18 -5" fill="green" stroke="#228B22" stroke-width="2" />
    <g transform="translate(0, -25)">
      <ellipse cx="-5" cy="0" rx="3" ry="5" fill="green" transform="rotate(15)" />
      <ellipse cx="0" cy="0" rx="3" ry="5" fill="green" transform="rotate(5)" />
      <ellipse cx="5" cy="0" rx="3" ry="5" fill="green" transform="rotate(-5)" />
    </g>
  </g>

  <path d="M0 50 L300 0 L300 280 L0 270 Z" fill="#CD853F" />
  <path d="M5 60 L70 10 L20 100 Z M295 10 L230 50 L280 90 Z" fill="#A0522D" />
</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="sky" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#7dd3fc"/>
      <stop offset="100%" stop-color="#e0f7ff"/>
    </linearGradient>

    <linearGradient id="canyon" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#d6864b"/>
      <stop offset="100%" stop-color="#7b3f16"/>
    </linearGradient>

    <linearGradient id="pine" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffd84f"/>
      <stop offset="100%" stop-color="#ff9c2a"/>
    </linearGradient>

    <linearGradient id="leafGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#56c36c"/>
      <stop offset="100%" stop-color="#0d773d"/>
    </linearGradient>

    <radialGradient id="wheelGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#bbbbbb"/>
      <stop offset="80%" stop-color="#4d4d4d"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>

    <!-- Pineapple cross-hatch pattern -->
    <pattern id="pineCross" patternUnits="userSpaceOnUse" width="12" height="12" patternTransform="rotate(45)">
      <line x1="0" y1="0" x2="0" y2="12" stroke="#d17b0f" stroke-width="2"/>
    </pattern>

    <!-- Clip for pattern inside pineapple -->
    <clipPath id="pineClip">
      <ellipse cx="150" cy="110" rx="25" ry="35"/>
    </clipPath>
  </defs>

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

  <!-- Canyon walls -->
  <path d="M0 150 L0 300 L110 300 Q60 240 20 150Z" fill="url(#canyon)"/>
  <path d="M300 150 L280 150 Q240 240 190 300 L300 300Z" fill="url(#canyon)"/>

  <!-- Rope -->
  <path id="rope" d="M20 150 Q150 170 280 150" stroke="#8b5a2b" stroke-width="3" fill="none" stroke-linecap="round"/>

  <!-- Unicycle -->
  <g id="unicycle">
    <!-- Wheel -->
    <circle cx="150" cy="150" r="22" fill="url(#wheelGrad)" stroke="black" stroke-width="2"/>
    <!-- Spokes -->
    <g stroke="#ffffff" stroke-width="2">
      <line x1="150" y1="150" x2="150" y2="128"/>
      <line x1="150" y1="150" x2="170" y2="160"/>
      <line x1="150" y1="150" x2="130" y2="160"/>
      <line x1="150" y1="150" x2="150" y2="172"/>
    </g>
    <!-- Fork -->
    <line x1="150" y1="128" x2="150" y2="100" stroke="#333333" stroke-width="4" stroke-linecap="round"/>
    <!-- Seat -->
    <rect x="138" y="90" width="24" height="8" rx="4" ry="4" fill="#333333"/>
  </g>

  <!-- Pineapple -->
  <g id="pineapple">
    <ellipse cx="150" cy="110" rx="25" ry="35" fill="url(#pine)" stroke="#d17b0f" stroke-width="2"/>
    <!-- Cross-hatch clipped to pineapple -->
    <rect x="120" y="70" width="60" height="80" fill="url(#pineCross)" clip-path="url(#pineClip)"/>
    <!-- Leaves -->
    <g fill="url(#leafGrad)" stroke="#0a5c2a" stroke-width="1">
      <path d="M150 70 C145 60 140 45 150 40 C160 45 155 60 150 70Z"/>
      <path d="M140 75 C135 65 125 55 135 50 C145 55 145 65 140 75Z"/>
      <path d="M160 75 C165 65 175 55 165 50 C155 55 155 65 160 75Z"/>
    </g>
    <!-- Arms for balance -->
    <g stroke="#d17b0f" stroke-width="4" stroke-linecap="round">
      <line x1="130" y1="100" x2="110" y2="90"/>
      <line x1="170" y1="100" x2="190" y2="90"/>
    </g>
  </g>

  <!-- River at canyon bottom -->
  <path d="M60 280 C120 260 180 260 240 280" fill="none" stroke="#1e90ff" stroke-width="5" opacity="0.4"/>
</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 better adheres to the prompt by clearly depicting a pineapple riding a unicycle on a tightrope over a canyon.

    The composition is more detailed and visually appealing, with clear elements representing the tightrope, canyon, and unicycle.

    Player 1's submission lacks any recognizable features related to the prompt, so it falls short in creativity and adherence to the theme.

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

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

Player 1
Player 2
3
Circles

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

Player 1
1
Player 2
1
Ellipses

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

Player 1
4
Player 2
2
Lines

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

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

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

Player 1
2
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
5
Patterns

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
17

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

Complexity Metrics

Path Commands

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

Player 1
41
Player 2
26
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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