Back

SVG Drawing Match #1333

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Picasso-style face made of musical notes and instruments"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradFace" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff9a00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff3d00;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="gradNotes" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#00e0ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0073e6;stop-opacity:1" />
    </linearGradient>
    <path id="noteShape" d="M10 0 C 15 10, 20 10, 25 0 C 20 -10, 15 -10, 10 0 M 10 0 L 10 40 L 10 0 Z" />
    <path id="guitarShape" d="M40 25 C 50 0, 70 0, 80 25 C 90 50, 70 70, 40 50 C 10 30, 20 10, 40 25" />
  </defs>
  
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="0" rx="80" ry="100" fill="url(#gradFace)" />
    <ellipse cx="-25" cy="-30" rx="10" ry="20" fill="#fff" />
    <ellipse cx="25" cy="-30" rx="10" ry="20" fill="#fff" />
    <circle cx="-25" cy="-30" r="5" fill="#000" />
    <circle cx="25" cy="-30" r="5" fill="#000" />
    <path d="M -30 20 C -40 10, -40 -10, -20 0 C -10 10, -20 20, -30 20" fill="#000" />
    <path d="M 30 20 C 40 10, 40 -10, 20 0 C 10 10, 20 20, 30 20" fill="#000" />
    
    <g fill="url(#gradNotes)">
      <use x="-60" y="-50" href="#noteShape" width="20" height="40" />
      <use x="60" y="-50" href="#noteShape" width="20" height="40" />
      <use x="-40" y="40" href="#noteShape" width="20" height="40" />
      <use x="40" y="40" href="#noteShape" width="20" height="40" />
      <use x="-20" y="-90" href="#noteShape" width="20" height="40" />
      <use x="20" y="-90" href="#noteShape" width="20" height="40" />
    </g>
    
    <g transform="rotate(-30)">
      <use x="0" y="50" href="#guitarShape" fill="url(#gradNotes)" />
      <use x="0" y="-120" href="#guitarShape" fill="url(#gradNotes)" />
    </g>
  </g>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skinTone" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffb6c1"/>
      <stop offset="100%" style="stop-color:#87ceeb"/>
    </linearGradient>
    <filter id="blur">
      <feGaussianBlur stdDeviation="1"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#f0f8ff"/>
  
  <!-- Face shape (guitar body) -->
  <path d="M100,50 Q200,30 250,150 Q200,270 100,250 Q30,200 100,50" fill="url(#skinTone)" stroke="#333" stroke-width="3"/>
  
  <!-- Eye (treble clef) -->
  <path d="M120,100 Q140,80 150,120 Q130,140 120,100 M150,120 L160,150" fill="none" stroke="#2c3e50" stroke-width="4"/>
  
  <!-- Other eye (bass clef) -->
  <path d="M180,110 C200,100 220,120 200,130 M205,120 L210,120 M205,140 L210,140" fill="none" stroke="#2c3e50" stroke-width="4"/>
  
  <!-- Nose (eighth note) -->
  <path d="M160,160 L160,200 Q180,210 160,220" fill="none" stroke="#2c3e50" stroke-width="4"/>
  <circle cx="160" cy="160" r="8" fill="#2c3e50"/>
  
  <!-- Mouth (piano keys) -->
  <path d="M120,200 Q160,220 200,200" fill="none" stroke="#333" stroke-width="3"/>
  <rect x="130" y="190" width="10" height="25" fill="#333"/>
  <rect x="150" y="190" width="10" height="25" fill="#333"/>
  <rect x="170" y="190" width="10" height="25" fill="#333"/>
  
  <!-- Hair (music notes) -->
  <g transform="rotate(-10,150,100)">
    <path d="M80,60 Q150,20 220,60" fill="none" stroke="#333" stroke-width="2"/>
    <circle cx="100" cy="50" r="8" fill="#e74c3c"/>
    <circle cx="140" cy="40" r="8" fill="#3498db"/>
    <circle cx="180" cy="45" r="8" fill="#2ecc71"/>
    <circle cx="220" cy="55" r="8" fill="#f1c40f"/>
  </g>
  
  <!-- Decorative musical symbols -->
  <text x="90" y="150" font-size="20" fill="#666">♪</text>
  <text x="220" y="160" font-size="20" fill="#666">♫</text>
  <text x="150" y="90" font-size="20" fill="#666">♩</text>
  
  <!-- Abstract instrument shapes -->
  <path d="M70,180 Q50,150 70,120" fill="none" stroke="#95a5a6" stroke-width="2"/>
  <path d="M230,180 Q250,150 230,120" fill="none" stroke="#95a5a6" stroke-width="2"/>
  
  <!-- Cubist elements -->
  <polygon points="250,80 270,100 250,120 230,100" fill="#bdc3c7" opacity="0.5"/>
  <polygon points="50,80 30,100 50,120 70,100" fill="#bdc3c7" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's submission creatively integrates musical notes and instrument elements into a Picasso-style face, capturing the essence of the prompt more effectively.

    The technical execution is more nuanced, with a balanced composition and a playful use of colors that enhance the visual appeal.

    Player 1's image lacks clear musical elements and Picasso-style abstraction, making it less aligned with 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
9
Player 2
19
Rectangles

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

Player 1
Player 2
4
Circles

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

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

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

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

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
10

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

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
26
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
4
Player 2
2
Use Elements

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

Player 1
8
Player 2

Text Metrics

Text Elements

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

Player 1
Player 2
3

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