Back

SVG Drawing Match #1005

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a top hat, sipping tea on a floating lily pad"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#FFFACD"/>
    </linearGradient>
    <radialGradient id="teaCupGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff" />
      <stop offset="100%" stop-color="#ccc" />
    </radialGradient>
    <radialGradient id="lilyPadGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#7CFC00"/>
      <stop offset="100%" stop-color="#32CD32"/>
    </radialGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4B3621"/>
      <stop offset="100%" stop-color="#000"/>
    </linearGradient>
  </defs>
  
  <!-- Background sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Floating Lily Pad -->
  <ellipse cx="150" cy="220" rx="70" ry="25" fill="url(#lilyPadGradient)" stroke="#2E8B57" stroke-width="2"/>
  <ellipse cx="150" cy="220" rx="61" ry="20" fill="none" stroke="#006400" stroke-dasharray="4,4"/>

  <!-- Teacup -->
  <g transform="translate(115,185)">
    <path d="M0,20 C0,5 40,5 40,20 L40,30 C40,35 0,35 0,30 Z" fill="url(#teaCupGradient)" stroke="#888" stroke-width="1"/>
    <path d="M40,20 C50,25 50,30 40,30" fill="none" stroke="#888" stroke-width="1"/>
    <circle cx="20" cy="18" r="1.5" fill="#888"/>
  </g>

  <!-- Giraffe Body (abstract form) -->
  <g transform="translate(135,100)">
    <!-- Body -->
    <ellipse cx="0" cy="35" rx="20" ry="35" fill="#F4A460" stroke="#D2691E" stroke-width="1"/>
    <!-- Spots -->
    <circle cx="-8" cy="25" r="3" fill="#D2691E"/>
    <circle cx="8" cy="40" r="4" fill="#D2691E"/>
    <circle cx="5" cy="15" r="3" fill="#D2691E"/>
    <circle cx="-6" cy="45" r="3" fill="#D2691E"/>
  </g>
  
  <!-- Giraffe Neck and Head -->
  <g transform="translate(148,70)">
    <!-- Neck -->
    <rect x="-3" y="0" width="6" height="30" fill="#F4A460" stroke="#D2691E" stroke-width="1"/>
    <!-- Head -->
    <ellipse cx="0" cy="-6" rx="10" ry="7" fill="#F4A460" stroke="#D2691E" stroke-width="1"/>
    <!-- ears -->
    <path d="M-5,-10 q-2,-4 -1,-6" fill="none" stroke="#D2691E" stroke-width="1"/>
    <path d="M5,-10 q2,-4 1,-6" fill="none" stroke="#D2691E" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="-3" cy="-7" r="1" fill="#000"/>
    <circle cx="3" cy="-7" r="1" fill="#000"/>
    <!-- Mouth -->
    <path d="M-3,-3 q3,2 6,0" fill="none" stroke="#A0522D" stroke-width="0.8"/>
  </g>

  <!-- Giraffe Top Hat -->
  <g transform="translate(135,40)">
    <!-- Brim -->
    <ellipse cx="0" cy="0" rx="12" ry="2" fill="url(#hatGradient)"/>
    <!-- Top hat body -->
    <rect x="-6" y="-20" width="12" height="20" fill="url(#hatGradient)" stroke="#000" stroke-width="0.5"/>
    <!-- Hat band -->
    <rect x="-6" y="-8" width="12" height="2" fill="#DAA520"/>
  </g>
  
  <!-- Giraffe sipping tea (Arm) -->
  <path d="M130,120 Q100,140 115,175" fill="none" stroke="#F4A460" stroke-width="4" stroke-linecap="round"/>
</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="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4FA1FF"/>
      <stop offset="100%" style="stop-color:#1E47A8"/>
    </linearGradient>
    <pattern id="lilyPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="#2D7243"/>
      <circle cx="10" cy="10" r="6" fill="#3D9959"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)"/>
  
  <!-- Lily pad -->
  <ellipse cx="150" cy="200" rx="120" ry="40" fill="url(#lilyPattern)"/>
  <ellipse cx="150" cy="200" rx="120" ry="40" fill="#4CAF50" opacity="0.5"/>

  <!-- Giraffe body -->
  <path d="M120 180 Q150 80 160 60 L170 150 Q180 170 190 180" fill="#FFE5A8"/>
  <path d="M140 180 Q160 160 180 180" fill="#FFD980"/>
  
  <!-- Spots -->
  <g fill="#B87D3D">
    <circle cx="145" cy="90" r="8"/>
    <circle cx="165" cy="110" r="7"/>
    <circle cx="155" cy="130" r="9"/>
    <circle cx="170" cy="150" r="6"/>
    <circle cx="150" cy="160" r="8"/>
  </g>

  <!-- Top hat -->
  <rect x="145" y="30" width="30" height="8" fill="#1A1A1A"/>
  <rect x="150" y="10" width="20" height="20" fill="#1A1A1A"/>
  <rect x="152" y="15" width="16" height="3" fill="#CC0000"/>

  <!-- Teacup -->
  <path d="M185 170 Q195 165 195 160 L200 160 Q210 165 200 170 Z" fill="#FFFFFF"/>
  <ellipse cx="192" cy="170" rx="10" ry="5" fill="#F0F0F0"/>
  
  <!-- Steam -->
  <path d="M190 155 Q195 150 193 145 Q191 140 195 135" fill="none" stroke="#FFFFFF" stroke-width="2" opacity="0.6"/>

  <!-- Giraffe face -->
  <path d="M155 65 Q160 60 165 65" fill="none" stroke="#B87D3D" stroke-width="2"/>
  <circle cx="157" cy="63" r="2" fill="#1A1A1A"/>
  <circle cx="163" cy="63" r="2" fill="#1A1A1A"/>

  <!-- Water ripples -->
  <g stroke="#FFFFFF" stroke-width="1" fill="none" opacity="0.3">
    <circle cx="150" cy="200" r="130"/>
    <circle cx="150" cy="200" r="140"/>
    <circle cx="150" cy="200" r="150"/>
  </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 more effectively captures the whimsical idea of a giraffe sipping tea on a floating lily pad.

    The composition is cohesive with the giraffe's form and the top hat integrated into a well-defined scene, showing technical proficiency and creativity.

    In contrast, Player 1's image struggles with proportion and clarity, making it less visually appealing and coherent 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
22
Player 2
24
Rectangles

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

Player 1
4
Player 2
4
Circles

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

Player 1
7
Player 2
12
Ellipses

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

Player 1
5
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
Paths

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

Player 1
6
Player 2
5
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
10

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