Back

SVG Drawing Match #1234

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clouds shaped as musical notes"

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="#1a237e" />
      <stop offset="100%" stop-color="#7986cb" />
    </linearGradient>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#e0e0e0" />
    </radialGradient>
    <filter id="cloudBlur" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
    </filter>
    <filter id="dropShadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
      <feOffset dx="2" dy="2" result="offsetblur" />
      <feComponentTransfer>
        <feFuncA type="linear" slope="0.3" />
      </feComponentTransfer>
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Eighth Note (Cloud Style) -->
  <g transform="translate(70, 70) scale(0.8)" filter="url(#dropShadow)">
    <!-- Cloud Head -->
    <circle cx="50" cy="50" r="28" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="70" cy="45" r="25" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="35" cy="45" r="20" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="60" cy="30" r="22" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <!-- Stem -->
    <rect x="70" y="50" width="8" height="80" rx="4" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <!-- Flag -->
    <path d="M78 50 C 100 60, 95 75, 78 80" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
  </g>

  <!-- Quarter Note (Cloud Style) -->
  <g transform="translate(170, 130) scale(0.7)" filter="url(#dropShadow)">
    <!-- Cloud Head -->
    <circle cx="50" cy="50" r="28" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="70" cy="45" r="25" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="35" cy="45" r="20" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="60" cy="30" r="22" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <!-- Stem -->
    <rect x="70" y="50" width="8" height="80" rx="4" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
  </g>

  <!-- Half Note (Cloud Style) -->
  <g transform="translate(75, 180) scale(0.75)" filter="url(#dropShadow)">
    <!-- Cloud Outline -->
    <circle cx="50" cy="50" r="28" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="70" cy="45" r="25" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="35" cy="45" r="20" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <circle cx="60" cy="30" r="22" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <!-- Inside empty area (to simulate half note) -->
    <circle cx="53" cy="47" r="18" fill="#7986cb" filter="url(#cloudBlur)" opacity="0.5" />
    <!-- Stem -->
    <rect x="70" y="50" width="8" height="80" rx="4" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
  </g>

  <!-- Music Staff Lines (Cloud Style) -->
  <g opacity="0.7">
    <path d="M 30 110 C 50 105, 100 115, 270 95" stroke="white" stroke-width="2" fill="none" filter="url(#cloudBlur)" />
    <path d="M 30 140 C 70 135, 160 150, 270 125" stroke="white" stroke-width="2" fill="none" filter="url(#cloudBlur)" />
    <path d="M 30 170 C 80 165, 130 180, 270 155" stroke="white" stroke-width="2" fill="none" filter="url(#cloudBlur)" />
    <path d="M 30 200 C 60 195, 150 210, 270 185" stroke="white" stroke-width="2" fill="none" filter="url(#cloudBlur)" />
    <path d="M 30 230 C 100 225, 170 240, 270 215" stroke="white" stroke-width="2" fill="none" filter="url(#cloudBlur)" />
  </g>

  <!-- Small decorative floating notes -->
  <g opacity="0.8">
    <circle cx="220" cy="60" r="10" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <rect x="228" y="60" width="3" height="25" rx="1.5" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    
    <circle cx="40" cy="30" r="8" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <rect x="47" y="30" width="3" height="20" rx="1.5" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <path d="M50 30 C 60 35, 58 45, 50 48" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    
    <circle cx="250" cy="250" r="12" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
    <rect x="260" y="250" width="3" height="30" rx="1.5" fill="url(#cloudGradient)" filter="url(#cloudBlur)" />
  </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="0.5" cy="0.5" r="0.5">
            <stop offset="0%" stop-color="#ffffff" stop-opacity="1"/>
            <stop offset="100%" stop-color="#c0c0ff" stop-opacity="0.8"/>
        </radialGradient>
        <linearGradient id="noteStemGradient" x1="0" y1="0" x2="0" y2="1">
            <stop offset="0%" stop-color="#4a4a6a" stop-opacity="1"/>
            <stop offset="100%" stop-color="#2a2a45" stop-opacity="1"/>
        </linearGradient>
        <filter id="fuzzy" x="-0.2" y="-0.2" width="1.4" height="1.4">
            <feGaussianBlur stdDeviation="3" />
        </filter>
    </defs>
    <rect width="300" height="300" fill="#e0f7ff"/>
    <g filter="url(#fuzzy)">
        <path d="M90 150 C60 130, 60 170, 90 150 Z M80 140 C100 120, 130 140, 110 150 C90 160, 60 150, 80 140 Z" fill="url(#cloudGradient)"/>
    </g>
    <g filter="url(#fuzzy)">
        <path d="M140 200 C110 180, 110 220, 140 200 Z M130 190 C150 170, 180 190, 160 200 C140 210, 110 200, 130 190 Z" fill="url(#cloudGradient)"/>
    </g>
    <g filter="url(#fuzzy)">
        <path d="M200 100 C170 80, 170 120, 200 100 Z M190 90 C210 70, 240 90, 220 100 C200 110, 170 100, 190 90 Z" fill="url(#cloudGradient)"/>
    </g>
    <g>
        <rect x="100" y="130" width="10" height="80" rx="5" ry="5" fill="url(#noteStemGradient)" />
        <rect x="180" y="80" width="10" height="80" rx="5" ry="5" fill="url(#noteStemGradient)" />
    </g>
    <circle cx="105" cy="210" r="15" fill="url(#noteStemGradient)" />
    <circle cx="185" cy="160" r="15" fill="url(#noteStemGradient)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image creatively integrates clouds and musical notes by using a soft, cloud-like texture while maintaining the recognizable form of musical notes.

    The use of a gradient background enhances the sky-like setting, which aligns well with the prompt.

    Player 2's submission, while clean and technically sound, lacks the creative merger of clouds into the musical note shapes, making Player 1's entry more visually appealing and conceptually fitting.

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
30
Player 2
8
Rectangles

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

Player 1
7
Player 2
3
Circles

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

Player 1
16
Player 2
2
Ellipses

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
5

Interactivity Metrics

Animations

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

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

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