Back

SVG Drawing Match #2781

May 25, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An umbrella growing roots into the ground like a tree."

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Umbrella canopy -->
  <ellipse cx="150" cy="70" rx="70" ry="50" fill="url(#umbrellaGrad)" />
  <radialGradient id="umbrellaGrad" cx="150" cy="70" r="70" fx="150" fy="70">
    <stop offset="0%" stop-color="#F7DC6F" />
    <stop offset="50%" stop-color="#FFC107" />
    <stop offset="100%" stop-color="#FFA07A" />
  </radialGradient>

  <!-- Umbrella handle -->
  <rect x="120" y="120" width="60" height="10" rx="5" fill="#333" />
  <rect x="125" y="125" width="50" height="5" rx="2" fill="#444" />

  <!-- Roots -->
  <path d="M 145 130 C 145 130, 140 140, 135 150" stroke="#663300" stroke-width="5" fill="none" />
  <path d="M 155 130 C 155 130, 160 140, 165 150" stroke="#663300" stroke-width="5" fill="none" />
  <path d="M 140 140 C 140 140, 145 150, 150 160" stroke="#663300" stroke-width="5" fill="none" />
  <path d="M 160 140 C 160 140, 155 150, 150 160" stroke="#663300" stroke-width="5" fill="none" />

  <!-- Ground -->
  <rect x="0" y="200" width="300" height="100" fill="#964B00" rx="10" />

  <!-- Roots details -->
  <circle cx="135" cy="150" r="5" fill="#663300" />
  <circle cx="165" cy="150" r="5" fill="#663300" />
  <circle cx="150" cy="160" r="5" fill="#663300" />

  <!-- Patterns on the umbrella -->
  <pattern id="polkaDots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
    <circle cx="5" cy="5" r="2" fill="#FFC107" />
  </pattern>
  <ellipse cx="150" cy="70" rx="65" ry="45" fill="url(#polkaDots)" />
</svg>
SVG by Claude Sonnet 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="0%" r="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4682B4;stop-opacity:1" />
    </radialGradient>
    
    <linearGradient id="groundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#A0522D;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#654321;stop-opacity:1" />
    </linearGradient>
    
    <radialGradient id="umbrellaGradient" cx="50%" cy="30%" r="70%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
      <stop offset="40%" style="stop-color:#4ECDC4;stop-opacity:1" />
      <stop offset="80%" style="stop-color:#45B7D1;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#96CEB4;stop-opacity:1" />
    </radialGradient>
    
    <linearGradient id="handleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#D2691E;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#654321;stop-opacity:1" />
    </linearGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge> 
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="8" height="8">
      <circle cx="4" cy="4" r="1" fill="#90EE90" opacity="0.3"/>
    </pattern>
  </defs>
  
  <!-- Sky background -->
  <rect width="300" height="200" fill="url(#skyGradient)"/>
  
  <!-- Ground -->
  <rect x="0" y="200" width="300" height="100" fill="url(#groundGradient)"/>
  
  <!-- Underground root system -->
  <g opacity="0.8">
    <!-- Main taproot -->
    <path d="M150 220 Q148 240 145 260 Q142 280 140 295" 
          stroke="#8B4513" stroke-width="8" fill="none" opacity="0.7"/>
    
    <!-- Secondary roots -->
    <path d="M150 230 Q130 245 110 255 Q90 265 70 275" 
          stroke="#A0522D" stroke-width="4" fill="none" opacity="0.6"/>
    <path d="M150 235 Q170 250 190 260 Q210 270 230 280" 
          stroke="#A0522D" stroke-width="4" fill="none" opacity="0.6"/>
    
    <!-- Tertiary roots -->
    <path d="M145 250 Q120 260 95 265" 
          stroke="#CD853F" stroke-width="2" fill="none" opacity="0.5"/>
    <path d="M145 255 Q165 265 185 270" 
          stroke="#CD853F" stroke-width="2" fill="none" opacity="0.5"/>
    <path d="M110 255 Q95 270 80 285" 
          stroke="#CD853F" stroke-width="2" fill="none" opacity="0.5"/>
    <path d="M190 260 Q205 275 220 290" 
          stroke="#CD853F" stroke-width="2" fill="none" opacity="0.5"/>
    
    <!-- Fine root hairs -->
    <g stroke="#DEB887" stroke-width="1" fill="none" opacity="0.4">
      <path d="M95 265 Q85 270 75 275"/>
      <path d="M185 270 Q195 275 205 280"/>
      <path d="M80 285 Q70 290 60 295"/>
      <path d="M220 290 Q230 295 240 300"/>
      <path d="M140 295 Q130 300 120 305"/>
      <path d="M140 295 Q150 300 160 305"/>
    </g>
  </g>
  
  <!-- Umbrella handle/trunk -->
  <rect x="147" y="120" width="6" height="100" fill="url(#handleGradient)" filter="url(#glow)"/>
  
  <!-- Umbrella canopy -->
  <g transform="translate(150,120)">
    <!-- Main umbrella shape -->
    <path d="M-60,0 Q-50,-25 -30,-35 Q-15,-40 0,-40 Q15,-40 30,-35 Q50,-25 60,0 Q45,10 30,5 Q15,8 0,8 Q-15,8 -30,5 Q-45,10 -60,0 Z" 
          fill="url(#umbrellaGradient)" 
          stroke="#2C3E50" 
          stroke-width="2" 
          filter="url(#glow)"/>
    
    <!-- Umbrella ribs -->
    <g stroke="#2C3E50" stroke-width="1.5" opacity="0.7">
      <line x1="0" y1="-40" x2="0" y2="8"/>
      <line x1="0" y1="-40" x2="-30" y2="-35"/>
      <line x1="0" y1="-40" x2="30" y2="-35"/>
      <line x1="0" y1="-40" x2="-50" y2="-25"/>
      <line x1="0" y1="-40" x2="50" y2="-25"/>
      <line x1="0" y1="-40" x2="-60" y2="0"/>
      <line x1="0" y1="-40" x2="60" y2="0"/>
    </g>
    
    <!-- Decorative elements on umbrella -->
    <g fill="url(#leafPattern)">
      <circle cx="-40" cy="-20" r="3" fill="#FFD700" opacity="0.8"/>
      <circle cx="40" cy="-20" r="3" fill="#FFD700" opacity="0.8"/>
      <circle cx="-20" cy="-30" r="2" fill="#FF69B4" opacity="0.8"/>
      <circle cx="20" cy="-30" r="2" fill="#FF69B4" opacity="0.8"/>
    </g>
  </g>
  
  <!-- Leaves growing from the roots (surfacing) -->
  <g opacity="0.9">
    <ellipse cx="120" cy="210" rx="8" ry="15" fill="#90EE90" transform="rotate(-20 120 210)"/>
    <ellipse cx="180" cy="215" rx="6" ry="12" fill="#98FB98" transform="rotate(15 180 215)"/>
    <ellipse cx="100" cy="225" rx="5" ry="10" fill="#90EE90" transform="rotate(-45 100 225)"/>
    <ellipse cx="200" cy="230" rx="7" ry="13" fill="#98FB98" transform="rotate(30 200 230)"/>
  </g>
  
  <!-- Small sprouting leaves near the base -->
  <g>
    <ellipse cx="145" cy="205" rx="4" ry="8" fill="#90EE90" transform="rotate(-10 145 205)"/>
    <ellipse cx="155" cy="208" rx="3" ry="6" fill="#98FB98" transform="rotate(20 155 208)"/>
  </g>
  
  <!-- Magical sparkles -->
  <g fill="#FFD700" opacity="0.8">
    <circle cx="80" cy="80" r="1.5">
      <animate attributeName="opacity" values="0.8;0.3;0.8" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="220" cy="60" r="1">
      <animate attributeName="opacity" values="0.3;0.8;0.3" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="60" cy="140" r="1.2">
      <animate attributeName="opacity" values="0.8;0.2;0.8" dur="2.5s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Sonnet 4 (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission demonstrates stronger adherence to the prompt with a clear depiction of an umbrella growing roots into the ground.

    The addition of leaves, vibrant colors, and a detailed background enhances its creativity and visual appeal.

    Player 1's submission is less detailed and lacks the elements needed to clearly convey the concept of an umbrella merging with nature.

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

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

Player 1
3
Player 2
3
Circles

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

Player 1
4
Player 2
8
Ellipses

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

Player 1
2
Player 2
6
Lines

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

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

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

Player 1
Player 2
8

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
9

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
7

Complexity Metrics

Path Commands

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

Player 1
8
Player 2
39
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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