Back

SVG Drawing Match #2790

May 25, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe on roller skates juggling pineapples under a disco ball."

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#F5C24D;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#D89F3B;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="discoBallGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#fff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#bbb;stop-opacity:0.7" />
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
      <feOffset dx="2" dy="3" result="offsetBlur"/>
      <feFlood flood-color="rgba(0,0,0,0.5)"/>
      <feComposite in2="offsetBlur" operator="in"/>
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="50" r="30" fill="url(#discoBallGrad)" filter="url(#shadow)" />
  <g stroke="#fff" stroke-width="1">
    <line x1="125" y1="50" x2="175" y2="50"/>
    <line x1="150" y1="20" x2="150" y2="80"/>
  </g>

  <!-- Giraffe Body -->
  <g fill="url(#giraffeGrad)" filter="url(#shadow)">
    <path d="M135,250 L165,250 Q160,200 150,180 Q140,200 135,250 Z" />
    <path d="M130,250 L120,260 Q110,300 120,280 Q130,290 130,250 Z" fill="#A88A56" />
  </g>

  <!-- Giraffe Neck -->
  <g fill="url(#giraffeGrad)">
    <path d="M145,180 Q150,130 160,130 Q170,140 175,180 Q160,160 145,180 Z"/>
    <circle cx="160" cy="120" r="8" fill="#A88A56" />
    <circle cx="150" cy="120" r="8" fill="#A88A56" />
  </g>

  <!-- Giraffe Legs on Roller Skates -->
  <g fill="#B94828">
    <rect x="135" y="250" width="10" height="30" rx="5" />
    <rect x="155" y="250" width="10" height="30" rx="5" />
    <circle cx="140" cy="280" r="6" fill="#FFC107" />
    <circle cx="160" cy="280" r="6" fill="#FFC107" />
  </g>

  <!-- Pineapples -->
  <g fill="#F39C12">
    <ellipse cx="100" cy="100" rx="10" ry="15" />
    <ellipse cx="100" cy="100" rx="15" ry="10" transform="rotate(30 100 100)" />
    <polygon points="95,88 105,88 100,78" fill="#1D7A1E" />
    <ellipse cx="190" cy="100" rx="10" ry="15" transform="translate(0,40)" />
    <ellipse cx="190" cy="100" rx="15" ry="10" transform="rotate(30 190 100) translate(0,40)" />
    <polygon points="185,88 195,88 190,78" fill="#1D7A1E" />
  </g>

  <!-- Juggling Animation -->
  <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="0 -50" begin="0s" dur="0.5s" repeatCount="indefinite" />
</svg>
SVG by Claude Sonnet 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="discoGrad" cx="50%" cy="30%">
      <stop offset="0%" stop-color="#ff00ff"/>
      <stop offset="33%" stop-color="#00ffff"/>
      <stop offset="66%" stop-color="#ffff00"/>
      <stop offset="100%" stop-color="#ff0080"/>
    </radialGradient>
    <linearGradient id="giraffeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="50%" stop-color="#ff8c00"/>
      <stop offset="100%" stop-color="#ff6347"/>
    </linearGradient>
    <radialGradient id="pineappleGrad" cx="50%" cy="30%">
      <stop offset="0%" stop-color="#ffff00"/>
      <stop offset="70%" stop-color="#ffa500"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <linearGradient id="skateGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff1493"/>
      <stop offset="50%" stop-color="#00bfff"/>
      <stop offset="100%" stop-color="#ff1493"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="spots" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="6" fill="#8b4513" opacity="0.7"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#1a0033"/>
  
  <!-- Disco ball -->
  <g transform="translate(150,40)">
    <circle cx="0" cy="0" r="25" fill="url(#discoGrad)" filter="url(#glow)"/>
    <g opacity="0.8">
      <rect x="-20" y="-15" width="8" height="8" fill="#ffffff" opacity="0.9"/>
      <rect x="-8" y="-20" width="8" height="8" fill="#ffffff" opacity="0.7"/>
      <rect x="4" y="-12" width="8" height="8" fill="#ffffff" opacity="0.8"/>
      <rect x="12" y="-8" width="8" height="8" fill="#ffffff" opacity="0.6"/>
      <rect x="-16" y="0" width="8" height="8" fill="#ffffff" opacity="0.9"/>
      <rect x="0" y="8" width="8" height="8" fill="#ffffff" opacity="0.7"/>
      <rect x="8" y="12" width="8" height="8" fill="#ffffff" opacity="0.8"/>
    </g>
    <line x1="0" y1="-40" x2="0" y2="-25" stroke="#666" stroke-width="2"/>
  </g>
  
  <!-- Light beams -->
  <g opacity="0.3">
    <polygon points="150,65 130,300 170,300" fill="#ff00ff"/>
    <polygon points="150,65 80,300 120,300" fill="#00ffff"/>
    <polygon points="150,65 180,300 220,300" fill="#ffff00"/>
  </g>
  
  <!-- Giraffe body -->
  <g transform="translate(150,180)">
    <!-- Body -->
    <ellipse cx="0" cy="20" rx="25" ry="35" fill="url(#giraffeGrad)"/>
    <ellipse cx="0" cy="20" rx="25" ry="35" fill="url(#spots)" opacity="0.6"/>
    
    <!-- Neck -->
    <ellipse cx="0" cy="-20" rx="12" ry="40" fill="url(#giraffeGrad)"/>
    <ellipse cx="0" cy="-20" rx="12" ry="40" fill="url(#spots)" opacity="0.6"/>
    
    <!-- Head -->
    <ellipse cx="0" cy="-55" rx="15" ry="18" fill="url(#giraffeGrad)"/>
    <ellipse cx="0" cy="-55" rx="15" ry="18" fill="url(#spots)" opacity="0.6"/>
    
    <!-- Horns -->
    <rect x="-8" y="-75" width="3" height="12" fill="#8b4513"/>
    <rect x="5" y="-75" width="3" height="12" fill="#8b4513"/>
    <circle cx="-6.5" cy="-75" r="2" fill="#654321"/>
    <circle cx="6.5" cy="-75" r="2" fill="#654321"/>
    
    <!-- Eyes -->
    <circle cx="-6" cy="-58" r="3" fill="#000"/>
    <circle cx="6" cy="-58" r="3" fill="#000"/>
    <circle cx="-5" cy="-59" r="1" fill="#fff"/>
    <circle cx="7" cy="-59" r="1" fill="#fff"/>
    
    <!-- Snout -->
    <ellipse cx="0" cy="-45" rx="8" ry="6" fill="#ffa500"/>
    <ellipse cx="-2" cy="-47" rx="1" ry="1.5" fill="#000"/>
    <ellipse cx="2" cy="-47" rx="1" ry="1.5" fill="#000"/>
    
    <!-- Legs -->
    <rect x="-20" y="45" width="8" height="30" fill="url(#giraffeGrad)"/>
    <rect x="12" y="45" width="8" height="30" fill="url(#giraffeGrad)"/>
    <rect x="-20" y="45" width="8" height="30" fill="url(#spots)" opacity="0.6"/>
    <rect x="12" y="45" width="8" height="30" fill="url(#spots)" opacity="0.6"/>
  </g>
  
  <!-- Roller skates -->
  <g transform="translate(134,255)">
    <ellipse cx="0" cy="0" rx="18" ry="8" fill="url(#skateGrad)"/>
    <circle cx="-12" cy="8" r="4" fill="#ff69b4"/>
    <circle cx="0" cy="8" r="4" fill="#ff69b4"/>
    <circle cx="12" cy="8" r="4" fill="#ff69b4"/>
  </g>
  <g transform="translate(166,255)">
    <ellipse cx="0" cy="0" rx="18" ry="8" fill="url(#skateGrad)"/>
    <circle cx="-12" cy="8" r="4" fill="#ff69b4"/>
    <circle cx="0" cy="8" r="4" fill="#ff69b4"/>
    <circle cx="12" cy="8" r="4" fill="#ff69b4"/>
  </g>
  
  <!-- Juggling arms -->
  <g transform="translate(150,160)">
    <ellipse cx="-30" cy="-10" rx="6" ry="25" fill="url(#giraffeGrad)" transform="rotate(-30)"/>
    <ellipse cx="30" cy="-10" rx="6" ry="25" fill="url(#giraffeGrad)" transform="rotate(30)"/>
    <ellipse cx="-30" cy="-10" rx="6" ry="25" fill="url(#spots)" opacity="0.6" transform="rotate(-30)"/>
    <ellipse cx="30" cy="-10" rx="6" ry="25" fill="url(#spots)" opacity="0.6" transform="rotate(30)"/>
  </g>
  
  <!-- Pineapples being juggled -->
  <g transform="translate(100,120)">
    <ellipse cx="0" cy="8" rx="12" ry="18" fill="url(#pineappleGrad)"/>
    <g stroke="#228b22" stroke-width="2" fill="none">
      <path d="M-8,-10 Q-5,-15 0,-12"/>
      <path d="M-2,-10 Q0,-16 5,-13"/>
      <path d="M4,-10 Q8,-15 12,-12"/>
    </g>
    <g stroke="#8b4513" stroke-width="1" opacity="0.7">
      <line x1="-8" y1="0" x2="8" y2="0"/>
      <line x1="-8" y1="6" x2="8" y2="6"/>
      <line x1="-8" y1="12" x2="8" y2="12"/>
      <line x1="-8" y1="18" x2="8" y2="18"/>
    </g>
  </g>
  
  <g transform="translate(200,100)">
    <ellipse cx="0" cy="8" rx="12" ry="18" fill="url(#pineappleGrad)"/>
    <g stroke="#228b22" stroke-width="2" fill="none">
      <path d="M-8,-10 Q-5,-15 0,-12"/>
      <path d="M-2,-10 Q0,-16 5,-13"/>
      <path d="M4,-10 Q8,-15 12,-12"/>
    </g>
    <g stroke="#8b4513" stroke-width="1" opacity="0.7">
      <line x1="-8" y1="0" x2="8" y2="0"/>
      <line x1="-8" y1="6" x2="8" y2="6"/>
      <line x1="-8" y1="12" x2="8" y2="12"/>
      <line x1="-8" y1="18" x2="8" y2="18"/>
    </g>
  </g>
  
  <g transform="translate(150,90)">
    <ellipse cx="0" cy="8" rx="12" ry="18" fill="url(#pineappleGrad)"/>
    <g stroke="#228b22" stroke-width="2" fill="none">
      <path d="M-8,-10 Q-5,-15 0,-12"/>
      <path d="M-2,-10 Q0,-16 5,-13"/>
      <path d="M4,-10 Q8,-15 12,-12"/>
    </g>
    <g stroke="#8b4513" stroke-width="1" opacity="0.7">
      <line x1="-8" y1="0" x2="8" y2="0"/>
      <line x1="-8" y1="6" x2="8" y2="6"/>
      <line x1="-8" y1="12" x2="8" y2="12"/>
      <line x1="-8" y1="18" x2="8" y2="18"/>
    </g>
  </g>
  
  <!-- Motion trails -->
  <g opacity="0.4">
    <path d="M100,130 Q80,110 90,100" stroke="#ffa500" stroke-width="3" fill="none"/>
    <path d="M200,110 Q220,90 210,80" stroke="#ffa500" stroke-width="3" fill="none"/>
    <path d="M150,100 Q130,80 140,70" stroke="#ffa500" stroke-width="3" fill="none"/>
  </g>
  
  <!-- Sparkles -->
  <g fill="#ffffff" opacity="0.8">
    <polygon points="80,150 82,156 88,156 83,160 85,166 80,162 75,166 77,160 72,156 78,156" transform="scale(0.5)"/>
    <polygon points="220,180 222,186 228,186 223,190 225,196 220,192 215,196 217,190 212,186 218,186" transform="scale(0.5)"/>
    <polygon points="60,200 62,206 68,206 63,210 65,216 60,212 55,216 57,210 52,206 58,206" transform="scale(0.5)"/>
    <polygon points="240,140 242,146 248,146 243,150 245,156 240,152 235,156 237,150 232,146 238,146" transform="scale(0.5)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Sonnet 4 (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission excels in creativity, technical execution, and adherence to the prompt.

    The vibrant colors, detailed giraffe with roller skates, juggling pineapples under a disco ball, and the added background elements like stars enhance the visual appeal.

    Player 1's submission, while adhering to the prompt, is simplistic and lacks the same level of detail and polish.

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
18
Player 2
78
Rectangles

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

Player 1
2
Player 2
14
Circles

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

Player 1
5
Player 2
14
Ellipses

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

Player 1
4
Player 2
18
Lines

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

Player 1
2
Player 2
13
Polygons

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

Player 1
2
Player 2
7
Paths

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

Player 1
3
Player 2
12
Groups

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

Player 1
5
Player 2
18

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
20

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
16

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
24
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
6
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.