Back

SVG Drawing Match #32

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a bowtie, painting clouds on a ceiling with a tiny brush"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="10%" r="75%">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="70%" stop-color="#E0FFFF" />
      <stop offset="100%" stop-color="#fff" />
    </radialGradient>
    <pattern id="giraffe-spots" width="20" height="25" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="12.5" r="8" fill="#CD853F" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#sky)" />
  <path d="M150 300 C 170 250, 170 150, 150 100 C 180 90, 170 80, 150 70" fill="#9ACD32" stroke="#8B4513" stroke-width="2"/>
  <ellipse cx="150" cy="70" rx="20" ry="15" fill="url(#giraffe-spots)" stroke="#8B4513" stroke-width="1.5" />
    <ellipse cx="160" cy="60" rx="5" ry="3"  fill="#000"/>
    <ellipse cx="140" cy="60" rx="5" ry="3"  fill="#000"/>
  <path d="M 140 80 L 160 80 L 155 90 L 145 90 Z" fill="#DA70D6" />
  <path d="M50 120 C 60 100, 100 50, 150 50 C 200 50, 240 100, 250 120 L 50 120 Z" fill="white" stroke="#ADD8E6" stroke-width="2" filter="url(#cloud-glow)" />
    <filter id="cloud-glow">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <path d="M70 100 C 80 80, 120 30, 170 30 C 220 30, 260 80, 270 100 L 70 100 Z" fill="white" stroke="#ADD8E6" stroke-width="2" filter="url(#cloud-glow)" />
  <path d="M100 180 L 110 170 L 115 180" fill="none" stroke="#8B4513" stroke-width="1" stroke-linecap="round"/>
  <rect x="100" y="180" width="2" height="30" fill="#8B4513" transform="rotate(-10 100 180)"/>
  <ellipse cx="108" cy="210" rx="2.5" ry="4" fill="#000" transform="rotate(-10 108 210)"/>

</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeSpots" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#fabe4a" />
      <stop offset="100%" stop-color="#d1873f" />
    </linearGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#87ceeb" />
      <stop offset="100%" stop-color="#4682b4" />
    </linearGradient>
    <pattern id="cloudPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="4" fill="white" />
      <circle cx="2" cy="2" r="3" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M100 250 Q120 150, 140 250 L160 250 Q145 200, 130 200 L115 200 Q105 140, 115 120 Q135 70, 155 120 Q145 140, 155 200" fill="url(#giraffeSpots)" stroke="#d1873f" stroke-width="2" />
  <ellipse cx="130" cy="90" rx="10" ry="15" fill="url(#giraffeSpots)" stroke="#d1873f" stroke-width="2" />
  <circle cx="128" cy="85" r="2" fill="#000" />
  <circle cx="132" cy="85" r="2" fill="#000" />
  <polygon points="125,75 135,75 130,60" fill="#d1873f" />
  <line x1="130" y1="75" x2="130" y2="110" stroke-width="2" stroke="#d1873f" />
  <rect x="160" y="200" width="20" height="10" fill="#fff" stroke="#ccc" stroke-width="2" />
  <line x1="160" y1="200" x2="180" y2="190" stroke-width="2" stroke="#ccc" />
  <polygon points="170,190 175,180 180,190" fill="url(#cloudPattern)" />
  <rect x="85" y="200" width="25" height="10" fill="#000" />
  <path d="M85 205 Q97 195, 110 205" stroke="#ff69b4" stroke-width="2" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better captures the prompt with a recognizable giraffe figure holding a brush, which suggests the act of painting.

    The addition of a bowtie and a palette enhances the creativity and adherence to the prompt.

    Although both images are abstract, Player 2's composition is more cohesive and visually appealing, effectively conveying the whimsical concept of a giraffe painting clouds on a ceiling.

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
12
Player 2
14
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
1
Player 2
4
Ellipses

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

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

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

Player 1
5
Player 2
2
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
6

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
2
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
21
Player 2
10
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
2
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