Back

SVG Drawing Match #308

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe painting surreal clouds on a night sky with its elongated neck"

SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0D1B2A"/>
      <stop offset="100%" stop-color="#1B263B"/>
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#fbb1bd" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0.8"/>
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FCE38A"/>
      <stop offset="100%" stop-color="#F9D423"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g id="stars">
    <circle cx="30" cy="30" r="1.2" fill="#ffffff" opacity="0.8"/>
    <circle cx="50" cy="10" r="0.8" fill="#ffffff" opacity="0.8"/>
    <circle cx="80" cy="50" r="1" fill="#ffffff" opacity="0.8"/>
    <circle cx="120" cy="30" r="1.5" fill="#ffffff" opacity="0.8"/>
    <circle cx="200" cy="40" r="1.2" fill="#ffffff" opacity="0.8"/>
    <circle cx="250" cy="20" r="1" fill="#ffffff" opacity="0.8"/>
    <circle cx="280" cy="60" r="1.5" fill="#ffffff" opacity="0.8"/>
    <circle cx="230" cy="80" r="1" fill="#ffffff" opacity="0.8"/>
    <circle cx="190" cy="10" r="1" fill="#ffffff" opacity="0.8"/>
    <circle cx="260" cy="100" r="1.2" fill="#ffffff" opacity="0.8"/>
  </g>
  <g id="clouds">
    <path d="M150,90 
             C155,80 165,80 170,90 
             C180,85 190,85 195,95 
             C200,105 190,115 180,110 
             C175,120 165,120 160,110 
             C150,115 140,105 145,95 
             C148,80 145,80 150,90 Z" 
          fill="url(#cloudGradient)" stroke="#ffffff" stroke-width="0.5"/>
    <path d="M220,140 
             C225,130 235,130 240,140 
             C245,135 255,135 260,145 
             C265,155 255,165 245,160 
             C240,170 230,170 225,160 
             C215,165 205,155 210,145 
             C215,135 215,135 220,140 Z" 
          fill="url(#cloudGradient)" stroke="#ffffff" stroke-width="0.5"/>
    <path d="M80,70 
             C85,65 95,65 100,70 
             C105,68 115,68 120,73 
             C125,78 115,83 110,80 
             C105,85 95,85 90,80 
             C85,75 75,75 80,70 Z" 
          fill="url(#cloudGradient)" stroke="#ffffff" stroke-width="0.5" opacity="0.7"/>
  </g>
  <g id="giraffe">
    <ellipse cx="65" cy="220" rx="20" ry="12" fill="url(#giraffeGradient)" stroke="brown" stroke-width="1"/>
    <path d="M60,210 
             C65,180 65,100 65,60 
             L75,60 
             C75,100 75,180 75,210 
             Z" fill="url(#giraffeGradient)" stroke="brown" stroke-width="1"/>
    <circle cx="67" cy="200" r="2" fill="#8B4513"/>
    <circle cx="72" cy="180" r="2" fill="#8B4513"/>
    <circle cx="67" cy="150" r="2.5" fill="#8B4513"/>
    <circle cx="70" cy="120" r="2" fill="#8B4513"/>
    <circle cx="68" cy="90" r="2.5" fill="#8B4513"/>
    <ellipse cx="70" cy="50" rx="7" ry="5" fill="url(#giraffeGradient)" stroke="brown" stroke-width="0.5"/>
    <polygon points="66,40 68,30 70,40" fill="url(#giraffeGradient)" stroke="brown" stroke-width="0.5"/>
    <polygon points="70,40 72,30 74,40" fill="url(#giraffeGradient)" stroke="brown" stroke-width="0.5"/>
    <circle cx="73" cy="48" r="0.8" fill="black"/>
    <path d="M72,48 C100,40 120,80 140,100" stroke="#A0522D" stroke-width="2" fill="none" stroke-linecap="round"/>
    <line x1="140" y1="100" x2="144" y2="96" stroke="#A0522D" stroke-width="1"/>
    <line x1="140" y1="100" x2="138" y2="94" stroke="#A0522D" stroke-width="1"/>
    <line x1="140" y1="100" x2="142" y2="94" stroke="#A0522D" stroke-width="1"/>
  </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="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0B1026"/>
      <stop offset="100%" style="stop-color:#2B0E45"/>
    </linearGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white" opacity="0.6"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>

  <!-- Surreal Clouds -->
  <path d="M180,80 Q220,40 260,90 T280,140" fill="none" stroke="#FF69B4" stroke-width="4"/>
  <path d="M160,100 Q200,60 240,110 T260,160" fill="none" stroke="#87CEEB" stroke-width="4"/>
  <path d="M140,120 Q180,80 220,130 T240,180" fill="none" stroke="#9370DB" stroke-width="4"/>

  <!-- Giraffe Body -->
  <path d="M100,280 Q120,260 130,220 T140,160" fill="#FFD700" stroke="#DAA520" stroke-width="2"/>
  <path fill="#FFD700" stroke="#DAA520" stroke-width="2" d="M80,280 Q100,260 110,240 T120,200"/>
  
  <!-- Giraffe Patterns -->
  <g fill="#DAA520">
    <circle cx="125" cy="230" r="8"/>
    <circle cx="115" cy="250" r="7"/>
    <circle cx="105" cy="270" r="6"/>
    <circle cx="135" cy="210" r="7"/>
    <circle cx="138" cy="190" r="6"/>
  </g>

  <!-- Giraffe Neck -->
  <path d="M140,160 Q160,120 180,80 T200,20" fill="none" stroke="#FFD700" stroke-width="15"/>
  
  <!-- Giraffe Head -->
  <path d="M195,15 Q205,10 210,20 T200,35" fill="#FFD700" stroke="#DAA520" stroke-width="2"/>
  <circle cx="208" cy="18" r="2" fill="black"/> <!-- Eye -->
  
  <!-- Paint Brush -->
  <path d="M210,15 L220,10" stroke="#8B4513" stroke-width="3"/>
  <path d="M220,10 Q225,8 230,12" fill="#F4A460"/>

  <!-- Painted Cloud Effects -->
  <g opacity="0.8">
    <circle cx="260" cy="90" r="15" fill="#FF69B4" filter="blur(5px)"/>
    <circle cx="240" cy="110" r="12" fill="#87CEEB" filter="blur(4px)"/>
    <circle cx="220" cy="130" r="10" fill="#9370DB" filter="blur(3px)"/>
  </g>

  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="150" cy="30" r="1.5"/>
    <circle cx="250" cy="40" r="1"/>
    <circle cx="80" cy="100" r="1.2"/>
    <circle cx="220" cy="60" r="1.3"/>
  </g>
</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 is more creative and visually appealing, with a dynamic use of colors and a clear depiction of the giraffe painting surreal clouds.

    The vibrant strokes add a whimsical touch and effectively convey the surreal theme.

    In contrast, Player 1's image is simpler and less engaging, lacking the imaginative flair seen in Player 2'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
29
Player 2
26
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
16
Player 2
15
Ellipses

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

Player 1
2
Player 2
Lines

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

Player 1
3
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
5
Player 2
9
Groups

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
9

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
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
30
Player 2
25
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
3
Player 2
2
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