Back

SVG Drawing Match #1673

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Watermelon on roller skates racing an orange on a skateboard"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background and road -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0F7FA"/>
    </linearGradient>
    <linearGradient id="roadGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#555"/>
      <stop offset="100%" stop-color="#333"/>
    </linearGradient>
    <pattern id="roadMarkings" patternUnits="userSpaceOnUse" width="40" height="10" patternTransform="rotate(0)">
      <rect width="20" height="5" fill="white"/>
    </pattern>
    <radialGradient id="watermelon" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF5266"/>
      <stop offset="85%" stop-color="#E91E63"/>
      <stop offset="100%" stop-color="#C2185B"/>
    </radialGradient>
    <radialGradient id="orange" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFBB33"/>
      <stop offset="85%" stop-color="#FF9800"/>
      <stop offset="100%" stop-color="#F57C00"/>
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
      <feOffset dx="2" dy="4"/>
      <feComponentTransfer>
        <feFuncA type="linear" slope="0.6"/>
      </feComponentTransfer>
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="speedLines" x="-20%" y="-20%" width="140%" height="140%">
      <feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="1" result="noise"/>
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="5" xChannelSelector="R" yChannelSelector="G"/>
    </filter>
  </defs>

  <!-- Sky and ground -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)"/>
  <rect x="0" y="200" width="300" height="100" fill="#8BC34A"/>
  
  <!-- Road -->
  <rect x="0" y="230" width="300" height="40" fill="url(#roadGradient)"/>
  <rect x="0" y="247" width="300" height="6" fill="url(#roadMarkings)"/>

  <!-- Sun -->
  <circle cx="40" cy="40" r="20" fill="#FFD600" filter="url(#shadow)"/>
  <path d="M40,15 L40,5 M65,40 L75,40 M40,65 L40,75 M15,40 L5,40 M58,22 L65,15 M58,58 L65,65 M22,58 L15,65 M22,22 L15,15" stroke="#FFD600" stroke-width="2"/>

  <!-- Speed lines -->
  <g opacity="0.6" filter="url(#speedLines)">
    <path d="M60,250 H300" stroke="white" stroke-width="0.5" stroke-dasharray="10,8"/>
    <path d="M100,240 H300" stroke="white" stroke-width="0.5" stroke-dasharray="8,6"/>
    <path d="M80,260 H300" stroke="white" stroke-width="0.5" stroke-dasharray="12,10"/>
  </g>
  
  <!-- Watermelon on roller skates -->
  <g transform="translate(70, 230)">
    <!-- Roller skates -->
    <rect x="-12" y="18" width="32" height="6" rx="2" fill="#E91E63" filter="url(#shadow)"/>
    <circle cx="-7" cy="24" r="3" fill="#333"/>
    <circle cx="5" cy="24" r="3" fill="#333"/>
    <rect x="8" y="18" width="32" height="6" rx="2" fill="#E91E63" filter="url(#shadow)"/>
    <circle cx="13" cy="24" r="3" fill="#333"/>
    <circle cx="25" cy="24" r="3" fill="#333"/>
    
    <!-- Watermelon body -->
    <ellipse cx="10" cy="0" rx="30" ry="25" fill="url(#watermelon)" filter="url(#shadow)"/>
    <ellipse cx="10" cy="0" rx="28" ry="23" fill="#9AE59A"/>
    
    <!-- Watermelon stripes -->
    <path d="M-15,0 Q10,-18 35,0" stroke="#066D06" stroke-width="1.5" fill="none"/>
    <path d="M-15,8 Q10,-10 35,8" stroke="#066D06" stroke-width="1.5" fill="none"/>
    <path d="M-15,-8 Q10,-26 35,-8" stroke="#066D06" stroke-width="1.5" fill="none"/>
    
    <!-- Watermelon seeds -->
    <path d="M0,0 L-2,-3 L0,-4 L2,-3 Z" fill="black"/>
    <path d="M8,5 L6,2 L8,1 L10,2 Z" fill="black"/>
    <path d="M20,-5 L18,-8 L20,-9 L22,-8 Z" fill="black"/>
    <path d="M15,10 L13,7 L15,6 L17,7 Z" fill="black"/>
    <path d="M2,-12 L0,-15 L2,-16 L4,-15 Z" fill="black"/>
    
    <!-- Face -->
    <circle cx="20" cy="-5" r="2" fill="black"/>
    <circle cx="28" cy="-5" r="2" fill="black"/>
    <path d="M20,5 Q24,8 28,5" fill="none" stroke="black" stroke-width="1.5"/>
    
    <!-- Motion blur lines -->
    <path d="M-35,0 H-20" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
    <path d="M-30,-10 H-20" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
    <path d="M-30,10 H-20" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
  </g>
  
  <!-- Orange on skateboard -->
  <g transform="translate(180, 230)">
    <!-- Skateboard -->
    <rect x="-15" y="18" width="30" height="3" rx="1" fill="#964B00" filter="url(#shadow)"/>
    <circle cx="-10" cy="21" r="4" fill="#555"/>
    <circle cx="10" cy="21" r="4" fill="#555"/>
    <circle cx="-10" cy="21" r="2" fill="#777"/>
    <circle cx="10" cy="21" r="2" fill="#777"/>
    
    <!-- Orange body -->
    <circle cx="0" cy="0" r="18" fill="url(#orange)" filter="url(#shadow)"/>
    
    <!-- Orange texture -->
    <path d="M0,0 m-18,0 a18,18 0 1,0 36,0 a18,18 0 1,0 -36,0" fill="url(#orange)"/>
    <path d="M0,-18 C5,-16 10,-12 12,-5 C15,0 15,5 12,10 C8,15 0,18 -8,15 C-14,12 -18,5 -18,-3 C-15,-10 -10,-15 -5,-17 C-3,-18 0,-18 0,-18 Z" fill="none" stroke="#E67E00" stroke-width="0.5"/>
    <path d="M0,-12 C3,-10 7,-8 8,-3 C10,0 10,3 8,7 C5,10 0,12 -5,10 C-9,8 -12,3 -12,-2 C-10,-7 -7,-10 -3,-12 C-2,-12 0,-12 0,-12 Z" fill="none" stroke="#E67E00" stroke-width="0.5"/>
    
    <!-- Leaf -->
    <path d="M0,-18 C3,-22 10,-22 5,-27 C2,-30 -3,-28 0,-25 C2,-22 0,-20 0,-18 Z" fill="#4CAF50"/>
    
    <!-- Face -->
    <circle cx="-6" cy="-5" r="2" fill="black"/>
    <circle cx="6" cy="-5" r="2" fill="black"/>
    <path d="M-6,5 Q0,9 6,5" fill="none" stroke="black" stroke-width="1.5"/>
    
    <!-- Motion blur lines -->
    <path d="M-35,0 H-25" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
    <path d="M-30,-10 H-25" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
    <path d="M-30,10 H-25" stroke="rgba(0,0,0,0.2)" stroke-width="1" stroke-dasharray="2,1"/>
  </g>

  <!-- Finish line -->
  <g transform="translate(280, 230)">
    <rect x="0" y="-40" width="5" height="50" fill="#333"/>
    <rect x="0" y="-40" width="5" height="5" fill="white"/>
    <rect x="0" y="-30" width="5" height="5" fill="white"/>
    <rect x="0" y="-20" width="5" height="5" fill="white"/>
    <rect x="0" y="-10" width="5" height="5" fill="white"/>
    <rect x="0" y="0" width="5" height="5" fill="white"/>
    <path d="M5,-35 H15" stroke="black" stroke-width="0.5"/>
    <text x="7" y="-25" font-family="Arial" font-size="8" fill="black" transform="rotate(-90, 7, -25)">FINISH</text>
  </g>

  <!-- Crowd -->
  <g transform="translate(0, 210)">
    <circle cx="130" cy="-20" r="5" fill="#FF5722"/>
    <circle cx="140" cy="-25" r="5" fill="#FFC107"/>
    <circle cx="150" cy="-20" r="5" fill="#8BC34A"/>
    <circle cx="160" cy="-25" r="5" fill="#03A9F4"/>
    <circle cx="170" cy="-20" r="5" fill="#9C27B0"/>
    <path d="M130,-15 Q130,-10 135,-10" stroke="#333" stroke-width="0.5" fill="none"/>
    <path d="M140,-20 Q140,-15 145,-15" stroke="#333" stroke-width="0.5" fill="none"/>
    <path d="M150,-15 Q150,-10 155,-10" stroke="#333" stroke-width="0.5" fill="none"/>
    <path d="M160,-20 Q160,-15 165,-15" stroke="#333" stroke-width="0.5" fill="none"/>
    <path d="M170,-15 Q170,-10 175,-10" stroke="#333" stroke-width="0.5" fill="none"/>
    <!-- Speech bubbles -->
    <path d="M125,-30 Q120,-35 125,-40 H135 Q140,-35 135,-30 Z" fill="white" stroke="#333" stroke-width="0.5"/>
    <text x="130" y="-35" font-family="Arial" font-size="4" text-anchor="middle">Go!</text>
    <path d="M165,-35 Q160,-40 165,-45 H175 Q180,-40 175,-35 Z" fill="white" stroke="#333" stroke-width="0.5"/>
    <text x="170" y="-40" font-family="Arial" font-size="4" text-anchor="middle">Wow!</text>
  </g>

  <!-- Title -->
  <path d="M80,50 Q150,30 220,50" fill="none" stroke="#FF5722" stroke-width="2"/>
  <text x="150" y="45" font-family="Arial" font-weight="bold" font-size="14" text-anchor="middle" fill="#333">FRUIT RACE EXTREME</text>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0FFFF;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF8E8E;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#grad1)"/>
  
  <!-- Watermelon -->
  <g transform="translate(100,150)">
    <circle cx="0" cy="0" r="40" fill="url(#grad2)"/>
    <circle cx="0" cy="0" r="40" stroke="#333" stroke-width="2"/>
    <circle cx="-15" cy="-15" r="5" fill="#fff"/>
    <circle cx="15" cy="-15" r="5" fill="#fff"/>
    <circle cx="0" cy="15" r="5" fill="#fff"/>
    <path d="M-30,-30 L30,-30 L0,30" fill="#FFD700" stroke="#FFD700" stroke-width="2"/>
  </g>
  
  <!-- Roller Skates -->
  <g transform="translate(100,200)">
    <rect x="-20" y="-10" width="40" height="20" rx="10" fill="#8C8C8C"/>
    <rect x="-20" y="-10" width="40" height="20" rx="10" fill="#8C8C8C"/>
    <circle cx="-25" cy="-5" r="8" fill="#FF6B6B"/>
    <circle cx="-25" cy="-5" r="8" fill="#FF6B6B"/>
    <circle cx="25" cy="-5" r="8" fill="#FF6B6B"/>
    <circle cx="25" cy="-5" r="8" fill="#FF6B6B"/>
  </g>
  
  <!-- Orange -->
  <g transform="translate(200,150)">
    <circle cx="0" cy="0" r="40" fill="#FFA500"/>
    <circle cx="0" cy="0" r="40" stroke="#333" stroke-width="2"/>
    <circle cx="-15" cy="-15" r="5" fill="#fff"/>
    <circle cx="15" cy="-15" r="5" fill="#fff"/>
    <circle cx="0" cy="15" r="5" fill="#fff"/>
    <rect x="-30" y="40" width="60" height="10" rx="5" fill="#696969"/>
    <rect x="-25" y="50" width="50" height="5" rx="3" fill="#696969"/>
    <circle cx="-20" cy="55" r="5" fill="#FF6B6B"/>
    <circle cx="20" cy="55" r="5" fill="#FF6B6B"/>
  </g>
  
  <!-- Motion Lines -->
  <path d="M50,180 Q100,200 150,180" stroke="#FF6B6B" stroke-width="4" fill="none"/>
  <path d="M250,180 Q200,200 150,180" stroke="#FFA500" stroke-width="4" fill="none"/>
  
  <!-- Skateboard -->
  <rect x="150" y="200" width="80" height="20" rx="10" fill="#696969"/>
  <rect x="160" y="210" width="60" height="10" rx="5" fill="#696969"/>
  <circle cx="170" cy="215" r="5" fill="#FF6B6B"/>
  <circle cx="230" cy="215" r="5" fill="#FF6B6B"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image clearly depicts a watermelon on roller skates and an orange on a skateboard, adhering closely to the prompt.

    The composition is lively, with a clear race setting, and the technical execution is clean and colorful, enhancing visual appeal.

    Player 2's image is more abstract and lacks the clarity and adherence to the prompt seen in Player 1's submission.

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
68
Player 2
28
Rectangles

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

Player 1
14
Player 2
7
Circles

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

Player 1
19
Player 2
18
Ellipses

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

Player 1
2
Player 2
Lines

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

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

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
2
Patterns

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

Player 1
1
Player 2
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
26
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
25
Player 2
7

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
3

Complexity Metrics

Path Commands

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

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