Back

SVG Drawing Match #2424

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

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

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(#bgGradient)"/>
  <defs>
    <!-- Background Gradient -->
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0%" stop-color="#ffecd2"/>
      <stop offset="100%" stop-color="#fcb69f"/>
    </linearGradient>
    <!-- Disco Ball Pattern -->
    <pattern id="discoPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="4" height="4" fill="#ddd"/>
      <circle cx="2" cy="2" r="1" fill="silver" />
    </pattern>
    <!-- Pineapple Gradient -->
    <linearGradient id="pineappleGradient" gradientTransform="rotate(45)">
      <stop offset="0%" stop-color="#ffdf00"/>
      <stop offset="100%" stop-color="#e68a00"/>
    </linearGradient>
  </defs>
  
  <!-- Disco Ball -->
  <circle cx="150" cy="60" r="25" fill="url(#discoPattern)" stroke="silver" stroke-width="2" />
  <circle cx="150" cy="60" r="25" fill-opacity="0" stroke="white" stroke-width="0.5" stroke-dasharray="2,2"/>
  
  <!-- Giraffe Body -->
  <g id="giraffe">
    <!-- Body -->
    <ellipse cx="150" cy="190" rx="25" ry="40" fill="#f4c27d" stroke="#c27c52" stroke-width="2"/>
    <!-- Neck -->
    <rect x="140" y="110" width="20" height="80" fill="#f4c27d" stroke="#c27c52" stroke-width="2" />
    <!-- Spots -->
    <circle cx="145" cy="125" r="3" fill="#d29a6b"/>
    <circle cx="155" cy="145" r="3" fill="#d29a6b"/>
    <circle cx="148" cy="165" r="3" fill="#d29a6b"/>
    <!-- Head -->
    <circle cx="150" cy="100" r="15" fill="#f4c27d" stroke="#c27c52" stroke-width="2"/>
    <!-- Ears -->
    <polygon points="142,85 138,75 144,80" fill="#f4c27d" stroke="#c27c52" stroke-width="1"/>
    <polygon points="158,85 162,75 156,80" fill="#f4c27d" stroke="#c27c52" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="145" cy="98" r="2" fill="black" />
    <circle cx="155" cy="98" r="2" fill="black" />
    <!-- Horns -->
    <rect x="147" y="80" width="3" height="8" fill="#d4a373"/>
    <rect x="150" y="80" width="3" height="8" fill="#d4a373"/>
  </g>
  
  <!-- Roller Skates -->
  <g id="rollerSkates">
    <!-- Left Skate (under front hoof) -->
    <g transform="translate(138,210)">
      <rect x="0" y="0" width="8" height="4" fill="#888" stroke="#555" stroke-width="0.5"/>
      <circle cx="2" cy="8" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="8" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="2" cy="-2" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="-2" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
    </g>
    <!-- Right Skate (under back hoof) -->
    <g transform="translate(152,210)">
      <rect x="0" y="0" width="8" height="4" fill="#888" stroke="#555" stroke-width="0.5"/>
      <circle cx="2" cy="8" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="8" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="2" cy="-2" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
      <circle cx="6" cy="-2" r="2" fill="#444" stroke="#222" stroke-width="0.5"/>
    </g>
  </g>
  
  <!-- Juggling Pineapples -->
  <g id="pineapples">
    <!-- Pineapple 1 -->
    <g transform="translate(110,80)">
      <path d="M0 0 L8 -4 L12 0 L8 4 Z" fill="url(#pineappleGradient)" stroke="#a65c00" stroke-width="1" />
      <!-- Top leaves -->
      <path d="M8 -4 L8 -10 L6 -7 M8 -4 L8 -10 L10 -7" stroke="#2d6a2d" stroke-width="1"/>
    </g>
    <!-- Pineapple 2 -->
    <g transform="translate(170,90) rotate(20)">
      <path d="M0 0 L8 -4 L12 0 L8 4 Z" fill="url(#pineappleGradient)" stroke="#a65c00" stroke-width="1" />
      <path d="M8 -4 L8 -10 L6 -7 M8 -4 L8 -10 L10 -7" stroke="#2d6a2d" stroke-width="1"/>
    </g>
    <!-- Pineapple 3 -->
    <g transform="translate(140,40) rotate(-15)">
      <path d="M0 0 L8 -4 L12 0 L8 4 Z" fill="url(#pineappleGradient)" stroke="#a65c00" stroke-width="1" />
      <path d="M8 -4 L8 -10 L6 -7 M8 -4 L8 -10 L10 -7" stroke="#2d6a2d" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Additional disco vibe elements -->
  <g id="sparkles">
    <circle cx="50" cy="250" r="2" fill="white" opacity="0.8" />
    <circle cx="260" cy="230" r="3" fill="white" opacity="0.8" />
    <circle cx="200" cy="270" r="1.5" fill="white" opacity="0.8" />
    <circle cx="30" cy="30" r="1" fill="white" opacity="0.8" />
    <circle cx="270" cy="40" r="1.5" fill="white" opacity="0.8" />
    <circle cx="100" cy="20" r="1.5" fill="white" opacity="0.8" />
  </g>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="40%" r="80%">
      <stop offset="0%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <linearGradient id="skateGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff5aff"/>
      <stop offset="100%" stop-color="#00eaff"/>
    </linearGradient>
    <pattern id="mirror" x="0" y="0" width="6" height="6" patternUnits="userSpaceOnUse">
      <rect width="6" height="6" fill="#aaa"/>
      <rect width="3" height="3" fill="#ddd"/>
      <rect x="3" y="3" width="3" height="3" fill="#ddd"/>
    </pattern>
    <pattern id="pineSkin" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse">
      <rect width="8" height="8" fill="#f8dc82"/>
      <path d="M0,4 L4,0 M8,4 L4,8" stroke="#c49e1f" stroke-width="1"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="dropshadow" height="150%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur"/>
      <feOffset in="blur" dx="2" dy="2" result="offsetBlur"/>
      <feMerge>
        <feMergeNode in="offsetBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGrad)"/>

  <!-- Decorative stars -->
  <g fill="#fff" fill-opacity="0.2">
    <polygon points="50,47 52,50 50,53 48,50"/>
    <polygon points="250,77 252,80 250,83 248,80"/>
    <polygon points="80,197 82,200 80,203 78,200"/>
    <polygon points="220,157 222,160 220,163 218,160"/>
    <polygon points="100,27 102,30 100,33 98,30"/>
  </g>

  <!-- Disco ball chain -->
  <line x1="150" y1="0" x2="150" y2="40" stroke="#eee" stroke-width="2" opacity="0.5"/>
  <!-- Disco ball -->
  <circle cx="150" cy="60" r="30" fill="url(#mirror)" filter="url(#glow)"/>

  <!-- Juggling arcs -->
  <path d="M120,100 C130,60 160,60 150,90" stroke="#fff" stroke-opacity="0.6" stroke-dasharray="3 3" fill="none"/>
  <path d="M150,90 C155,60 190,70 180,110" stroke="#fff" stroke-opacity="0.6" stroke-dasharray="3 3" fill="none"/>
  <path d="M180,110 C145,140 115,130 120,100" stroke="#fff" stroke-opacity="0.6" stroke-dasharray="3 3" fill="none"/>

  <!-- Pineapples -->
  <g>
    <g transform="translate(120,100) rotate(-20)">
      <ellipse cx="0" cy="0" rx="10" ry="15" fill="url(#pineSkin)" stroke="#c49e1f" stroke-width="1"/>
      <g fill="#6aa84f">
        <path d="M0,-15 l-5,-5 l3,8 z"/>
        <path d="M0,-15 l0,-8 l3,8 z"/>
        <path d="M0,-15 l5,-5 l-3,8 z"/>
      </g>
    </g>
    <g transform="translate(150,90) rotate(10)">
      <ellipse cx="0" cy="0" rx="10" ry="15" fill="url(#pineSkin)" stroke="#c49e1f" stroke-width="1"/>
      <g fill="#6aa84f">
        <path d="M0,-15 l-5,-5 l3,8 z"/>
        <path d="M0,-15 l0,-8 l3,8 z"/>
        <path d="M0,-15 l5,-5 l-3,8 z"/>
      </g>
    </g>
    <g transform="translate(180,110) rotate(30)">
      <ellipse cx="0" cy="0" rx="10" ry="15" fill="url(#pineSkin)" stroke="#c49e1f" stroke-width="1"/>
      <g fill="#6aa84f">
        <path d="M0,-15 l-5,-5 l3,8 z"/>
        <path d="M0,-15 l0,-8 l3,8 z"/>
        <path d="M0,-15 l5,-5 l-3,8 z"/>
      </g>
    </g>
  </g>

  <!-- Giraffe legs and body -->
  <g filter="url(#dropshadow)">
    <rect x="130" y="210" width="10" height="60" fill="#ffe699" stroke="#bd9f5b" stroke-width="2" transform="rotate(5 135 210)"/>
    <rect x="160" y="210" width="10" height="60" fill="#ffe699" stroke="#bd9f5b" stroke-width="2" transform="rotate(-5 165 210)"/>
    <ellipse cx="150" cy="200" rx="30" ry="40" fill="#ffe699" stroke="#bd9f5b" stroke-width="2"/>
    <ellipse cx="140" cy="190" rx="5" ry="7" fill="#d49e53"/>
    <ellipse cx="160" cy="180" rx="6" ry="8" fill="#d49e53"/>
    <ellipse cx="155" cy="220" rx="4" ry="6" fill="#d49e53"/>
    <ellipse cx="145" cy="215" rx="6" ry="5" fill="#d49e53"/>
    <rect x="140" y="220" width="10" height="60" fill="#ffe699" stroke="#bd9f5b" stroke-width="2" transform="rotate(-5 145 220)"/>
    <rect x="150" y="220" width="10" height="60" fill="#ffe699" stroke="#bd9f5b" stroke-width="2" transform="rotate(5 155 220)"/>
  </g>

  <!-- Roller skates -->
  <g>
    <g transform="translate(145 280) rotate(-5)">
      <rect x="-8" y="0" width="16" height="8" rx="2" fill="url(#skateGrad)" stroke="#444" stroke-width="0.5"/>
      <circle cx="-5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="-1.5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="1.5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
    </g>
    <g transform="translate(155 280) rotate(5)">
      <rect x="-8" y="0" width="16" height="8" rx="2" fill="url(#skateGrad)" stroke="#444" stroke-width="0.5"/>
      <circle cx="-5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="-1.5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="1.5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
      <circle cx="5" cy="12" r="2" fill="#f0f0f0" stroke="#666" stroke-width="0.5"/>
    </g>
  </g>

  <!-- Giraffe neck and head -->
  <g filter="url(#dropshadow)">
    <rect x="140" y="130" width="20" height="80" fill="#ffe699" stroke="#bd9f5b" stroke-width="2"/>
    <ellipse cx="150" cy="115" rx="20" ry="15" fill="#ffe699" stroke="#bd9f5b" stroke-width="2"/>
    <circle cx="140" cy="110" r="3" fill="#d49e53"/>
    <circle cx="155" cy="100" r="2.5" fill="#d49e53"/>
    <circle cx="160" cy="120" r="4" fill="#d49e53"/>
    <circle cx="144" cy="100" r="3" fill="#bd9f5b"/>
    <circle cx="156" cy="100" r="3" fill="#bd9f5b"/>
    <path d="M134,110 l-4,-6 l6,2 z" fill="#ffe699" stroke="#bd9f5b" stroke-width="1"/>
    <path d="M166,110 l4,-6 l-6,2 z" fill="#ffe699" stroke="#bd9f5b" stroke-width="1"/>
    <circle cx="145" cy="115" r="2" fill="#333"/>
    <circle cx="155" cy="115" r="2" fill="#333"/>
    <path d="M140,122 q10,5 20,0" stroke="#333" stroke-width="1" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission excels in creativity and visual appeal, with vibrant colors, a clear disco ball, and a playful depiction of the giraffe juggling pineapples on roller skates.

    The composition is dynamic and captures the prompt more effectively.

    Player 1's submission, while adhering to the prompt, is simpler and less visually engaging in comparison.

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
39
Player 2
59
Rectangles

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

Player 1
7
Player 2
12
Circles

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

Player 1
23
Player 2
16
Ellipses

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

Player 1
1
Player 2
9
Lines

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

Player 1
Player 2
1
Polygons

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

Player 1
2
Player 2
5
Paths

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

Player 1
6
Player 2
16
Groups

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

Player 1
9
Player 2
13

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
23
Player 2
28

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
33
Player 2
56
Max Group Nesting

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

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

Similar Challenges