Back

SVG Drawing Match #1283

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe in a bowler hat juggling planets, geometric style"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with radial gradient and stars -->
  <defs>
    <radialGradient id="bg" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#1a1a2c"/>
      <stop offset="1" stop-color="#16213e"/>
    </radialGradient>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="2" fill="white"/>
      <circle cx="20" cy="80" r="1" fill="white"/>
      <circle cx="80" cy="40" r="1" fill="white"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#bg)"/>
  <rect width="300" height="300" fill="url(#stars)"/>

  <!-- Giraffe body -->
  <g transform="translate(120,150)">
    <ellipse cx="0" cy="0" rx="40" ry="60" fill="#f0d9b5" stroke="#b58863" stroke-width="2"/>
    <rect x="-30" y="-80" width="60" height="120" fill="#f0d9b5" stroke="#b58863" stroke-width="2">
      <defs>
        <linearGradient id="neckGrad" x1="0" y1="0" x2="0" y2="1" gradientUnits="objectBoundingBox">
          <stop offset="0" stop-color="#f0d9b5"/>
          <stop offset="1" stop-color="#e67e22"/>
        </linearGradient>
      </defs>
      <rect x="-30" y="-80" width="60" height="120" fill="url(#neckGrad)"/>
    </rect>
    <ellipse cx="0" cy="-100" rx="20" ry="30" fill="#f0d9b5" stroke="#b58863" stroke-width="2"/>
    <circle cx="-8" cy="-110" r="4" fill="#000"/>
    <circle cx="8" cy="-110" r="4" fill="#000"/>
    <circle cx="-8" cy="-110" r="2" fill="#fff" stroke="#000" stroke-width="1">
      <defs>
        <linearGradient id="eyeGrad" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0" stop-color="#fff"/>
          <stop offset="1" stop-color="#ffa500"/>
        </linearGradient>
      </defs>
      <circle cx="-8" cy="-110" r="2" fill="url(#eyeGrad)"/>
    </circle>
    <circle cx="8" cy="-110" r="2" fill="url(#eyeGrad)"/>
  </g>

  <!-- Bowler hat -->
  <g transform="translate(120,80)">
    <circle cx="0" cy="0" r="20" fill="#2c3e50" stroke="#34495e" stroke-width="2">
      <defs>
        <linearGradient id="hatGrad" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0" stop-color="#2c3e50"/>
          <stop offset="1" stop-color="#3a506b"/>
        </linearGradient>
      </defs>
      <circle cx="0" cy="0" r="20" fill="url(#hatGrad)"/>
    </circle>
    <rect x="-30" y="-20" width="60" height="40" fill="#2c3e50" stroke="#34495e" stroke-width="2"/>
  </g>

  <!-- Planets and juggling elements -->
  <g transform="translate(150,150)">
    <!-- Planet 1 (Earth) -->
    <g transform="rotate(30)">
      <circle cx="0" cy="-100" r="15" fill="#6c5ce7" stroke="#a8a5e6" stroke-width="2">
        <animate attributeName="cy" from="-100" to="-150" dur="2s" repeatCount="indefinite" />
      </circle>
      <circle cx="0" cy="-100" r="10" stroke="#a8a5e6" stroke-width="1" fill="none"/>
    </g>

    <!-- Planet 2 (Saturn) -->
    <g transform="rotate(150)">
      <circle cx="0" cy="-80" r="20" fill="#f1c40f" stroke="#f39c12" stroke-width="2">
        <animate attributeName="cy" from="-80" to="-130" dur="2.5s" repeatCount="indefinite" />
      </circle>
      <circle cx="0" cy="-80" r="15" stroke="#f39c12" stroke-width="2" fill="none"/>
      <circle cx="0" cy="-80" r="25" stroke="#f39c12" stroke-width="1" fill="none"/>
    </g>

    <!-- Planet 3 (Mars) -->
    <g transform="rotate(-30)">
      <circle cx="0" cy="-90" r="12" fill="#e74c3c" stroke="#c0392b" stroke-width="2">
        <animate attributeName="cy" from="-90" to="-140" dur="3s" repeatCount="indefinite" />
      </circle>
      <circle cx="0" cy="-90" r="8" fill="#e74c3c" stroke="#c0392b" stroke-width="1"/>
    </g>

    <!-- Moon orbit -->
    <circle cx="0" cy="0" r="120" stroke="#bdc3c7" stroke-width="1" fill="none">
      <animate attributeName="r" from="120" to="140" dur="4s" repeatCount="indefinite" />
    </circle>
  </g>

  <!-- Juggling circles -->
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="40" stroke="#e67e22" stroke-width="2" fill="none"/>
    <circle cx="0" cy="0" r="60" stroke="#e67e22" stroke-width="2" fill="none"/>
    <circle cx="0" cy="0" r="80" stroke="#e67e22" stroke-width="2" fill="none"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1a1a3a" />
      <stop offset="100%" stop-color="#4a2d60" />
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f0c070" />
      <stop offset="100%" stop-color="#d4a040" />
    </linearGradient>
    <pattern id="giraffePattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <polygon points="0,0 5,5 0,10" fill="#b07030" />
      <polygon points="10,0 5,5 10,10" fill="#b07030" />
    </pattern>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ff9966" />
      <stop offset="100%" stop-color="#ff5e62" />
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#6edbc6" />
      <stop offset="100%" stop-color="#00a8cc" />
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#b0e0e6" />
      <stop offset="100%" stop-color="#4b6cb7" />
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <g id="stars">
    <circle cx="30" cy="40" r="1" fill="white" />
    <circle cx="70" cy="20" r="1.5" fill="white" />
    <circle cx="120" cy="50" r="1" fill="white" />
    <circle cx="200" cy="30" r="1.5" fill="white" />
    <circle cx="250" cy="60" r="1" fill="white" />
    <circle cx="280" cy="20" r="1.5" fill="white" />
    <circle cx="50" cy="80" r="1" fill="white" />
    <circle cx="150" cy="10" r="1.5" fill="white" />
    <circle cx="220" cy="70" r="1" fill="white" />
    <circle cx="100" cy="30" r="1.5" fill="white" />
  </g>
  
  <!-- Giraffe body (geometric style) -->
  <g id="giraffe">
    <!-- Legs -->
    <rect x="100" y="200" width="12" height="80" rx="4" fill="url(#giraffeGradient)" />
    <rect x="140" y="200" width="12" height="80" rx="4" fill="url(#giraffeGradient)" />
    
    <!-- Body -->
    <ellipse cx="125" cy="190" rx="30" ry="40" fill="url(#giraffeGradient)" />
    <rect x="125" y="120" width="20" height="60" fill="url(#giraffeGradient)" />
    
    <!-- Giraffe pattern spots -->
    <ellipse cx="125" cy="190" rx="26" ry="36" fill="url(#giraffePattern)" fill-opacity="0.6" />
    <rect x="125" y="120" width="20" height="60" fill="url(#giraffePattern)" fill-opacity="0.6" />
    
    <!-- Head -->
    <polygon points="155,100 170,120 160,130 145,110" fill="url(#giraffeGradient)" />
    <ellipse cx="160" cy="115" rx="15" ry="12" fill="url(#giraffeGradient)" />
    <ellipse cx="160" cy="115" rx="12" ry="9" fill="url(#giraffePattern)" fill-opacity="0.6" />
    
    <!-- Eyes and features -->
    <circle cx="168" cy="112" r="2" fill="#222" />
    <circle cx="167" cy="111" r="0.5" fill="white" />
    <path d="M165,120 Q168,122 171,120" fill="none" stroke="#333" stroke-width="1" />
    
    <!-- Horns/ossicones -->
    <rect x="155" cy="100" width="4" height="8" rx="2" fill="#b07030" />
    <rect x="165" cy="100" width="4" height="8" rx="2" fill="#b07030" />
    
    <!-- Bowler hat -->
    <ellipse cx="160" cy="98" rx="18" ry="5" fill="#222" />
    <path d="M150,98 Q160,94 170,98 V90 Q160,85 150,90 Z" fill="#222" />
  </g>
  
  <!-- Orbiting Planets -->
  <g id="planets">
    <!-- Planet 1 -->
    <g transform="translate(80,70)">
      <circle cx="0" cy="0" r="18" fill="url(#planet1)" />
      <path d="M-9,0 A18,5 0 1,0 9,0" fill="none" stroke="#ff7c4d" stroke-width="2" />
      <path d="M-9,0 A18,5 0 1,1 9,0" fill="none" stroke="#ff7c4d" stroke-width="2" />
    </g>
    
    <!-- Planet 2 -->
    <g transform="translate(220,90)">
      <circle cx="0" cy="0" r="15" fill="url(#planet2)" />
      <ellipse cx="0" cy="0" rx="16" ry="4" fill="none" stroke="#4aedc4" stroke-width="1" />
      <ellipse cx="0" cy="0" rx="16" ry="4" fill="none" stroke="#4aedc4" stroke-width="1" transform="rotate(60)" />
    </g>
    
    <!-- Planet 3 -->
    <g transform="translate(160,50)">
      <circle cx="0" cy="0" r="12" fill="url(#planet3)" />
      <circle cx="-4" cy="-3" r="3" fill="#8faad9" />
      <circle cx="5" cy="4" r="2" fill="#8faad9" />
    </g>
  </g>
  
  <!-- Juggling paths -->
  <path d="M160,115 Q130,50 80,70 Q50,10 160,50 Q270,10 220,90 Q260,150 160,115" fill="none" stroke="white" stroke-width="1" stroke-dasharray="2,3" opacity="0.7" />
  
  <!-- Geometric decorative elements -->
  <g id="geo-elements" opacity="0.3">
    <polygon points="40,230 60,250 20,250" fill="white" />
    <rect x="230" y="230" width="20" height="20" rx="3" transform="rotate(30,240,240)" fill="white" />
    <circle cx="270" cy="170" r="15" fill="none" stroke="white" stroke-width="1" />
    <path d="M20,160 L40,140 L60,160 L40,180 Z" fill="none" stroke="white" stroke-width="1" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission effectively captures the prompt of a giraffe in a bowler hat juggling planets with a clear geometric style.

    The giraffe is identifiable, and the planets are creatively integrated into the composition.

    In contrast, Player 1's image lacks clarity in depicting a giraffe or the juggling action, making Player 2's submission more visually appealing and aligned with 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
28
Player 2
43
Rectangles

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

Player 1
5
Player 2
8
Circles

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

Player 1
21
Player 2
18
Ellipses

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

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

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

Player 1
Player 2
6
Groups

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

Player 1
7
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
17

Interactivity Metrics

Animations

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

Player 1
4
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
Player 2
21
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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