Back

SVG Drawing Match #1997

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cloud with one quirky face winking"

SVG by GPT-4o mini (2024-07-18)
<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:#ffffff; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#b0e0e6; stop-opacity:1" />
        </radialGradient>
    </defs>
    <g transform="translate(50, 100)">
        <path d="M100 40C76.35 40 56 60.35 56 84C56 92 58.5 98.86 62.88 104.17C41.28 109.14 28 122.63 28 140C28 159.04 43.36 170 61 170H130C147.64 170 163 159.04 163 140C163 122.63 149.72 109.14 128.12 104.17C132.5 98.86 135 92 135 84C135 60.35 114.65 40 100 40Z" fill="url(#cloudGradient)" />
    </g>
    <g>
        <circle cx="108" cy="100" r="10" fill="#000" />
        <path d="M130 90 Q140 100 130 110" stroke="#000" stroke-width="3" fill="none" />
        <path d="M80 120 C90 130, 120 130, 130 120" stroke="#000" stroke-width="3" fill="none" />
    </g>
    <g>
        <circle cx="74" cy="90" r="6" fill="#000" />
        <path d="M58 107 C68 115, 70 116, 58 119" stroke="#000" stroke-width="2" fill="none" />
    </g>
    <filter id="glow">
        <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
        <feMerge>
            <feMergeNode />
            <feMergeNode in="SourceGraphic" />
        </feMerge>
    </filter>
    <g filter="url(#glow)">
        <circle cx="100" cy="70" r="40" fill="none" stroke="#93b0b8" stroke-width="10" />
    </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0F7FF"/>
    </linearGradient>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="70%" stop-color="#F0F0F0"/>
      <stop offset="100%" stop-color="#E0E0E0"/>
    </radialGradient>
    <filter id="cloudShadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="5"/>
      <feOffset dx="0" dy="8" result="offsetblur"/>
      <feComponentTransfer>
        <feFuncA type="linear" slope="0.3"/>
      </feComponentTransfer>
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="twinkle" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="0.5"/>
      <feComponentTransfer>
        <feFuncA type="linear" slope="1.5"/>
      </feComponentTransfer>
    </filter>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Sun rays -->
  <g>
    <circle cx="220" cy="60" r="40" fill="#FFD700" opacity="0.6"/>
    <circle cx="220" cy="60" r="30" fill="#FFA500" opacity="0.5"/>
    <circle cx="220" cy="60" r="20" fill="#FF8C00" opacity="0.4"/>
  </g>
  
  <!-- Main cloud -->
  <g filter="url(#cloudShadow)" transform="translate(150, 140) scale(1, 1)">
    <circle cx="-50" cy="0" r="40" fill="url(#cloudGradient)"/>
    <circle cx="-20" cy="-25" r="35" fill="url(#cloudGradient)"/>
    <circle cx="15" cy="-15" r="45" fill="url(#cloudGradient)"/>
    <circle cx="40" cy="10" r="35" fill="url(#cloudGradient)"/>
    <circle cx="0" cy="20" r="40" fill="url(#cloudGradient)"/>
    <ellipse cx="-10" cy="0" rx="90" ry="40" fill="url(#cloudGradient)"/>
  </g>
  
  <!-- Cloud Face -->
  <g transform="translate(150, 140)">
    <!-- Left Eye -->
    <ellipse cx="-25" cy="-5" rx="10" ry="12" fill="#FFFFFF" stroke="#333333" stroke-width="1.5"/>
    <circle cx="-25" cy="-2" r="5" fill="#333333">
      <animate attributeName="cy" values="-2;-5;-2" dur="8s" repeatCount="indefinite"/>
    </circle>
    <path d="M-35 -15 Q-25 -20 -15 -15" fill="none" stroke="#333333" stroke-width="2" stroke-linecap="round"/>
    
    <!-- Right Eye (Winking) -->
    <g>
      <path d="M28 -5 Q25 5 12 -5" fill="none" stroke="#333333" stroke-width="3" stroke-linecap="round">
        <animate attributeName="d" values="M28 -5 Q25 5 12 -5;M28 -5 Q20 -15 12 -5;M28 -5 Q25 5 12 -5" dur="5s" repeatCount="indefinite"/>
      </path>
      <circle cx="15" cy="-1" r="2" fill="#333333" filter="url(#twinkle)">
        <animate attributeName="opacity" values="1;0;1" dur="5s" repeatCount="indefinite"/>
      </circle>
    </g>
    
    <!-- Mouth -->
    <path d="M-20 20 Q0 35 20 20" fill="none" stroke="#333333" stroke-width="3" stroke-linecap="round"/>
    
    <!-- Rosy Cheeks -->
    <circle cx="-30" cy="15" r="10" fill="#FFB6C1" opacity="0.5"/>
    <circle cx="30" cy="15" r="10" fill="#FFB6C1" opacity="0.5"/>
    
    <!-- Quirky detail - small rainbow bow tie -->
    <path d="M-5 28 L5 28 L10 35 L0 40 L-10 35 L-5 28 Z" fill="#FF9999"/>
    <path d="M-5 32 L5 32 L8 37 L0 40 L-8 37 L-5 32 Z" fill="#FFFF99"/>
    <path d="M-5 36 L5 36 L6 39 L0 40 L-6 39 L-5 36 Z" fill="#99FF99"/>
  </g>
  
  <!-- Small decorative clouds -->
  <g opacity="0.7">
    <circle cx="50" cy="70" r="15" fill="white"/>
    <circle cx="65" cy="75" r="12" fill="white"/>
    <circle cx="75" cy="65" r="10" fill="white"/>
    
    <circle cx="250" cy="200" r="12" fill="white"/>
    <circle cx="265" cy="205" r="10" fill="white"/>
    <circle cx="240" cy="210" r="8" fill="white"/>
  </g>
  
  <!-- Quirky bits - floating stars -->
  <g>
    <path d="M40 200 L45 210 L55 210 L47 217 L50 227 L40 221 L30 227 L33 217 L25 210 L35 210 Z" fill="#FFD700" opacity="0.8">
      <animateTransform attributeName="transform" type="rotate" from="0 40 215" to="360 40 215" dur="20s" repeatCount="indefinite"/>
    </path>
    
    <path d="M250 100 L253 107 L260 107 L254 112 L256 119 L250 115 L244 119 L246 112 L240 107 L247 107 Z" fill="#FFD700" opacity="0.8">
      <animateTransform attributeName="transform" type="rotate" from="0 250 110" to="-360 250 110" dur="15s" repeatCount="indefinite"/>
    </path>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image creatively captures the concept with a cloud featuring a quirky winking face, enhanced by additional elements like stars and a sun, adding to the visual appeal.

    The technical quality is high, with smooth lines and vibrant colors.

    In contrast, Player 1's submission lacks facial features and creativity, not adhering closely 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
7
Player 2
29
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
3
Player 2
18
Ellipses

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

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

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

Player 1
4
Player 2
6

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
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
13

Interactivity Metrics

Animations

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

Player 1
Player 2
5
Elements with Transform

The number of elements with transform attributes in the SVG.

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