Back

SVG Drawing Match #1509

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a top hat, juggling three colorful umbrellas"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#DAA520;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="hatGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#555555;stop-opacity:1" />
    </radialGradient>
    <pattern id="umbrellaPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="4" fill="limegreen"/>
      <circle cx="5" cy="5" r="2" fill="orange"/>
    </pattern>
  </defs>
  
  <rect width="100%" height="100%" fill="#87CEEB" />
  
  <g>
    <path d="M150 150 C130 70, 210 50, 180 120 C150 190, 120 180, 150 150 Z" fill="url(#giraffeGradient)" />
    <path d="M145 75 C143 45, 157 45, 155 75 C154 95, 148 95, 150 75 Z" fill="url(#giraffeGradient)" />
    
    <rect x="135" y="40" width="30" height="10" fill="url(#hatGradient)" />
    <rect x="128" y="30" width="45" height="10" fill="url(#hatGradient)" />
    
    <circle cx="150" cy="155" r="10" fill="saddlebrown" />
    <path d="M140 145 C130 175, 170 175, 160 145 Z" fill="#8B4513" />
    
    <path d="M120 135 L150 115 L180 135" fill="none" stroke="blue" stroke-width="4" />
    <path d="M110 125 L150 105 L190 125" fill="none" stroke="red" stroke-width="4" />
    <path d="M130 110 L150 90 L170 110" fill="none" stroke="yellow" stroke-width="4" />
    
    <g fill="url(#umbrellaPattern)">
      <ellipse cx="150" cy="105" rx="25" ry="10" />
      <ellipse cx="180" cy="145" rx="25" ry="10" />
      <ellipse cx="120" cy="145" rx="25" ry="10" />
    </g>
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradients for giraffe body -->
    <linearGradient id="giraffeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#f5d76e"/>
      <stop offset="100%" stop-color="#f7ca18"/>
    </linearGradient>
    <!-- Pattern for giraffe spots -->
    <pattern id="spotsPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="#d4ac0d" />
    </pattern>
    <!-- Gradients for umbrellas -->
    <radialGradient id="umbrellaRed" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff4b4b"/>
      <stop offset="100%" stop-color="#a80000"/>
    </radialGradient>
    <radialGradient id="umbrellaBlue" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4b9eff"/>
      <stop offset="100%" stop-color="#0047b3"/>
    </radialGradient>
    <radialGradient id="umbrellaGreen" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#4bff88"/>
      <stop offset="100%" stop-color="#00804d"/>
    </radialGradient>
    <!-- Gradient for top hat -->
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#333"/>
      <stop offset="100%" stop-color="#000"/>
    </linearGradient>
    <!-- Shadow filter -->
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000" flood-opacity="0.3"/>
    </filter>
  </defs>
  
  <!-- Giraffe neck and body -->
  <g id="giraffe">
    <!-- Neck -->
    <path d="M150,100 C140,150 140,200 150,250" stroke="none" fill="url(#giraffeGradient)" filter="url(#shadow)"/>
    <!-- Body -->
    <ellipse cx="150" cy="250" rx="20" ry="15" fill="url(#giraffeGradient)" filter="url(#shadow)"/>
    <!-- Spots -->
    <ellipse cx="144" cy="140" rx="2" ry="2" fill="url(#spotsPattern)"/>
    <ellipse cx="156" cy="160" rx="2" ry="2" fill="url(#spotsPattern)"/>
    <ellipse cx="148" cy="180" rx="2" ry="2" fill="url(#spotsPattern)"/>
  </g>
  
  <!-- Giraffe head -->
  <g id="head" transform="translate(150,90)" filter="url(#shadow)">
    <!-- Head shape -->
    <ellipse cx="0" cy="0" rx="10" ry="12" fill="url(#giraffeGradient)" />
    <!-- Ears -->
    <path d="M-7,-8 L-11,-16 L-6,-15 Z" fill="url(#giraffeGradient)" />
    <path d="M7,-8 L11,-16 L6,-15 Z" fill="url(#giraffeGradient)" />
    <!-- Eyes -->
    <circle cx="-3" cy="-2" r="1.5" fill="#000"/>
    <circle cx="3" cy="-2" r="1.5" fill="#000"/>
  </g>
  
  <!-- Top Hat on giraffe -->
  <g id="topHat" transform="translate(140,60)" filter="url(#shadow)">
    <!-- Brim -->
    <rect x="0" y="12" width="20" height="3" fill="url(#hatGradient)"/>
    <!-- Hat body -->
    <rect x="4" y="-10" width="12" height="22" fill="url(#hatGradient)"/>
  </g>
  
  <!-- Umbrellas (juggled) -->
  <!-- Umbrella 1 -->
  <g id="umbrella1" transform="rotate(-20,150,140)" filter="url(#shadow)">
    <path d="M130,80 Q150,60 170,80 L170,83 Q150,65 130,83 Z" fill="url(#umbrellaRed)"/>
    <line x1="150" y1="83" x2="150" y2="100" stroke="#555" stroke-width="2"/>
  </g>
  
  <!-- Umbrella 2 -->
  <g id="umbrella2" transform="rotate(10,150,140)" filter="url(#shadow)">
    <path d="M140,50 Q150,30 160,50 L160,53 Q150,35 140,53 Z" fill="url(#umbrellaBlue)"/>
    <line x1="150" y1="53" x2="150" y2="70" stroke="#555" stroke-width="2"/>
  </g>
  
  <!-- Umbrella 3 -->
  <g id="umbrella3" transform="rotate(30,150,140)" filter="url(#shadow)">
    <path d="M120,70 Q150,40 180,70 L180,73 Q150,45 120,73 Z" fill="url(#umbrellaGreen)"/>
    <line x1="150" y1="73" x2="150" y2="90" stroke="#555" stroke-width="2"/>
  </g>
  
  <!-- Giraffe legs -->
  <g id="legs" filter="url(#shadow)">
    <rect x="145" y="245" width="4" height="10" fill="url(#giraffeGradient)" />
    <rect x="151" y="245" width="4" height="10" fill="url(#giraffeGradient)" />
  </g>
  
  <!-- Whimsical background splatters -->
  <g id="background">
    <circle cx="260" cy="40" r="8" fill="rgba(255,0,0,0.3)"/>
    <circle cx="30" cy="270" r="12" fill="rgba(0,0,255,0.3)"/>
    <circle cx="280" cy="260" r="6" fill="rgba(0,255,0,0.3)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt by clearly depicting a giraffe wearing a top hat and juggling three colorful umbrellas.

    The composition is more balanced, and the visual elements are distinct and well-organized.

    Player 1's image is less clear, with overlapping elements that make it difficult to distinguish the giraffe and umbrellas.

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
15
Player 2
24
Rectangles

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

Player 1
3
Player 2
4
Circles

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

Player 1
3
Player 2
6
Ellipses

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

Player 1
3
Player 2
5
Lines

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

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

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

Player 1
2
Player 2
8

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
16

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
5

Complexity Metrics

Path Commands

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

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