Back

SVG Drawing Match #273

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing roller skates zooming down a rainbow slide"

SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#89CFF0"/>
      <stop offset="100%" stop-color="#ffffff"/>
    </linearGradient>
    <linearGradient id="rainbowSlideGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="red"/>
      <stop offset="16%" stop-color="orange"/>
      <stop offset="33%" stop-color="yellow"/>
      <stop offset="50%" stop-color="green"/>
      <stop offset="66%" stop-color="blue"/>
      <stop offset="83%" stop-color="indigo"/>
      <stop offset="100%" stop-color="violet"/>
    </linearGradient>
    <radialGradient id="giraffeSpotsGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="brown"/>
      <stop offset="100%" stop-color="black"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  <path d="M20,70 Q150,150 280,80 L280,100 Q150,170 20,90 Z" fill="url(#rainbowSlideGradient)"/>
  <g id="speed-lines">
    <line x1="140" y1="105" x2="120" y2="105" stroke="#aaa" stroke-width="1" stroke-linecap="round"/>
    <line x1="135" y1="110" x2="115" y2="110" stroke="#aaa" stroke-width="1" stroke-linecap="round"/>
    <line x1="130" y1="115" x2="110" y2="115" stroke="#aaa" stroke-width="1" stroke-linecap="round"/>
  </g>
  <g id="giraffe" transform="translate(150,110) rotate(10)">
    <!-- Neck -->
    <rect x="-2" y="-30" width="4" height="20" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <!-- Head -->
    <circle cx="0" cy="-35" r="4" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <!-- Ossicones -->
    <rect x="-1.5" y="-42" width="1" height="4" fill="#A0522D"/>
    <rect x="0.5" y="-42" width="1" height="4" fill="#A0522D"/>
    <!-- Eye -->
    <circle cx="1.5" cy="-36" r="0.5" fill="black"/>
    <!-- Spots on Neck -->
    <circle cx="-1" cy="-20" r="0.8" fill="brown"/>
    <circle cx="1" cy="-25" r="1" fill="brown"/>
    <!-- Body -->
    <ellipse cx="0" cy="10" rx="8" ry="12" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <!-- Spots on Body -->
    <circle cx="-3" cy="10" r="1" fill="brown"/>
    <circle cx="2" cy="12" r="1" fill="brown"/>
    <!-- Tail -->
    <path d="M8,10 q3,3 0,6" stroke="#F4A460" stroke-width="1" fill="none"/>
    <!-- Legs & Roller Skates -->
    <!-- Front Left Leg -->
    <rect x="-8" y="18" width="2" height="10" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <circle cx="-7.5" cy="30" r="1" fill="#555"/>
    <circle cx="-6.5" cy="30" r="1" fill="#555"/>
    <!-- Front Right Leg -->
    <rect x="-3" y="18" width="2" height="10" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <circle cx="-2.5" cy="30" r="1" fill="#555"/>
    <circle cx="-1.5" cy="30" r="1" fill="#555"/>
    <!-- Back Left Leg -->
    <rect x="1" y="18" width="2" height="10" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <circle cx="1.5" cy="30" r="1" fill="#555"/>
    <circle cx="2.5" cy="30" r="1" fill="#555"/>
    <!-- Back Right Leg -->
    <rect x="6" y="18" width="2" height="10" fill="#F4A460" stroke="sienna" stroke-width="1"/>
    <circle cx="6.5" cy="30" r="1" fill="#555"/>
    <circle cx="7.5" cy="30" r="1" fill="#555"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for reusable elements -->
  <defs>
    <!-- Rainbow gradient for slide -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0066" />
      <stop offset="16.6%" stop-color="#ff6600" />
      <stop offset="33.3%" stop-color="#ffcc00" />
      <stop offset="50%" stop-color="#33cc33" />
      <stop offset="66.6%" stop-color="#0099ff" />
      <stop offset="83.3%" stop-color="#6633cc" />
      <stop offset="100%" stop-color="#cc00cc" />
    </linearGradient>
    
    <!-- Rainbow edge gradient -->
    <linearGradient id="rainbowEdgeGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff99aa" />
      <stop offset="50%" stop-color="#ccffcc" />
      <stop offset="100%" stop-color="#ccaaff" />
    </linearGradient>
    
    <!-- Giraffe base color -->
    <linearGradient id="giraffeBase" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f9eabc" />
      <stop offset="100%" stop-color="#f5d789" />
    </linearGradient>
    
    <!-- Giraffe spot pattern -->
    <pattern id="giraffePattern" patternUnits="userSpaceOnUse" width="30" height="30">
      <rect width="30" height="30" fill="url(#giraffeBase)"/>
      <path d="M5,5 Q10,0 15,5 Q20,10 15,15 Q10,20 5,15 Q0,10 5,5Z" fill="#bb7722" />
      <path d="M20,20 Q25,15 30,20 Q35,25 30,30 Q25,35 20,30 Q15,25 20,20Z" fill="#bb7722" />
    </pattern>
    
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#6699ff" />
      <stop offset="100%" stop-color="#99ccff" />
    </linearGradient>
    
    <!-- Sparkle filter -->
    <filter id="sparkleFilter" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur" />
      <feColorMatrix in="blur" type="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 18 -7" result="glow" />
      <feBlend in="SourceGraphic" in2="glow" mode="screen" />
    </filter>
    
    <!-- Cloud filter -->
    <filter id="cloudFilter" x="-10%" y="-10%" width="120%" height="120%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" />
    </filter>
  </defs>
  
  <!-- Sky background with gradient -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Sun with rays and glow -->
  <g transform="translate(250,50)">
    <circle cx="0" cy="0" r="15" fill="#ffee00" />
    <circle cx="0" cy="0" r="20" fill="#ffee00" fill-opacity="0.5" />
    <circle cx="0" cy="0" r="25" fill="#ffee00" fill-opacity="0.2" />
    
    <!-- Sun rays -->
    <g stroke="#ffee00" stroke-width="2" stroke-linecap="round">
      <line x1="0" y1="-30" x2="0" y2="-40" />
      <line x1="21" y1="-21" x2="28" y2="-28" />
      <line x1="30" y1="0" x2="40" y2="0" />
      <line x1="21" y1="21" x2="28" y2="28" />
      <line x1="0" y1="30" x2="0" y2="40" />
      <line x1="-21" y1="21" x2="-28" y2="28" />
      <line x1="-30" y1="0" x2="-40" y2="0" />
      <line x1="-21" y1="-21" x2="-28" y2="-28" />
    </g>
  </g>
  
  <!-- Clouds -->
  <g fill="white" filter="url(#cloudFilter)">
    <path d="M40,40 Q55,30 70,35 Q80,25 95,30 Q105,20 115,30 Q125,25 135,35 Q125,45 105,45 Q85,50 65,45 Q50,50 40,40 Z" />
    <path d="M180,25 Q195,15 210,20 Q220,10 235,15 Q245,10 255,20 Q265,15 275,25 Q255,35 235,30 Q215,40 195,30 Q185,35 180,25 Z" />
    <path d="M10,70 Q25,60 35,65 Q40,55 50,60 Q60,55 65,65 Q55,75 40,75 Q25,80 10,70 Z" />
  </g>
  
  <!-- Hills in the background -->
  <path d="M-10,300 Q50,250 100,270 Q150,240 200,280 Q250,260 310,300" fill="#99dd88" />
  
  <!-- Rainbow slide - main path -->
  <path d="M40,80 C90,70 120,90 145,130 C170,170 200,210 260,250" 
        stroke="url(#rainbowGradient)" stroke-width="30" fill="none" stroke-linecap="round" />
  
  <!-- Rainbow slide - inner highlight -->
  <path d="M40,80 C90,70 120,90 145,130 C170,170 200,210 260,250" 
        stroke="url(#rainbowEdgeGradient)" stroke-width="28" fill="none" stroke-opacity="0.3" stroke-linecap="round" />
  
  <!-- Rainbow slide - edges for definition -->
  <path d="M40,80 C90,70 120,90 145,130 C170,170 200,210 260,250" 
        stroke="white" stroke-width="1" fill="none" stroke-opacity="0.7" stroke-linecap="round" />
  <path d="M40,80 C90,70 120,90 145,130 C170,170 200,210 260,250" 
        stroke="white" stroke-width="1" fill="none" stroke-opacity="0.7" stroke-linecap="round" 
        transform="translate(0,30)" />
  
  <!-- Stars/sparkles along the slide -->
  <g fill="white" filter="url(#sparkleFilter)">
    <circle cx="50" cy="80" r="1.5">
      <animate attributeName="opacity" values="1;0.3;1" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="80" cy="75" r="1">
      <animate attributeName="opacity" values="0.3;1;0.3" dur="1.7s" repeatCount="indefinite" />
    </circle>
    <circle cx="110" cy="90" r="1.5">
      <animate attributeName="opacity" values="0.5;1;0.5" dur="1.3s" repeatCount="indefinite" />
    </circle>
    <circle cx="135" cy="115" r="1">
      <animate attributeName="opacity" values="1;0.5;1" dur="1.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="155" cy="145" r="1.5">
      <animate attributeName="opacity" values="0.3;0.8;0.3" dur="1.8s" repeatCount="indefinite" />
    </circle>
    <circle cx="180" cy="175" r="1">
      <animate attributeName="opacity" values="0.7;0.2;0.7" dur="1.6s" repeatCount="indefinite" />
    </circle>
    <circle cx="210" cy="210" r="1.5">
      <animate attributeName="opacity" values="0.4;1;0.4" dur="2.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="240" cy="235" r="1">
      <animate attributeName="opacity" values="1;0.3;1" dur="1.9s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- End of slide splash/water effect -->
  <path d="M260,250 C270,255 280,250 285,245 C290,240 295,235 300,245" 
        stroke="#99ccff" stroke-width="5" stroke-opacity="0.7" fill="none" />
  <circle cx="270" cy="250" r="5" fill="#99ccff" fill-opacity="0.5" />
  <circle cx="280" cy="245" r="3" fill="#99ccff" fill-opacity="0.5" />
  <circle cx="290" cy="240" r="4" fill="#99ccff" fill-opacity="0.5" />
  
  <!-- Speed/motion lines -->
  <g stroke="white" stroke-width="1.5" stroke-opacity="0.8">
    <path d="M140,120 L125,115" />
    <path d="M145,130 L130,125" />
    <path d="M155,145 L140,140" />
    <path d="M165,160 L150,155" />
    <path d="M175,175 L160,170" />
    <path d="M190,195 L175,190" />
    <path d="M205,210 L190,205" />
    <path d="M220,225 L205,220" />
    <path d="M235,240 L220,235" />
  </g>
  
  <!-- The Giraffe -->
  <g transform="translate(165,170) rotate(-20)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="22" ry="15" fill="url(#giraffePattern)" stroke="#bb7722" stroke-width="1" />
    
    <!-- Neck -->
    <path d="M-10,-7 C-15,-25 -15,-50 -5,-70" 
          stroke-width="12" stroke="url(#giraffePattern)" fill="none" stroke-linecap="round" />
    
    <!-- Head -->
    <ellipse cx="-5" cy="-75" rx="9" ry="7" fill="url(#giraffePattern)" stroke="#bb7722" stroke-width="1" />
    
    <!-- Ears -->
    <ellipse cx="-10" cy="-78" rx="2.5" ry="3.5" fill="#bb7722" transform="rotate(-15, -10, -78)" />
    <ellipse cx="0" cy="-78" rx="2.5" ry="3.5" fill="#bb7722" transform="rotate(15, 0, -78)" />
    
    <!-- Face details -->
    <circle cx="-7" cy="-77" r="1.2" fill="black" /> <!-- eye -->
    <circle cx="-6.5" cy="-77.5" r="0.4" fill="white" /> <!-- eye highlight -->
    <path d="M-4,-72 C-2,-71 0,-71 2,-72" fill="none" stroke="black" stroke-width="0.7" /> <!-- smile -->
    <ellipse cx="-2" cy="-74" rx="1.5" ry="1" fill="#bb7722" /> <!-- nose -->
    
    <!-- Ossicones (horns) -->
    <path d="M-9,-82 L-11,-87" stroke="#bb7722" stroke-width="2" stroke-linecap="round" />
    <path d="M-1,-82 L1,-87" stroke="#bb7722" stroke-width="2" stroke-linecap="round" />
    
    <!-- Hair tuft -->
    <path d="M-9,-82 C-10,-83 -10,-84 -9,-85" stroke="#bb7722" stroke-width="1" fill="none" />
    <path d="M-1,-82 C0,-83 0,-84 -1,-85" stroke="#bb7722" stroke-width="1" fill="none" />
    
    <!-- Legs -->
    <path d="M-12,10 L-17,25" stroke="url(#giraffePattern)" stroke-width="7" stroke-linecap="round" />
    <path d="M12,10 L17,25" stroke="url(#giraffePattern)" stroke-width="7" stroke-linecap="round" />
    <path d="M-9,-7 L-14,10" stroke="url(#giraffePattern)" stroke-width="7" stroke-linecap="round" />
    <path d="M9,-7 L14,10" stroke="url(#giraffePattern)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tail -->
    <path d="M15,0 C20,3 23,7 21,12" stroke="#bb7722" stroke-width="2" fill="none" />
    <ellipse cx="21" cy="12" rx="2" ry="3" fill="#bb7722" transform="rotate(30, 21, 12)" />
    
    <!-- Roller skates -->
    <!-- Front left -->
    <g transform="translate(-17,25) rotate(15)">
      <rect x="-7" y="0" width="14" height="5" rx="2" fill="#ff3399" stroke="#cc0066" stroke-width="0.5" />
      <rect x="-6" y="-3" width="12" height="3" rx="1" fill="#ffaacc" stroke="#cc0066" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="0.8" fill="#999" />
      <circle cx="4" cy="5" r="0.8" fill="#999" />
    </g>
    
    <!-- Front right -->
    <g transform="translate(17,25) rotate(-15)">
      <rect x="-7" y="0" width="14" height="5" rx="2" fill="#ff3399" stroke="#cc0066" stroke-width="0.5" />
      <rect x="-6" y="-3" width="12" height="3" rx="1" fill="#ffaacc" stroke="#cc0066" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="0.8" fill="#999" />
      <circle cx="4" cy="5" r="0.8" fill="#999" />
    </g>
    
    <!-- Back left -->
    <g transform="translate(-14,10) rotate(30)">
      <rect x="-7" y="0" width="14" height="5" rx="2" fill="#ff3399" stroke="#cc0066" stroke-width="0.5" />
      <rect x="-6" y="-3" width="12" height="3" rx="1" fill="#ffaacc" stroke="#cc0066" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="0.8" fill="#999" />
      <circle cx="4" cy="5" r="0.8" fill="#999" />
    </g>
    
    <!-- Back right -->
    <g transform="translate(14,10) rotate(-20)">
      <rect x="-7" y="0" width="14" height="5" rx="2" fill="#ff3399" stroke="#cc0066" stroke-width="0.5" />
      <rect x="-6" y="-3" width="12" height="3" rx="1" fill="#ffaacc" stroke="#cc0066" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="4" cy="5" r="2.5" fill="#333" stroke="#000" stroke-width="0.5" />
      <circle cx="-4" cy="5" r="0.8" fill="#999" />
      <circle cx="4" cy="5" r="0.8" fill="#999" />
    </g>
    
    <!-- Motion blur lines behind the giraffe -->
    <g stroke="white" stroke-opacity="0.6" stroke-width="1" transform="translate(-25,0) rotate(20)">
      <line x1="0" y1="-5" x2="-15" y2="-5" />
      <line x1="0" y1="0" x2="-20" y2="0" />
      <line x1="0" y1="5" x2="-15" y2="5" />
      <line x1="-5" y1="-10" x2="-15" y2="-10" />
      <line x1="-5" y1="10" x2="-15" y2="10" />
    </g>
  </g>
  
  <!-- Excitement elements around the giraffe -->
  <g fill="none" stroke="#ffcc00" stroke-width="1.5" stroke-linecap="round">
    <path d="M180,130 L185,120" />
    <path d="M183,130 L193,125" />
    
    <path d="M160,120 L155,110" />
    <path d="M157,120 L147,115" />
    
    <path d="M210,180 L220,175" />
    <path d="M213,183 L223,183" />
  </g>
  
  <!-- Air bubbles at end of slide -->
  <circle cx="270" cy="250" r="3" fill="white" fill-opacity="0.7" />
  <circle cx="275" cy="245" r="2" fill="white" fill-opacity="0.5" />
  <circle cx="280" cy="248" r="1.5" fill="white" fill-opacity="0.6" />
  <circle cx="285" cy="243" r="2.5" fill="white" fill-opacity="0.4" />
  
  <!-- Landing area (grass) -->
  <path d="M0,280 C50,275 100,285 150,280 C200,275 250,285 300,280 L300,300 L0,300 Z" fill="#88cc77" />
  
  <!-- Grass tufts -->
  <g fill="#66aa55">
    <path d="M20,280 C25,275 30,277 35,280" />
    <path d="M60,280 C65,274 70,276 75,280" />
    <path d="M100,280 C105,273 110,275 115,280" />
    <path d="M140,280 C145,275 150,277 155,280" />
    <path d="M180,280 C185,274 190,276 195,280" />
    <path d="M220,280 C225,275 230,277 235,280" />
    <path d="M260,280 C265,273 270,275 275,280" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission excels in creativity, technical quality, and visual appeal.

    The giraffe is depicted dynamically zooming down a vividly colored rainbow slide, complete with expressive motion lines and a sunny background that enhances the scene.

    In contrast, Player 1's image is simpler and lacks the same level of detail and adherence to 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
28
Player 2
110
Rectangles

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

Player 1
8
Player 2
10
Circles

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

Player 1
14
Player 2
36
Ellipses

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

Player 1
1
Player 2
6
Lines

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

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

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

Player 1
2
Player 2
13

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
27

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
8
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
1
Player 2
11

Complexity Metrics

Path Commands

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

Player 1
7
Player 2
128
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

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