Back

SVG Drawing Match #1008

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a top hat surfing on a rainbow wave"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <defs>
    <!-- Sky Gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>

    <!-- Rainbow Gradient -->
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16%" stop-color="#FF7F00"/>
      <stop offset="33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66%" stop-color="#0000FF"/>
      <stop offset="83%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#9400D3"/>
    </linearGradient>

    <!-- Giraffe Spot Pattern -->
    <pattern id="spotsPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#F4D03F"/>
      <circle cx="10" cy="10" r="4" fill="#CD853F" />
    </pattern>
  </defs>

  <!-- Rainbow Wave -->
  <path d="M0,220 Q75,170 150,220 T300,220 L300,300 L0,300 Z" fill="url(#rainbowGradient)"/>

  <!-- Surfboard -->
  <ellipse cx="150" cy="200" rx="50" ry="12" fill="#FFFFFF" stroke="#CCCCCC" stroke-width="2"/>

  <!-- Giraffe Body -->
  <g id="giraffe">
    <!-- Body -->
    <ellipse cx="150" cy="160" rx="18" ry="30" fill="url(#spotsPattern)" stroke="#A67C52" stroke-width="1.5"/>
    <!-- Neck -->
    <rect x="145" y="90" width="10" height="70" fill="url(#spotsPattern)" stroke="#A67C52" stroke-width="1.2"/>
    <!-- Head -->
    <ellipse cx="150" cy="80" rx="12" ry="10" fill="url(#spotsPattern)" stroke="#A67C52" stroke-width="1.2"/>
    <!-- Ear -->
    <path d="M143,72 Q141,66 146,65 Q148,68 145,72" fill="#F4D03F"/>
    <!-- Ossicone -->
    <rect x="148" y="60" width="4" height="10" fill="#D2B48C" stroke="#A67C52" stroke-width="0.8"/>
    <!-- Eyes -->
    <circle cx="155" cy="78" r="1.5" fill="#333333"/>
    <!-- Smile -->
    <path d="M146,83 Q150,86 154,83" fill="none" stroke="#333333" stroke-width="0.7"/>
  </g>

  <!-- Top Hat -->
  <g id="topHat">
    <!-- Brim -->
    <rect x="140" y="55" width="20" height="3" fill="#000000"/>
    <!-- Crown -->
    <rect x="144" y="35" width="12" height="20" fill="#000000" stroke="#333333" stroke-width="0.5"/>
    <!-- Inner hat detail -->
    <rect x="146" y="38" width="8" height="5" fill="#555555"/>
  </g>

  <!-- Position Giraffe and Top Hat Together (Group transformation) -->
  <g transform="translate(0,0)">
    <use href="#giraffe"/>
    <!-- Position top hat above head -->
    <use href="#topHat" transform="translate(0,0)"/>
  </g>

  <!-- Surfing motion accent lines -->
  <path d="M110,200 Q150,190 190,200" stroke="rgba(255,255,255,0.7)" stroke-width="2" fill="none" stroke-dasharray="4,2"/>
  <path d="M115,205 Q150,195 185,205" stroke="rgba(255,255,255,0.7)" stroke-width="2" fill="none" stroke-dasharray="4,2"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.6%" stop-color="#FF7F00"/>
      <stop offset="33.3%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.6%" stop-color="#0000FF"/>
      <stop offset="83.3%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8B00FF"/>
    </linearGradient>
    <radialGradient id="waveShadow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="rgba(0,0,0,0.2)"/>
      <stop offset="100%" stop-color="rgba(0,0,0,0)"/>
    </radialGradient>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <linearGradient id="surfboardGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF4500"/>
    </linearGradient>
  </defs>

  <!-- Rainbow Wave -->
  <path d="M0,200 C50,150 250,250 300,200 L300,300 L0,300 Z" fill="url(#rainbow)" />
  <path d="M0,200 C50,160 250,240 300,200 L300,300 L0,300 Z" fill="url(#waveShadow)" />

  <!-- Surfboard -->
  <ellipse cx="150" cy="180" rx="60" ry="15" fill="url(#surfboardGradient)" />
  <rect x="140" y="160" width="20" height="40" fill="#654321" transform="rotate(-20 150 180)" />

  <!-- Giraffe Body -->
  <g transform="translate(100,80)">
    <!-- Body -->
    <ellipse cx="50" cy="150" rx="30" ry="50" fill="#FCD9B6" stroke="#DAA520" stroke-width="2"/>
    <!-- Legs -->
    <rect x="35" y="200" width="5" height="30" fill="#FCD9B6" stroke="#DAA520" stroke-width="1"/>
    <rect x="60" y="200" width="5" height="30" fill="#FCD9B6" stroke="#DAA520" stroke-width="1"/>
    <!-- Neck -->
    <rect x="70" y="100" width="10" height="60" fill="#FCD9B6" stroke="#DAA520" stroke-width="2"/>
    <!-- Head -->
    <circle cx="75" cy="100" r="15" fill="#FCD9B6" stroke="#DAA520" stroke-width="2"/>
    <!-- Ears -->
    <polygon points="68,95 65,90 70,90" fill="#FCD9B6" stroke="#DAA520" stroke-width="1"/>
    <polygon points="82,95 85,90 80,90" fill="#FCD9B6" stroke="#DAA520" stroke-width="1"/>
    <!-- Spots -->
    <circle cx="50" cy="140" r="3" fill="#DAA520"/>
    <circle cx="60" cy="160" r="4" fill="#DAA520"/>
    <circle cx="55" cy="180" r="2" fill="#DAA520"/>
    <!-- Top Hat -->
    <rect x="68" y="80" width="14" height="6" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
    <rect x="65" y="86" width="20" height="4" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
    <rect x="63" y="90" width="24" height="2" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
  </g>

  <!-- Background Elements -->
  <circle cx="280" cy="20" r="10" fill="#FFD700" />
  <circle cx="20" cy="40" r="5" fill="#FFD700" />
  <circle cx="250" cy="50" r="8" fill="#FFA500" />
  <circle cx="50" cy="10" r="6" fill="#FF4500" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission is more dynamic and visually engaging, with a more expressive pose and a vibrant background that suggests movement.

    While both images adhere to the prompt, Player 2's composition and use of color create a more appealing and imaginative rendition of the concept.

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
17
Player 2
21
Rectangles

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

Player 1
7
Player 2
7
Circles

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

Player 1
2
Player 2
8
Ellipses

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

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

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
4
Patterns

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

Player 1
1
Player 2
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
9
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
18

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
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
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
3
Player 2
4
Use Elements

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

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