Back

SVG Drawing Match #1375

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lemon riding a skateboard under a rainbow"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,0,0)"/>
      <stop offset="16.6%" style="stop-color:rgb(255,127,0)"/>
      <stop offset="33.3%" style="stop-color:rgb(255,255,0)"/>
      <stop offset="50%" style="stop-color:rgb(0,255,0)"/>
      <stop offset="66.6%" style="stop-color:rgb(0,0,255)"/>
      <stop offset="83.3%" style="stop-color:rgb(75,0,130)"/>
      <stop offset="100%" style="stop-color:rgb(148,0,211)"/>
    </linearGradient>
    <radialGradient id="lemonGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#fff060"/>
      <stop offset="100%" style="stop-color:#ffd000"/>
    </radialGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
  
  <!-- Rainbow -->
  <path d="M-50 180 Q150 50 350 180" stroke="url(#rainbow)" stroke-width="20" fill="none"/>
  
  <!-- Ground -->
  <rect x="0" y="220" width="300" height="80" fill="#90EE90"/>
  
  <!-- Skateboard -->
  <rect x="120" y="200" width="80" height="15" rx="5" fill="#4A4A4A"/>
  <circle cx="135" cy="215" r="8" fill="#2F2F2F"/>
  <circle cx="185" cy="215" r="8" fill="#2F2F2F"/>
  
  <!-- Lemon Body -->
  <ellipse cx="160" cy="180" rx="30" ry="25" fill="url(#lemonGrad)"/>
  <path d="M160 155 Q180 180 160 205 Q140 180 160 155" fill="#FFE5B4"/>
  
  <!-- Lemon Details -->
  <path d="M145 170 Q160 185 175 170" fill="none" stroke="#FFB90F" stroke-width="2"/>
  <path d="M145 190 Q160 175 175 190" fill="none" stroke="#FFB90F" stroke-width="2"/>
  
  <!-- Cool Shades -->
  <path d="M145 170 H175" stroke="black" stroke-width="3"/>
  <rect x="145" y="170" width="12" height="8" rx="2" fill="#000"/>
  <rect x="163" y="170" width="12" height="8" rx="2" fill="#000"/>
  
  <!-- Motion Lines -->
  <line x1="100" y1="190" x2="80" y2="190" stroke="#666" stroke-width="2"/>
  <line x1="95" y1="185" x2="75" y2="185" stroke="#666" stroke-width="2"/>
  <line x1="95" y1="195" x2="75" y2="195" stroke="#666" stroke-width="2"/>
  
  <!-- Little Clouds -->
  <circle cx="50" cy="80" r="15" fill="white"/>
  <circle cx="65" cy="80" r="12" fill="white"/>
  <circle cx="40" cy="80" r="10" fill="white"/>
  
  <circle cx="250" cy="60" r="15" fill="white"/>
  <circle cx="265" cy="60" r="12" fill="white"/>
  <circle cx="240" cy="60" r="10" fill="white"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0" x2="1" y1="0" y2="0">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.67%" stop-color="#FF7F00"/>
      <stop offset="33.33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.67%" stop-color="#0000FF"/>
      <stop offset="83.33%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#9400D3"/>
    </linearGradient>
    <radialGradient id="lemonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFEB3B"/>
      <stop offset="100%" stop-color="#F9A825"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="#87CEEB"/>
  <path d="M50 200 Q150 50 250 200" fill="none" stroke="url(#rainbow)" stroke-width="10"/>
  <circle cx="150" cy="210" r="30" fill="url(#lemonGradient)" stroke="#F9A825" stroke-width="3"/>
  <ellipse cx="150" cy="190" rx="20" ry="10" fill="#F9A825"/>
  <ellipse cx="140" cy="185" rx="3" ry="6" fill="#000000"/>
  <ellipse cx="160" cy="185" rx="3" ry="6" fill="#000000"/>
  <path d="M120 230 L180 230 L180 240 L120 240 Z" fill="#8B4513"/>
  <circle cx="130" cy="240" r="10" fill="#FFD700"/>
  <circle cx="170" cy="240" r="10" fill="#FFD700"/>
  <line x1="150" y1="210" x2="150" y2="230" stroke="#F9A825" stroke-width="3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image effectively captures the prompt with a whimsical lemon character wearing sunglasses, adding personality and creativity.

    The inclusion of a vibrant rainbow and dynamic motion lines enhances visual appeal and adheres closely to the theme.

    In contrast, Player 2's image is simpler and lacks the same level of detail and engagement.

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
10
Rectangles

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

Player 1
5
Player 2
1
Circles

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

Player 1
8
Player 2
3
Ellipses

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

Player 1
1
Player 2
3
Lines

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

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

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

Player 1
Player 2

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
13

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

Complexity Metrics

Path Commands

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

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