Back

SVG Drawing Match #124

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe in a top hat juggling planets under a starry night sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Night Sky Background -->
  <defs>
    <radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#1a1a2c" stop-opacity="1"/>
      <stop offset="1" stop-color="#0a0a1a" stop-opacity="1"/>
    </radialGradient>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="1" fill="white"/>
      <circle cx="20" cy="80" r="1" fill="white"/>
      <circle cx="80" cy="30" r="1" fill="white"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

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

  <!-- Moon -->
  <path d="M220,50 L260,50 L250,40 L230,40 Z" fill="#fff"/>

  <!-- Giraffe Body -->
  <g transform="translate(150,200)">
    <!-- Neck -->
    <ellipse cx="0" cy="0" rx="30" ry="60" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
    <!-- Body -->
    <ellipse cx="0" cy="70" rx="40" ry="50" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
    <!-- Legs -->
    <rect x="-20" y="110" width="40" height="80" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
    <rect x="20" y="110" width="40" height="80" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
    <!-- Head -->
    <ellipse cx="0" cy="-40" rx="25" ry="20" fill="#e6d8c3" stroke="#8b4513" stroke-width="2"/>
    <!-- Top Hat -->
    <ellipse cx="0" cy="-80" rx="20" ry="30" fill="#000" stroke="#666" stroke-width="2">
      <title>Top Hat</title>
    </ellipse>
    <path d="M-15,-60 L15,-60 L12,-70 L-12,-70 Z" fill="#666"/>
  </g>

  <!-- Planets -->
  <g transform="translate(150,150)">
    <!-- Planet 1 -->
    <circle cx="-50" cy="-30" r="15" fill="#87CEEB" stroke="#4682B4" stroke-width="2" filter="url(#glow)"/>
    <!-- Planet 2 -->
    <circle cx="0" cy="-50" r="20" fill="#FFD700" stroke="#FFA500" stroke-width="2" filter="url(#glow)"/>
    <!-- Planet 3 -->
    <circle cx="50" cy="-30" r="15" fill="#00FF00" stroke="#008000" stroke-width="2" filter="url(#glow)"/>
  </g>

  <!-- Juggling Trails -->
  <path d="M100,100 Q150,150 200,100" stroke="#666" stroke-width="1" fill="none"/>
  <path d="M200,100 Q250,150 300,100" stroke="#666" stroke-width="1" fill="none"/>
  <path d="M100,200 Q150,250 200,200" stroke="#666" stroke-width="1" fill="none"/>
  <path d="M200,200 Q250,150 300,200" stroke="#666" stroke-width="1" fill="none"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0b0b2d;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#1a1a4a;stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#419EB7;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#1E5F7C;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#FF8E8E;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#9C9CFF;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#6A6AFF;stop-opacity:1"/>
    </radialGradient>
    <pattern id="sparkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="white"/>
      <circle cx="15" cy="15" r="1" fill="white"/>
    </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="url(#nightSky)"/>
  <g transform="translate(150,150)">
    <!-- Giraffe Body -->
    <rect x="-20" y="-50" width="40" height="100" fill="#f0e6ff" rx="10"/>
    <!-- Neck -->
    <rect x="-15" y="-100" width="30" height="80" fill="#f0e6ff" rx="5"/>
    <!-- Head -->
    <circle cx="-10" cy="-150" r="15" fill="#f0e6ff"/>
    <!-- Eyes -->
    <circle cx="-20" cy="-155" r="3" fill="#333"/>
    <circle cx="-10" cy="-155" r="3" fill="#333"/>
    <!-- Nose -->
    <rect x="-15" y="-160" width="10" height="5" fill="#333"/>
    <!-- Ears -->
    <path d="M-20,-140 L-25,-130 L-15,-130 Z" fill="#f0e6ff"/>
    <path d="M-10,-140 L-5,-130 L-15,-130 Z" fill="#f0e6ff"/>
    <!-- Top Hat -->
    <rect x="-12" y="-165" width="24" height="30" fill="#2F2F2F"/>
    <rect x="-10" y="-165" width="20" height="25" fill="#6B6B6B"/>
    <rect x="-8" y="-190" width="16" height="5" fill="#FF0000"/>
    <!-- Legs -->
    <rect x="-35" y="20" width="10" height="80" fill="#f0e6ff"/>
    <rect x="25" y="20" width="10" height="80" fill="#f0e6ff"/>
    <rect x="-15" y="50" width="30" height="60" fill="#f0e6ff" rx="5"/>
    <!-- Juggling Planets -->
    <g transform="translate(0, -100)">
      <circle cx="-50" cy="0" r="15" fill="url(#planet1)" filter="url(#glow)"/>
      <circle cx="50" cy="0" r="20" fill="url(#planet2)" filter="url(#glow)"/>
      <circle cx="0" cy="50" r="25" fill="url(#planet3)" filter="url(#glow)"/>
      <path d="M-50,0 Q0,50 50,0" stroke="#FFD700" stroke-width="2" fill="none"/>
      <path d="M50,0 Q0,-50 -50,0" stroke="#FFD700" stroke-width="2" fill="none"/>
    </g>
    <!-- Sparkles -->
    <g transform="translate(0, -100)" filter="url(#glow)">
      <rect width="300" height="300" fill="url(#sparkles)" opacity="0.3"/>
    </g>
  </g>
  <!-- Stars -->
  <g>
    <circle cx="50" cy="50" r="1" fill="#FFF"/>
    <circle cx="200" cy="80" r="1.5" fill="#FFF"/>
    <circle cx="120" cy="30" r="1" fill="#FFF"/>
    <circle cx="250" cy="70" r="1.2" fill="#FFF"/>
    <circle cx="180" cy="100" r="1" fill="#FFF"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's image more effectively captures the essence of a giraffe juggling planets under a starry night sky.

    The inclusion of a distinct top hat and clear depiction of juggling planets align better with the prompt.

    The technical quality and clarity of the elements, such as the planets and stars, are more pronounced, enhancing the visual appeal and adherence to the theme.

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
20
Player 2
28
Rectangles

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

Player 1
4
Player 2
11
Circles

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

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

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

Player 1
2
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

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

Similar Challenges