Back

SVG Drawing Match #1836

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An umbrella made of clouds, raining colorful candy drops"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cloudGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:white"/>
      <stop offset="100%" style="stop-color:#e0e6ff"/>
    </radialGradient>
    <filter id="cloudFilter">
      <feGaussianBlur stdDeviation="3"/>
    </filter>
  </defs>
  
  <!-- Handle -->
  <path d="M150 120 L150 280" stroke="#8B4513" stroke-width="8" fill="none"/>
  
  <!-- Cloud Umbrella -->
  <g transform="translate(150,120)">
    <path d="M-100,0 Q-80,-60 0,-60 Q80,-60 100,0 Q80,20 60,0 Q40,20 20,0 Q0,20 -20,0 Q-40,20 -60,0 Q-80,20 -100,0" 
          fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
  </g>
  
  <!-- Candy Drops -->
  <g>
    <circle cx="100" cy="200" r="8" fill="#FF69B4">
      <animate attributeName="cy" from="150" to="300" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="130" cy="180" r="8" fill="#FFD700">
      <animate attributeName="cy" from="130" to="300" dur="1.8s" repeatCount="indefinite"/>
    </circle>
    <circle cx="160" cy="220" r="8" fill="#98FB98">
      <animate attributeName="cy" from="170" to="300" dur="2.2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="190" cy="160" r="8" fill="#87CEEB">
      <animate attributeName="cy" from="140" to="300" dur="1.9s" repeatCount="indefinite"/>
    </circle>
    <path d="M90,190 L110,210 M90,210 L110,190" stroke="#FF69B4" stroke-width="3">
      <animate attributeName="cy" from="150" to="300" dur="2s" repeatCount="indefinite"/>
    </path>
    <path d="M150,170 L170,190 M150,190 L170,170" stroke="#FFD700" stroke-width="3">
      <animate attributeName="cy" from="130" to="300" dur="1.7s" repeatCount="indefinite"/>
    </path>
    <path d="M180,200 L200,220 M180,220 L200,200" stroke="#98FB98" stroke-width="3">
      <animate attributeName="cy" from="160" to="300" dur="2.1s" repeatCount="indefinite"/>
    </path>
  </g>
  
  <!-- Additional Cloud Details -->
  <circle cx="50" cy="120" r="20" fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
  <circle cx="250" cy="120" r="25" fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
  
  <!-- Sparkles -->
  <g fill="white">
    <circle cx="80" cy="100" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="220" cy="90" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1.3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="70" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="1.7s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(200,200,255);stop-opacity:1" />
    </radialGradient>
    <linearGradient id="rainbowCandy" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff7979;stop-opacity:1" />
      <stop offset="20%" style="stop-color:#ffbe76;stop-opacity:1" />
      <stop offset="40%" style="stop-color:#f9ca24;stop-opacity:1" />
      <stop offset="60%" style="stop-color:#badc58;stop-opacity:1" />
      <stop offset="80%" style="stop-color:#7ed6df;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e056fd;stop-opacity:1" />
    </linearGradient>
    <pattern id="candyPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" style="fill:url(#rainbowCandy);" />
    </pattern>
  </defs>
  
  <!-- Umbrella made of clouds -->
  <g id="cloudUmbrella">
    <ellipse cx="150" cy="80" rx="60" ry="30" fill="url(#cloudGradient)" />
    <circle cx="120" cy="70" r="20" fill="url(#cloudGradient)" />
    <circle cx="180" cy="70" r="25" fill="url(#cloudGradient)" />

    <!-- Umbrella handle -->
    <rect x="145" y="80" width="10" height="130" fill="#8a7f8d" />
    <path d="M150 210 q20 -20 40 0" fill="none" stroke="#8a7f8d" stroke-width="10" />
  </g>

  <!-- Colorful candy drops -->
  <g id="candyDrops" fill="url(#rainbowCandy)">
    <circle cx="80" cy="180" r="5" />
    <circle cx="120" cy="220" r="7" />
    <circle cx="160" cy="200" r="6" />
    <circle cx="200" cy="240" r="5" />
    <circle cx="240" cy="180" r="8" />
    <circle cx="100" cy="260" r="5" />
    <circle cx="140" cy="240" r="7" />
    <circle cx="180" cy="260" r="6" />
    <circle cx="220" cy="220" r="5" />
    <circle cx="260" cy="200" r="8" />
  </g>
</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 concept with a clear cloud-shaped umbrella and colorful candy drops, showcasing creativity and adherence to the prompt.

    The colors are vibrant and the composition is balanced, enhancing its visual appeal.

    Player 2's image, while creative, lacks clarity in the candy drop depiction and has a less cohesive design.

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
14
Player 2
16
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
9
Player 2
13
Ellipses

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

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

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
1

Interactivity Metrics

Animations

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

Player 1
10
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

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