Back

SVG Drawing Match #30

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Space giraffe on a unicycle juggling planets"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="backgroundGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#0a2438; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1f6d9b; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffd700; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffa500; stop-opacity:1" />
    </linearGradient>
    <pattern id="planetTexture" patternUnits="userSpaceOnUse" width="5" height="5">
      <circle cx="2.5" cy="2.5" r="2" fill="#ffffff" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#backgroundGradient)" />
  
  <g transform="translate(150, 150)">
    <g id="giraffe">
      <path d="M-5,50 C-40,25 -40,-40 -10,-70 C10,-100 30,-70 35,-60 C45,-30 50,-30 50,-10 C50,10 40,30 40,50 C40,70 25,100 0,100 C-25,100 -40,70 -40,50" fill="url(#giraffeGradient)" />
      <circle cx="0" cy="-80" r="10" fill="#6a4e8f" />
      <circle cx="-5" cy="-85" r="3" fill="#000" />
      <circle cx="5" cy="-85" r="3" fill="#000" />
    </g>
    <g id="unicycle">
      <circle cx="0" cy="0" r="20" stroke="#444" stroke-width="4" fill="none" />
      <line x1="0" y1="0" x2="0" y2="20" stroke="#444" stroke-width="4" />
      <circle cx="0" cy="20" r="5" fill="#444" />
      <circle cx="0" cy="20" r="10" stroke="#aaa" stroke-width="2" fill="none" />
    </g>
    <g id="juggling-planets">
      <circle cx="-40" cy="-50" r="10" fill="url(#planetTexture)" />
      <circle cx="30" cy="-60" r="8" fill="url(#planetTexture)" />
      <circle cx="20" cy="-30" r="5" fill="url(#planetTexture)" />
      <circle cx="-25" cy="-20" r="12" fill="url(#planetTexture)" />
    </g>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <pattern id="giraffeFur" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
      <path d="M0 0 L4 4 M4 0 L0 4" stroke="#fff" stroke-width="1" fill="none"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="#0b0b2d"/>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="100" r="1" fill="#fff"/>
    <circle cx="150" cy="50" r="1.5" fill="#fff"/>
    <circle cx="250" cy="150" r="2" fill="#fff"/>
    <circle cx="200" cy="250" r="1.5" fill="#fff"/>
    <circle cx="100" cy="200" r="2" fill="#fff"/>
  </g>
  
  <!-- Giraffe -->
  <path d="M150 180 Q160 170 170 180 Q180 190 170 200" fill="#2c1a1a" filter="url(#glow)"/>
  <rect x="140" y="160" width="20" height="20" rx="5" fill="url(#giraffeFur)" filter="url(#glow)"/>
  
  <!-- Hat -->
  <path d="M140 140 L160 140 Q170 130 160 120 L140 120 Q130 130 140 140" fill="linearGradient(45deg, #ff69b4, #ffd700)" filter="url(#glow)"/>
  
  <!-- Face -->
  <circle cx="150" cy="130" r="15" fill="#ff69b4" filter="url(#glow)"/>
  <circle cx="145" cy="125" r="3" fill="#fff"/>
  <circle cx="155" cy="125" r="3" fill="#fff"/>
  <path d="M145 135 L155 135 L150 140" fill="#ff4500"/>
  
  <!-- Unicycle -->
  <circle cx="150" cy="220" r="30" fill="radialGradient(circle at 150,220, #4d4d4d, #666)"/>
  <rect x="140" y="200" width="20" height="30" rx="5" fill="#666" filter="url(#glow)"/>
  
  <!-- Juggling Planets -->
  <g transform="translate(100,150)">
    <circle r="15" fill="#87CEEB" filter="url(#glow)"/>
    <circle r="10" cx="-20" cy="-30" fill="#FFD700" filter="url(#glow)"/>
    <circle r="12" cx="20" cy="-20" fill="#FF69B4" filter="url(#glow)"/>
  </g>
  
  <!-- Sparkles -->
  <g transform="translate(150,220)">
    <circle r="2" fill="#fff"/>
    <circle r="2" cx="20" cy="-10" fill="#fff"/>
    <circle r="2" cx="-10" cy="15" fill="#fff"/>
  </g>
  
  <!-- Comet -->
  <path d="M250 50 Q260 60 255 70" stroke="#fff" stroke-width="2" fill="none"/>
  <circle cx="255" cy="70" r="5" fill="#fff"/>
  
  <!-- Shooting Star Trail -->
  <path d="M50 50 Q80 30 110 50" stroke="#87CEEB" stroke-width="3" fill="none"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission more effectively captures the whimsical concept of a 'Space giraffe on a unicycle juggling planets' with a playful and colorful representation.

    The image creatively utilizes elements like planets and a unicycle, conveying the theme more clearly.

    In contrast, Player 1's submission lacks recognizable features relating to the prompt, making it less effective in adherence and visual appeal.

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
14
Player 2
25
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
11
Player 2
16
Ellipses

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

Player 1
Player 2
Lines

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

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

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
Patterns

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

Player 1
1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
8

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
1
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
7
Player 2
19
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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