Back

SVG Drawing Match #1187

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a tuxedo, sipping tea on a cloud"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cloudGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(240,240,255);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(200,200,255);stop-opacity:1" />
    </linearGradient>
    <radialGradient id="giraffeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(255,204,153);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,153,51);stop-opacity:1" />
    </radialGradient>
    <pattern id="tuxedoPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="black" />
      <path d="M0,0 L10,10 M10,0 L0,10" stroke="white" stroke-width="2" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="azure" />
  <path d="M100,180 Q140,150 180,180 T260,180 Q230,210 150,200 T100,180" fill="url(#cloudGradient)" />
  <circle cx="150" cy="120" r="70" fill="url(#giraffeGradient)" />
  <rect x="135" y="160" width="30" height="90" fill="url(#tuxedoPattern)" />
  <path d="M150,160 L140,180 L160,180 Z" fill="black" />
  <path d="M140,110 Q150,90 160,110" fill="white" />
  <ellipse cx="150" cy="95" rx="10" ry="5" fill="black" />
  <path d="M170,130 C180,110 190,110 190,140" stroke="gray" stroke-width="2" fill="none" />
  <circle cx="190" cy="140" r="10" fill="bisque" />
  <path d="M190,130 A5,5 0 0,1 195,140 A5,5 0 0,1 190,150 A5,5 0 0,1 185,140 A5,5 0 0,1 190,130" fill="white" />
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="40%" fy="60%">
      <stop offset="0%" stop-color="#E0FFFF" />
      <stop offset="50%" stop-color="#ADD8E6" />
      <stop offset="100%" stop-color="#FFFFFF" />
    </radialGradient>
    <pattern id="tuxedoStripes" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 0h10v10H0z" fill="black" />
      <path d="M0 5h10" stroke="white" stroke-width="2" />
    </pattern>
  </defs>

  <path d="M100 200c20-50 80-80 140-50c60 30 50 100 20 130c-50 50-150 0-200-40z" fill="url(#cloudGradient)" />
  <ellipse cx="150" cy="220" rx="80" ry="20" fill="#ADD8E6" />


  <rect x="120" y="90" width="60" height="100" fill="papayawhip" />
  <path d="M150 190q10 20 20 0" stroke="black" stroke-width="5" stroke-linecap="round" />
  <circle cx="155" cy="80" r="15" fill="papayawhip" />
  <ellipse cx="155" cy="85" rx="8" ry="10" fill="#FFCC99" />
  <path d="M145 90c-5 10 5 10 10 0" stroke="black" stroke-width="2" stroke-linecap="round" />

  <rect x="130" y="100" width="40" height="60" fill="url(#tuxedoStripes)" />
  <polygon points="110 100 190 100 170 120 130 120" fill="black" />
  <path d="M140 70c-10 30 10 30 0 50" stroke="black" stroke-width="5" stroke-linecap="round" />


  <path d="M190 80c0 10-20 10-20 0" fill="white" stroke="black" stroke-width="2"/>
  <rect x="185" y="75" width="5" height="15" fill="#FFCC99" rx="2"/>

  <ellipse cx="220" cy="90" rx="15" ry="10" fill="white" stroke="black" stroke-width="2" transform="rotate(-20 220 90)" />
    <path d="M220 95c-5 5 0 15 5 10" fill="none" stroke="brown" stroke-width="3" transform="rotate(-20 220 90)"/>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission more effectively captures the whimsical concept of a giraffe in a tuxedo sipping tea on a cloud.

    The composition is clearer, with identifiable elements such as the cloud and the giraffe's elongated neck.

    The technical execution is stronger, with better-defined shapes and a more cohesive color scheme, making it visually appealing and more 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
12
Player 2
16
Rectangles

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

Player 1
3
Player 2
3
Circles

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

Player 1
2
Player 2
1
Ellipses

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

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

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
7

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