Back

SVG Drawing Match #2726

May 10, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A tree shaped like a giant hand reaching for the sky."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Sky -->
  <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#87CEFA"/>
    <stop offset="100%" stop-color="#FFE4B5"/>
  </linearGradient>
  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#FFD700" stroke="#FFA500" stroke-width="4"/>
  <!-- Sun rays -->
  <g stroke="#FFA500" stroke-width="2">
    <line x1="250" y1="20" x2="250" y2="0"/>
    <line x1="250" y1="80" x2="250" y2="100"/>
    <line x1="220" y1="50" x2="210" y2="40"/>
    <line x1="280" y1="50" x2="290" y2="50"/>
    <line x1="230" y1="30" x2="240" y2="20"/>
    <line x1="270" y1="70" x2="280" y2="80"/>
    <line x1="230" y1="70" x2="240" y2="80"/>
    <line x1="270" y1="30" x2="280" y2="20"/>
  </g>

  <!-- Tree trunk (base of hand) -->
  <g id="hand-container" transform="translate(130,180)">
    <!-- Hand palm -->
    <ellipse cx="70" cy="80" rx="60" ry="70" fill="#8B4513" stroke="#654321" stroke-width="2"/>
    <!-- Wrinkles or texture to suggest hand -->
    <line x1="10" y1="20" x2="130" y2="20" stroke="#5C3317" stroke-width="1" opacity="0.5"/>
    <line x1="10" y1="40" x2="130" y2="40" stroke="#5C3317" stroke-width="1" opacity="0.4"/>
    <line x1="10" y1="60" x2="130" y2="60" stroke="#5C3317" stroke-width="1" opacity="0.3"/>
  </g>

  <!-- Fingers shaped as elongated branches -->
  <!-- Index Finger -->
  <g id="index-finger" transform="translate(170,100)">
    <path d="M0,0 
             C 0,-50  20,-70  20,-120 
             C 20,-130  40,-130  40,-120 
             C 40,-70  20,-50  20,0 
             Z" fill="#228B22" stroke="#006400" stroke-width="2"/>
  </g>

  <!-- Middle Finger -->
  <g id="middle-finger" transform="translate(150,90)">
    <path d="M0,0 
             C 0,-55  15,-75  15,-125 
             C 15,-135  35,-135  35,-125 
             C 35,-75  15,-55  15,0 
             Z" fill="#228B22" stroke="#006400" stroke-width="2"/>
  </g>

  <!-- Ring Finger -->
  <g id="ring-finger" transform="translate(130,85)">
    <path d="M0,0 
             C 0,-50  10,-70  10,-120 
             C 10,-130  30,-130  30,-120 
             C 30,-70  10,-50  10,0 
             Z" fill="#228B22" stroke="#006400" stroke-width="2"/>
  </g>

  <!-- Little Finger -->
  <g id="little-finger" transform="translate(110,90)">
    <path d="M0,0 
             C 0,-45  5,-65  5,-115 
             C 5,-125  25,-125  25,-115 
             C 25,-65  5,-45  5,0 
             Z" fill="#228B22" stroke="#006400" stroke-width="2"/>
  </g>

  <!-- Artistic stylization as glowing aura around hand -->
  <circle cx="70" cy="80" r="100" fill="none" stroke="#ADFF2F" stroke-width="4" opacity="0.4"/>
  
  <!-- Additional decorative elements -->
  <!-- Small clouds or air motifs -->
  <g fill="#FFFFFF" opacity="0.6">
    <ellipse cx="70" cy="30" rx="20" ry="10"/>
    <ellipse cx="220" cy="80" rx="15" ry="8"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0d47a1" />
      <stop offset="40%" stop-color="#4a148c" />
      <stop offset="70%" stop-color="#880e4f" />
      <stop offset="100%" stop-color="#bf360c" />
    </linearGradient>
    
    <!-- Tree trunk gradient -->
    <linearGradient id="trunkGradient" x1="0%" y1="100%" x2="0%" y2="0%">
      <stop offset="0%" stop-color="#3e2723" />
      <stop offset="60%" stop-color="#5d4037" />
      <stop offset="100%" stop-color="#795548" />
    </linearGradient>
    
    <!-- Foliage gradient for the hand/branches -->
    <linearGradient id="foliageGradient" x1="0%" y1="100%" x2="0%" y2="0%">
      <stop offset="0%" stop-color="#1b5e20" />
      <stop offset="50%" stop-color="#2e7d32" />
      <stop offset="80%" stop-color="#388e3c" />
      <stop offset="100%" stop-color="#43a047" />
    </linearGradient>
    
    <!-- Leaf cluster gradient -->
    <radialGradient id="leafClusterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#81c784" />
      <stop offset="70%" stop-color="#66bb6a" />
      <stop offset="100%" stop-color="#4caf50" />
    </radialGradient>
    
    <!-- Glow gradient for leaf tips -->
    <radialGradient id="glowGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#aed581" stop-opacity="0.6" />
      <stop offset="100%" stop-color="#aed581" stop-opacity="0" />
    </radialGradient>
    
    <!-- Bark texture -->
    <pattern id="barkPattern" patternUnits="userSpaceOnUse" width="30" height="50" patternTransform="rotate(0)">
      <path d="M0,0 v50 M10,5 v40 M20,0 v50 M30,10 v30" stroke="#3e2723" stroke-opacity="0.3" stroke-width="3" fill="none" />
    </pattern>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars in the sky -->
  <g fill="white">
    <circle cx="30" cy="30" r="1" />
    <circle cx="60" cy="50" r="1.5" />
    <circle cx="100" cy="20" r="1" />
    <circle cx="170" cy="40" r="1.5" />
    <circle cx="220" cy="30" r="1" />
    <circle cx="250" cy="70" r="1.5" />
    <circle cx="40" cy="90" r="1" />
    <circle cx="280" cy="40" r="1" />
    <circle cx="190" cy="20" r="0.8" />
    <circle cx="210" cy="50" r="0.8" />
    <circle cx="110" cy="40" r="0.8" />
    <circle cx="270" cy="90" r="0.8" />
  </g>
  
  <!-- Moon -->
  <path d="M260,60 a20,20 0 1,1 0,1 z" fill="white" fill-opacity="0.9" />
  <path d="M250,60 a15,15 0 1,1 0,1 z" fill="url(#skyGradient)" fill-opacity="0.7" />
  
  <!-- Ground -->
  <path d="M0,265 C50,260 100,270 150,265 C200,260 250,270 300,265 L300,300 L0,300 Z" fill="#33691e" />
  <path d="M0,275 C50,270 100,280 150,275 C200,270 250,280 300,275 L300,300 L0,300 Z" fill="#1b5e20" />
  
  <!-- Main tree group -->
  <g id="tree-hand">
    <!-- Roots of the tree -->
    <g id="roots">
      <path d="M120,265 C130,275 140,280 150,285 C160,280 170,275 180,265" fill="none" stroke="#5d4037" stroke-width="3" />
      <path d="M130,265 Q110,275 100,290" fill="none" stroke="#5d4037" stroke-width="2.5" />
      <path d="M140,265 Q120,280 115,290" fill="none" stroke="#5d4037" stroke-width="2" />
      <path d="M160,265 Q180,280 185,290" fill="none" stroke="#5d4037" stroke-width="2" />
      <path d="M170,265 Q190,275 200,290" fill="none" stroke="#5d4037" stroke-width="2.5" />
      <path d="M135,270 Q125,280 120,285" fill="none" stroke="#5d4037" stroke-width="1.5" />
      <path d="M165,270 Q175,280 180,285" fill="none" stroke="#5d4037" stroke-width="1.5" />
    </g>
    
    <!-- Tree trunk (wrist and palm) -->
    <path d="M130,265 C125,230 125,190 130,160 C135,140 145,120 150,110 C155,120 165,140 170,160 C175,190 175,230 170,265 Z" fill="url(#trunkGradient)" />
    <path d="M130,265 C125,230 125,190 130,160 C135,140 145,120 150,110 C155,120 165,140 170,160 C175,190 175,230 170,265 Z" fill="url(#barkPattern)" fill-opacity="0.3" />
    <path d="M130,265 C125,230 125,190 130,160 C135,140 145,120 150,110 C155,120 165,140 170,160 C175,190 175,230 170,265 Z" fill="none" stroke="#3e2723" stroke-width="1.5" />
    
    <!-- Bark details -->
    <path d="M140,240 C142,220 142,200 140,180 M160,240 C158,220 158,200 160,180" fill="none" stroke="#3e2723" stroke-width="1" />
    <path d="M145,190 Q150,185 155,190" fill="none" stroke="#3e2723" stroke-width="1" />
    <path d="M145,210 Q150,205 155,210" fill="none" stroke="#3e2723" stroke-width="1" />
    <path d="M140,170 Q150,160 160,170" fill="none" stroke="#3e2723" stroke-width="1" />
    
    <!-- Glows behind the leaf clusters for ethereal effect -->
    <circle cx="110" cy="40" r="16" fill="url(#glowGradient)" />
    <circle cx="150" cy="5" r="20" fill="url(#glowGradient)" />
    <circle cx="160" cy="-5" r="24" fill="url(#glowGradient)" />
    <circle cx="150" cy="5" r="20" fill="url(#glowGradient)" />
    <circle cx="190" cy="40" r="16" fill="url(#glowGradient)" />
    
    <!-- Thumb (first finger) -->
    <g id="thumb">
      <path d="M130,160 C115,140 105,120 100,90 C95,70 100,50 110,40" fill="url(#foliageGradient)" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Thumb twigs -->
      <path d="M105,80 Q90,70 85,75" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M102,60 Q90,55 80,60" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M110,40 Q100,35 95,30" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Thumb leaf clusters -->
      <ellipse cx="85" cy="75" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="80" cy="60" rx="10" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="95" cy="30" rx="12" ry="9" fill="url(#leafClusterGradient)" />
    </g>
    
    <!-- Index finger -->
    <g id="index-finger">
      <path d="M140,110 C135,80 130,50 135,30 C140,10 145,0 150,5" fill="url(#foliageGradient)" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Index finger twigs -->
      <path d="M135,70 Q125,65 120,70" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M133,50 Q123,40 120,30" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M135,30 Q130,20 135,10" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Index finger leaf clusters -->
      <ellipse cx="120" cy="70" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="120" cy="30" rx="10" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="135" cy="10" rx="10" ry="8" fill="url(#leafClusterGradient)" />
      <ellipse cx="150" cy="5" rx="12" ry="10" fill="url(#leafClusterGradient)" />
    </g>
    
    <!-- Middle finger - the tallest -->
    <g id="middle-finger">
      <path d="M150,110 C148,70 148,30 150,10 C152,0 155,-10 160,-5" fill="url(#foliageGradient)" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Middle finger twigs -->
      <path d="M150,80 Q140,75 135,80" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M148,60 Q138,50 135,40" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M150,40 Q145,30 150,20" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M150,30 Q160,25 165,30" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M150,15 Q160,10 170,15" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Middle finger leaf clusters -->
      <ellipse cx="135" cy="80" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="135" cy="40" rx="10" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="150" cy="20" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="165" cy="30" rx="9" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="170" cy="15" rx="11" ry="8" fill="url(#leafClusterGradient)" />
      <ellipse cx="160" cy="-5" rx="14" ry="10" fill="url(#leafClusterGradient)" />
    </g>
    
    <!-- Ring finger -->
    <g id="ring-finger">
      <path d="M160,110 C165,80 170,50 165,30 C160,10 155,0 150,5" fill="url(#foliageGradient)" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Ring finger twigs -->
      <path d="M165,70 Q175,65 180,70" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M167,50 Q177,40 180,30" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M165,30 Q170,20 165,10" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Ring finger leaf clusters -->
      <ellipse cx="180" cy="70" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="180" cy="30" rx="10" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="165" cy="10" rx="10" ry="8" fill="url(#leafClusterGradient)" />
    </g>
    
    <!-- Pinky finger -->
    <g id="pinky">
      <path d="M170,160 C185,140 195,120 200,90 C205,70 200,50 190,40" fill="url(#foliageGradient)" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Pinky twigs -->
      <path d="M195,80 Q210,70 215,75" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M198,60 Q210,55 220,60" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      <path d="M190,40 Q200,35 205,30" fill="none" stroke="#1b5e20" stroke-width="1.5" />
      
      <!-- Pinky leaf clusters -->
      <ellipse cx="215" cy="75" rx="8" ry="6" fill="url(#leafClusterGradient)" />
      <ellipse cx="220" cy="60" rx="10" ry="7" fill="url(#leafClusterGradient)" />
      <ellipse cx="205" cy="30" rx="12" ry="9" fill="url(#leafClusterGradient)" />
    </g>
    
    <!-- Additional foliage details -->
    <g id="additional-leaves" fill="#4caf50" fill-opacity="0.6">
      <circle cx="115" cy="120" r="5" />
      <circle cx="125" cy="100" r="6" />
      <circle cx="175" cy="120" r="5" />
      <circle cx="185" cy="100" r="6" />
      <circle cx="150" cy="90" r="7" />
    </g>
    
    <!-- Small birds -->
    <g id="birds">
      <path d="M70,100 c2,-2 3,-1 4,0 c1,-1 2,-2 4,0 c-1,1 -2,2 -4,1 c-2,1 -3,0 -4,-1 z" fill="#d32f2f" />
      <path d="M210,80 c2,-2 3,-1 4,0 c1,-1 2,-2 4,0 c-1,1 -2,2 -4,1 c-2,1 -3,0 -4,-1 z" fill="#fdd835" />
      <path d="M180,120 c2,-2 3,-1 4,0 c1,-1 2,-2 4,0 c-1,1 -2,2 -4,1 c-2,1 -3,0 -4,-1 z" fill="#1976d2" />
    </g>
  </g>
  
  <!-- Fireflies/light particles -->
  <g>
    <circle cx="80" cy="150" r="1.5" fill="yellow" opacity="0.8">
      <animate attributeName="opacity" values="0.8;0.2;0.8" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="220" cy="130" r="1.5" fill="yellow" opacity="0.3">
      <animate attributeName="opacity" values="0.3;0.8;0.3" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="110" cy="100" r="1.5" fill="yellow" opacity="0.5">
      <animate attributeName="opacity" values="0.5;0.9;0.5" dur="2.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="170" cy="90" r="1.5" fill="yellow" opacity="0.4">
      <animate attributeName="opacity" values="0.4;0.8;0.4" dur="3.5s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and adherence to the prompt by clearly depicting a tree shaped like a hand reaching for the sky, with detailed finger-like branches and an appealing nighttime backdrop.

    In contrast, Player 1's submission is less detailed and does not effectively convey the idea of a hand-shaped tree, making it less visually compelling and relevant to the prompt.

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

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

Player 1
1
Player 2
1
Circles

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

Player 1
2
Player 2
26
Ellipses

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

Player 1
3
Player 2
19
Lines

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

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

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

Player 1
7
Player 2
11

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
35

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
21

Interactivity Metrics

Animations

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

Player 1
Player 2
4
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
20
Player 2
136
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.

Similar Challenges