Back

SVG Drawing Match #2578

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two giraffes in space suits playing chess on the moon."

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0e0e0" />
      <stop offset="100%" stop-color="#a0a0a0" />
    </radialGradient>
    <pattern id="giraffePattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#f0c060" />
      <circle cx="5" cy="5" r="3" fill="#a06020" />
      <circle cx="15" cy="15" r="3" fill="#a06020" />
    </pattern>
  </defs>
  <circle cx="150" cy="250" r="100" fill="url(#moonGradient)" />
  <g transform="translate(50, 50)">
    <ellipse cx="50" cy="150" rx="20" ry="40" fill="url(#giraffePattern)" />
    <circle cx="50" cy="110" r="20" fill="white" />
    <rect x="30" y="110" width="40" height="40" fill="lightblue" stroke="black" />
    <path d="M 40,100 A 10 10 0 0 1 60,100" fill="none" stroke="black" stroke-width="5" />
  </g>
  <g transform="translate(150, 50)">
    <ellipse cx="50" cy="150" rx="20" ry="40" fill="url(#giraffePattern)" />
    <circle cx="50" cy="110" r="20" fill="white" />
    <rect x="30" y="110" width="40" height="40" fill="pink" stroke="black" />
    <path d="M 40,100 A 10 10 0 0 0 60,100" fill="none" stroke="black" stroke-width="5" />
  </g>
  <rect x="100" y="140" width="100" height="40" fill="#402000" stroke="black" />
  <g transform="translate(110,145)">
    <rect x="0" y="0" width="15" height="30" fill="white" />
    <rect x="20" y="0" width="15" height="30" fill="black" />
    <rect x="40" y="0" width="15" height="30" fill="white" />
    <rect x="60" y="0" width="15" height="30" fill="black" />
  </g>
  <circle cx="70" cy="160" r="10" fill="white">
    <animate attributeName="cx" from="70" to="230" dur="5s" repeatCount="indefinite" />
  </circle>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonSurface" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#4a4a4a"/>
      <stop offset="100%" stop-color="#2d2d2d"/>
    </radialGradient>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0b0b3d"/>
      <stop offset="100%" stop-color="#1a1a1a"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  <g opacity="0.8">
    <circle cx="40" cy="50" r="2" fill="#fff" opacity="0.8"/>
    <circle cx="280" cy="120" r="3" fill="#7fffd4"/>
    <circle cx="150" cy="30" r="1.5" fill="#fff"/>
  </g>

  <!-- Moon surface -->
  <path d="M0 250 Q150 280 300 250 L300 300 0 300Z" fill="url(#moonSurface)"/>
  <circle cx="200" cy="260" r="15" fill="#3a3a3a"/>
  <circle cx="80" cy="270" r="8" fill="#404040"/>

  <!-- Chessboard -->
  <g transform="translate(100 150) rotate(15)">
    <rect x="-40" y="-40" width="80" height="80" fill="#654321"/>
    <path d="M-40-40v80h80v-80zm10 0v80m10-80v80m10-80v80m10-80v80m10-80v80" stroke="#fff" stroke-width="2"/>
    <path d="M-40-40h80v80h-80zm10 0v80m10-80v80m10-80v80m10-80v80m10-80v80" stroke="#fff" stroke-width="2"/>
  </g>

  <!-- Giraffe 1 -->
  <g transform="translate(70 180)">
    <path d="M0 0l20-100 10 100" fill="#ffd700"/>
    <circle cx="10" cy="-110" r="15" fill="#ffe4b5"/>
    <rect x="-5" y="-120" width="30" height="20" rx="5" fill="#2f4f4f"/>
    <path d="M-15-95a20 20 0 0 1 40 0" fill="#fff" opacity="0.2"/>
    <rect x="-8" cy="-50" y="-80" width="16" height="60" fill="#ffd700"/>
  </g>

  <!-- Giraffe 2 -->
  <g transform="translate(200 160) scale(-1 1)">
    <path d="M0 0l20-80 10 80" fill="#ff4500"/>
    <circle cx="10" cy="-90" r="12" fill="#ffa07a"/>
    <rect x="-7" y="-100" width="24" height="18" rx="4" fill="#1e90ff"/>
    <path d="M-12-80a18 18 0 0 1 36 0" fill="#fff" opacity="0.2"/>
    <rect x="-6" cy="-40" y="-70" width="12" height="50" fill="#ff4500"/>
  </g>

  <!-- Chess pieces -->
  <path d="M140 130h4v20h-4z" fill="#fff"/>
  <path d="M160 110h4v25h-4z" fill="#000"/>
  <circle cx="150" cy="140" r="5" fill="#fff" filter="url(#glow)"/>

  <!-- Earth -->
  <circle cx="250" cy="50" r="20" fill="#1e90ff"/>
  <path d="M250 35a15 15 0 0 1 10 25" fill="#228b22"/>
  <path d="M240 45a10 10 0 0 1 15-5" fill="#f0e68c"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt with clear depictions of two giraffes in space suits, a chessboard, and a moon-like setting, all rendered with a creative use of shapes and colors.

    Player 1's submission is less detailed and lacks clarity in representing the giraffes or the setting, making it less visually appealing and less aligned with the prompt.

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
18
Player 2
26
Rectangles

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

Player 1
8
Player 2
6
Circles

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

Player 1
6
Player 2
9
Ellipses

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

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

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

Player 1
3
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
18

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
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
4
Player 2
56
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

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