Back

SVG Drawing Match #2778

May 25, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An umbrella floating in space with planets orbiting its handle."

SVG by Claude Opus 4 Thinking (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad">
      <stop offset="0%" style="stop-color:#1a0033"/>
      <stop offset="50%" style="stop-color:#2d1b69"/>
      <stop offset="100%" style="stop-color:#0a0015"/>
    </radialGradient>
    
    <radialGradient id="umbrellaGrad">
      <stop offset="0%" style="stop-color:#ff6b9d"/>
      <stop offset="50%" style="stop-color:#c44569"/>
      <stop offset="100%" style="stop-color:#662549"/>
    </radialGradient>
    
    <linearGradient id="handleGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffd93d"/>
      <stop offset="100%" style="stop-color:#ff6b35"/>
    </linearGradient>
    
    <radialGradient id="planet1">
      <stop offset="0%" style="stop-color:#4ecdc4"/>
      <stop offset="100%" style="stop-color:#2a9d8f"/>
    </radialGradient>
    
    <radialGradient id="planet2">
      <stop offset="0%" style="stop-color:#f8961e"/>
      <stop offset="100%" style="stop-color:#f3722c"/>
    </radialGradient>
    
    <radialGradient id="planet3">
      <stop offset="0%" style="stop-color:#90be6d"/>
      <stop offset="100%" style="stop-color:#577590"/>
    </radialGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <filter id="starGlow">
      <feGaussianBlur stdDeviation="1" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <pattern id="stars" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white" opacity="0.8"/>
      <circle cx="15" cy="20" r="0.3" fill="white" opacity="0.6"/>
      <circle cx="30" cy="10" r="0.4" fill="white" opacity="0.7"/>
      <circle cx="40" cy="30" r="0.5" fill="white" opacity="0.9"/>
      <circle cx="25" cy="40" r="0.3" fill="white" opacity="0.5"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#spaceGrad)"/>
  <rect width="300" height="300" fill="url(#stars)" opacity="0.7"/>
  
  <g filter="url(#starGlow)">
    <circle cx="50" cy="30" r="1" fill="#fffae5"/>
    <circle cx="250" cy="50" r="1.5" fill="#fffae5"/>
    <circle cx="280" cy="120" r="0.8" fill="#fffae5"/>
    <circle cx="30" cy="180" r="1.2" fill="#fffae5"/>
    <circle cx="270" cy="250" r="1" fill="#fffae5"/>
  </g>
  
  <g transform="rotate(-15 150 150)">
    <ellipse cx="150" cy="210" rx="60" ry="15" fill="none" stroke="#8e44ad" stroke-width="0.5" opacity="0.5" stroke-dasharray="2,2"/>
    
    <g>
      <animateTransform attributeName="transform" type="rotate" from="0 150 210" to="360 150 210" dur="20s" repeatCount="indefinite"/>
      <circle cx="90" cy="210" r="8" fill="url(#planet1)" filter="url(#glow)"/>
      <circle cx="88" cy="208" r="2" fill="#7fcdcd" opacity="0.6"/>
    </g>
    
    <g>
      <animateTransform attributeName="transform" type="rotate" from="0 150 210" to="-360 150 210" dur="15s" repeatCount="indefinite"/>
      <circle cx="210" cy="210" r="6" fill="url(#planet2)" filter="url(#glow)"/>
      <circle cx="208" cy="208" r="1.5" fill="#faa356" opacity="0.7"/>
    </g>
    
    <g>
      <animateTransform attributeName="transform" type="rotate" from="0 150 210" to="360 150 210" dur="25s" repeatCount="indefinite"/>
      <circle cx="150" cy="165" r="5" fill="url(#planet3)" filter="url(#glow)"/>
      <circle cx="149" cy="163" r="1" fill="#a7ce8a" opacity="0.8"/>
    </g>
  </g>
  
  <g transform="translate(150, 120) rotate(-15)">
    <path d="M 0,20 C -60,20 -60,-40 0,-40 C 60,-40 60,20 0,20 Z" fill="url(#umbrellaGrad)" stroke="#ff006e" stroke-width="2" filter="url(#glow)"/>
    
    <path d="M -40,10 C -40,-20 -20,-30 0,-30 C 20,-30 40,-20 40,10" fill="none" stroke="#ff4d6d" stroke-width="1" opacity="0.5"/>
    <path d="M -20,10 C -20,-10 -10,-15 0,-15 C 10,-15 20,-10 20,10" fill="none" stroke="#ff4d6d" stroke-width="1" opacity="0.3"/>
    
    <line x1="0" y1="20" x2="0" y2="90" stroke="url(#handleGrad)" stroke-width="4" stroke-linecap="round"/>
    
    <path d="M 0,80 Q 10,85 8,90" fill="none" stroke="url(#handleGrad)" stroke-width="3" stroke-linecap="round"/>
    
    <circle cx="0" cy="-10" r="15" fill="none" stroke="#ff006e" stroke-width="0.5" opacity="0.3"/>
    <circle cx="0" cy="-10" r="25" fill="none" stroke="#ff006e" stroke-width="0.3" opacity="0.2"/>
  </g>
  
  <g opacity="0.3">
    <ellipse cx="80" cy="60" rx="20" ry="10" fill="#a8dadc" filter="url(#glow)"/>
    <ellipse cx="220" cy="90" rx="15" ry="8" fill="#e63946" filter="url(#glow)"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background space with stars -->
  <rect width="300" height="300" fill="#000" />
  <circle cx="150" cy="150" r="1" fill="#fff" />
  <circle cx="50" cy="50" r="1" fill="#fff" />
  <circle cx="200" cy="100" r="1" fill="#fff" />
  <!-- Planets orbiting the umbrella handle -->
  <circle cx="150" cy="150" r="5" fill="#FFD700">
    <animateTransform attributeName="transform" type="rotate" dur="5s" from="0 150 150" to="360 150 150" repeatCount="indefinite" />
  </circle>
  <circle cx="170" cy="150" r="3" fill="#FF6347">
    <animateTransform attributeName="transform" type="rotate" dur="7s" from="0 150 150" to="360 150 150" repeatCount="indefinite" />
  </circle>
  <circle cx="190" cy="150" r="4" fill="#ADD8E6">
    <animateTransform attributeName="transform" type="rotate" dur="6s" from="0 150 150" to="360 150 150" repeatCount="indefinite" />
  </circle>
  <!-- Umbrella shape with gradient handle -->
  <path d="M150,150 C130,100 170,100 150,150 C130,175 170,175 150,150 Z" fill="none" stroke="#8B4513" stroke-width="2" />
  <path d="M145,125 Q150,100 155,125 Q140,115 160,115 Q145,120 145,125 Z" fill="url(#handle)" />
  <!-- Gradient for umbrella handle -->
  <defs>
    <linearGradient id="handle" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="100%" stop-color="#FFA500" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Opus 4 Thinking (2025-05-14) Player 1

Judge's Analysis

    Player 1's submission is more visually engaging and adheres closely to the prompt, featuring a distinct umbrella shape in space with planets orbiting around.

    The use of vibrant colors and a glowing cosmic background adds depth and creativity.

    Player 2's entry, while minimalist, lacks the clear depiction of an umbrella and the dynamic composition seen in Player 1's work.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
18
Player 2
6
Ellipses

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

Player 1
3
Player 2
Lines

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

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

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

Player 1
7
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
7

Interactivity Metrics

Animations

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

Player 1
3
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
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
12
Player 2
9
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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