Back

SVG Drawing Match #1746

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe flying a kite made of clouds"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>
    <linearGradient id="giraffeSpots" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#D2691E"/>
    </linearGradient>
    <pattern id="giraffePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="url(#giraffeSpots)"/>
    </pattern>
    <radialGradient id="cloudGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.75">
      <stop offset="0%" stop-color="#FFF"/>
      <stop offset="100%" stop-color="#D3D3D3"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <g id="giraffe" transform="translate(20, 160)">
    <path d="M0,0 C10,-30 30,-30 40,0 L35,60 A10,10 0 0,1 25,60 L15,60 A10,10 0 0,1 5,60 Z" fill="url(#giraffePattern)" stroke="#8B4513" stroke-width="2"/>
    <circle cx="20" cy="-20" r="12" fill="url(#giraffePattern)" stroke="#8B4513" stroke-width="2"/>
    <circle cx="15" cy="-26" r="3" fill="#8B4513"/>
    <circle cx="25" cy="-26" r="3" fill="#8B4513"/>
    <path d="M15,-20 L12,-28" stroke="#8B4513" stroke-width="2"/>
    <path d="M25,-20 L28,-28" stroke="#8B4513" stroke-width="2"/>
  </g>
  
  <g id="kite" transform="translate(200, 50)">
    <polygon points="0,0 20,-10 40,0 20,10" fill="url(#cloudGradient)" stroke="#B0C4DE" stroke-width="2"/>
    <path d="M20,10 C25,20 35,40 50,45" fill="none" stroke="#A9A9A9" stroke-width="2"/>
  </g>
  
  <path d="M60,100 Q150,50 200,50" stroke="#A9A9A9" stroke-width="2" fill="none"/>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<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%" stop-color="#64b5f6"/>
      <stop offset="100%" stop-color="#bbdefb"/>
    </linearGradient>
    <radialGradient id="sunGradient" cx="80%" cy="20%" r="50%">
      <stop offset="0%" stop-color="#ffeb3b"/>
      <stop offset="100%" stop-color="#fdd835" stop-opacity="0.6"/>
    </radialGradient>
    <pattern id="cloudPattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse">
      <circle cx="15" cy="15" r="15" fill="white" opacity="0.8"/>
      <circle cx="35" cy="20" r="12" fill="white" opacity="0.8"/>
      <circle cx="20" cy="25" r="10" fill="white" opacity="0.8"/>
    </pattern>
    <filter id="cloudFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
      <feComponentTransfer in="blur" result="opaque">
        <feFuncA type="table" tableValues="0 1 1 1 1"/>
      </feComponentTransfer>
      <feComposite operator="in" in="opaque" in2="SourceGraphic"/>
    </filter>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Sun -->
  <circle cx="260" cy="40" r="25" fill="url(#sunGradient)"/>
  
  <!-- Small clouds in background -->
  <g filter="url(#cloudFilter)">
    <ellipse cx="50" cy="60" rx="25" ry="15" fill="white" opacity="0.8"/>
    <ellipse cx="65" cy="55" rx="20" ry="12" fill="white" opacity="0.8"/>
    <ellipse cx="35" cy="57" rx="15" ry="10" fill="white" opacity="0.8"/>
    
    <ellipse cx="220" cy="80" rx="35" ry="18" fill="white" opacity="0.7"/>
    <ellipse cx="240" cy="75" rx="25" ry="15" fill="white" opacity="0.7"/>
    <ellipse cx="200" cy="75" rx="20" ry="10" fill="white" opacity="0.7"/>
  </g>
  
  <!-- Cloud kite -->
  <g transform="translate(140, 110) rotate(-10)">
    <!-- Kite body made of clouds -->
    <path d="M0,0 L40,-60 L80,0 L40,40 Z" fill="url(#cloudPattern)" filter="url(#cloudFilter)"/>
    
    <!-- Kite details -->
    <line x1="40" y1="-60" x2="40" y2="40" stroke="#e0e0e0" stroke-width="2"/>
    <line x1="0" y1="0" x2="80" y2="0" stroke="#e0e0e0" stroke-width="2"/>
    
    <!-- Kite tail -->
    <path d="M40,40 Q50,50 45,65 Q40,75 50,85 Q60,95 55,110" fill="none" stroke="#e0e0e0" stroke-width="3" stroke-dasharray="1 5"/>
    
    <!-- Kite string -->
    <path d="M40,0 C0,50 -30,80 -60,90" fill="none" stroke="#a1887f" stroke-width="1.5"/>
  </g>
  
  <!-- Giraffe -->
  <g transform="translate(60, 190)">
    <!-- Giraffe body -->
    <ellipse cx="0" cy="0" rx="25" ry="15" fill="#f9c74f"/>
    <path d="M-20,-5 Q-25,-20 -20,-40 Q-15,-55 0,-60 Q5,-58 7,-48 Q11,-55 15,-53 Q20,-30 15,-10 Q10,0 5,0" fill="#f9c74f" stroke="#be8a3c" stroke-width="1"/>
    
    <!-- Giraffe spots -->
    <g fill="#be8a3c">
      <ellipse cx="-15" cy="-3" rx="3" ry="4"/>
      <ellipse cx="-5" cy="3" rx="4" ry="3"/>
      <ellipse cx="8" cy="-5" rx="3" ry="2"/>
      <ellipse cx="-18" cy="-32" rx="2" ry="3"/>
      <ellipse cx="-10" cy="-45" rx="3" ry="2"/>
      <ellipse cx="0" cy="-40" rx="2" ry="3"/>
      <ellipse cx="10" cy="-25" rx="3" ry="2"/>
    </g>
    
    <!-- Giraffe head -->
    <ellipse cx="-18" cy="-53" rx="8" ry="6" fill="#f9c74f"/>
    <circle cx="-22" cy="-54" r="1.5" fill="#43291f"/>
    <path d="M-25,-51 Q-28,-49 -25,-48" fill="none" stroke="#43291f" stroke-width="1" stroke-linecap="round"/>
    
    <!-- Ears and horns -->
    <ellipse cx="-23" cy="-58" rx="2" ry="3" fill="#f9c74f" transform="rotate(20, -23, -58)"/>
    <circle cx="-15" cy="-58" r="1.5" fill="#be8a3c"/>
    <circle cx="-20" cy="-59" r="1.5" fill="#be8a3c"/>
    
    <!-- Legs -->
    <path d="M-15,10 Q-18,25 -20,40" fill="none" stroke="#f9c74f" stroke-width="6" stroke-linecap="round"/>
    <path d="M5,8 Q8,25 10,40" fill="none" stroke="#f9c74f" stroke-width="6" stroke-linecap="round"/>
    
    <!-- Tail -->
    <path d="M20,0 Q25,5 27,15" fill="none" stroke="#f9c74f" stroke-width="3" stroke-linecap="round"/>
    <circle cx="27" cy="17" r="3" fill="#43291f"/>
    
    <!-- Front leg holding string -->
    <path d="M-5,5 Q-30,20 -60,90" fill="none" stroke="#f9c74f" stroke-width="6" stroke-linecap="round"/>
  </g>
  
  <!-- Birds -->
  <g fill="#546e7a">
    <path d="M200,170 Q205,165 210,170 Q215,165 220,170" stroke="#546e7a" stroke-width="1" fill="none"/>
    <path d="M180,150 Q185,145 190,150 Q195,145 200,150" stroke="#546e7a" stroke-width="1" fill="none"/>
    <path d="M230,140 Q235,135 240,140 Q245,135 250,140" stroke="#546e7a" stroke-width="1" fill="none"/>
  </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 more creatively interprets the prompt with a stylized giraffe actively flying a kite made of clouds, incorporating dynamic elements like birds and a sun.

    The composition is visually appealing and adheres closely to the theme.

    In contrast, Player 1's submission, while technically sound, lacks the same level of creativity and thematic integration.

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
11
Player 2
39
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
3
Player 2
8
Ellipses

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

Player 1
Player 2
16
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
5
Player 2
12
Groups

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

Player 1
2
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
11

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
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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