Back

SVG Drawing Match #455

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe wearing a top hat, juggling planets in a cosmic circus ring"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#1a0b2e"/>
      <stop offset="100%" style="stop-color:#000000"/>
    </radialGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white" opacity="0.8"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGrad)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)"/>

  <!-- Circus Ring -->
  <ellipse cx="150" cy="260" rx="120" ry="30" fill="#ff4444" opacity="0.8"/>
  <ellipse cx="150" cy="260" rx="100" ry="25" fill="#ffdd44" opacity="0.8"/>

  <!-- Giraffe Body -->
  <path d="M140,240 Q140,180 150,140 Q160,100 165,70" stroke="#ffb642" stroke-width="20" fill="none"/>
  <path d="M140,200 Q120,190 130,170" stroke="#ffb642" stroke-width="15" fill="none"/>
  <path d="M140,200 Q160,190 150,170" stroke="#ffb642" stroke-width="15" fill="none"/>

  <!-- Giraffe Spots -->
  <g fill="#c65d00">
    <circle cx="150" cy="140" r="8"/>
    <circle cx="160" cy="110" r="8"/>
    <circle cx="145" cy="170" r="8"/>
    <circle cx="165" cy="80" r="8"/>
  </g>

  <!-- Top Hat -->
  <path d="M165,60 h30 v-40 h-60 v40 h30" fill="#333"/>
  <ellipse cx="165" cy="60" rx="35" ry="10" fill="#333"/>

  <!-- Juggling Planets -->
  <g>
    <circle cx="100" cy="120" r="20" fill="#3498db">
      <animate attributeName="cy" values="120;80;120" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="165" cy="90" r="25" fill="#e74c3c">
      <animate attributeName="cy" values="90;130;90" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="230" cy="120" r="15" fill="#2ecc71">
      <animate attributeName="cy" values="120;80;120" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Planet Rings -->
  <ellipse cx="165" cy="90" rx="35" ry="10" fill="none" stroke="#f1c40f" stroke-width="2">
    <animate attributeName="cy" values="90;130;90" dur="2s" repeatCount="indefinite"/>
  </ellipse>

  <!-- Giraffe Face -->
  <circle cx="165" cy="70" r="12" fill="#ffb642"/>
  <circle cx="170" cy="67" r="2" fill="#000"/>
  <path d="M160,75 q5,3 10,0" stroke="#000" stroke-width="1" fill="none"/>

  <!-- Stars Twinkling -->
  <g fill="white">
    <circle cx="50" cy="50" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="80" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="40" r="2">
      <animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="topHatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#8c6758;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#5d382e;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#4a9375;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2d5846;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#9a72c2;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#6a4583;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M10 0l5 5-5 5-5-5 5-5" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#0a0a2a"/>
  <g transform="translate(150,150)">
    <circle r="120" fill="url(#starPattern)"/>
    <g transform="translate(0,40)">
      <path d="M-60,0c0,20,50,30,80,20c30,-10,80,-40,80,-60c0,-20-50,-30-80,-20c-30,10-80,40-80,60z" fill="#7a5834"/>
      <g transform="translate(0,20)">
        <rect x="-30" y="-10" width="60" height="20" rx="10" fill="#fff"/>
        <rect x="-20" y="-5" width="40" height="10" rx="5" fill="#e6d5c2"/>
      </g>
      <g transform="translate(0,-30)">
        <circle r="15" fill="url(#topHatGradient)"/>
        <circle r="10" fill="#ffffff"/>
        <circle r="5" fill="#333"/>
      </g>
      <g transform="translate(-30,30)">
        <circle r="12" fill="url(#planetGradient1)"/>
        <circle r="8" fill="#fff" stroke="#fff" stroke-width="2"/>
      </g>
      <g transform="translate(30,30)">
        <circle r="12" fill="url(#planetGradient2)"/>
        <circle r="8" fill="#fff" stroke="#fff" stroke-width="2"/>
      </g>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image clearly depicts a giraffe with a top hat, juggling planets, staying true to the prompt.

    The composition is playful and visually engaging, with a cosmic theme effectively represented through the use of colors and circular elements.

    In contrast, Player 2's image lacks clarity and does not clearly convey the elements of a giraffe, top hat, or juggling planets, making Player 1's submission the stronger choice.

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
24
Player 2
13
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
13
Player 2
8
Ellipses

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

Player 1
4
Player 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
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
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
6

Interactivity Metrics

Animations

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

Player 1
7
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
6

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
8
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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