Back

SVG Drawing Match #1107

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe in a spacesuit floating among geometric planets"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with animated stars -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  <defs>
    <linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#0b0b2d" />
      <stop offset="1" style="stop-color:#000000" />
    </linearGradient>
  </defs>

  <!-- Geometric planets -->
  <g transform="translate(50,50)">
    <!-- Planet 1 - Triangle -->
    <path d="M-20,-20 L20,0 L-20,20 Z" fill="url(#planet1)" stroke="#fff" stroke-width="2"/>
    <defs>
      <linearGradient id="planet1" x1="0" y1="0" x2="40" y2="40">
        <stop offset="0" style="stop-color:#ff6b6b" />
        <stop offset="1" style="stop-color:#ff9f43" />
      </linearGradient>
    </defs>
  </g>

  <g transform="translate(200,100)">
    <!-- Planet 2 - Circle with pattern -->
    <path d="M-15,0 A15,15 0 1,0 15,0 A15,15 0 1,0 -15,0 Z" fill="url(#planet2)" stroke="#fff" stroke-width="2">
      <pattern id="planet2Pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
        <circle cx="15" cy="15" r="5" fill="#ffffff" />
      </pattern>
    </path>
    <defs>
      <linearGradient id="planet2" x1="0" y1="0" x2="30" y2="30">
        <stop offset="0" style="stop-color:#4facfe" />
        <stop offset="1" style="stop-color:#00f2fe" />
      </linearGradient>
    </defs>
  </g>

  <g transform="translate(100,200)">
    <!-- Planet 3 - Hexagon -->
    <path d="M-10,17 L5,10 L10,17 L8,24 L-8,24 L-10,17 Z" fill="url(#planet3)" stroke="#fff" stroke-width="2"/>
    <defs>
      <linearGradient id="planet3" x1="0" y1="0" x2="20" y2="20">
        <stop offset="0" style="stop-color:#a8edea" />
        <stop offset="1" style="stop-color:#fed6e3" />
      </linearGradient>
    </defs>
  </g>

  <!-- Giraffe in spacesuit -->
  <g transform="translate(150,150)">
    <!-- Spacesuit body -->
    <path d="M0,0 L60,0 Q70,0 70,-20 L70,-60 Q70,-80 60,-80 L0,-80 Q-10,-80 -10,-60 L-10,-20 Q-10,0 0,0 Z" fill="url(#suitGradient)" stroke="#333" stroke-width="2"/>
    <defs>
      <linearGradient id="suitGradient" x1="0" y1="0" x2="0" y2="1">
        <stop offset="0" style="stop-color:#ffd700" />
        <stop offset="1" style="stop-color:#808080" />
      </linearGradient>
    </defs>

    <!-- Giraffe head -->
    <g transform="translate(20,-40)">
      <path d="M0,0 L40,0 Q45,0 45,-15 L45,-35 Q45,-40 40,-40 L0,-40 Q-5,-40 -5,-35 L-5,-15 Q-5,0 0,0 Z" fill="#ffffff" stroke="#333" stroke-width="2"/>
      <!-- Face details -->
      <circle cx="15" cy="-25" r="5" fill="#000000" />
      <circle cx="25" cy="-25" r="5" fill="#000000" />
      <path d="M20,-30 Q25,-32.5 20,-35" stroke="#000000" stroke-width="2" fill="#000000"/>
    </g>

    <!-- Legs -->
    <path d="M20,-60 L25,-80" stroke="#333" stroke-width="4"/>
    <path d="M35,-60 L30,-80" stroke="#333" stroke-width="4"/>
  </g>

  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="150" cy="100" r="1" fill="white"/>
    <circle cx="250" cy="200" r="1" fill="white"/>
    <circle cx="100" cy="250" r="1" fill="white"/>
    <circle cx="200" cy="150" r="1" fill="white"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1b2735"/>
      <stop offset="100%" stop-color="#090a0f"/>
    </radialGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#1e90ff"/>
      <stop offset="100%" stop-color="#00bfff"/>
    </radialGradient>
    <radialGradient id="helmetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.7"/>
      <stop offset="100%" stop-color="#a9a9a9" stop-opacity="0.3"/>
    </radialGradient>
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#7b68ee"/>
    </linearGradient>
    <pattern id="patternStars" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="0.5" fill="#ffffff" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  
  <!-- Geometric Planets -->
  <circle cx="60" cy="60" r="30" fill="url(#planetGradient1)" />
  <polygon points="200,80 220,100 200,120 180,100" fill="url(#planetGradient2)" />
  <circle cx="240" cy="220" r="40" fill="url(#planetGradient1)" />
  <polygon points="100,250 130,270 100,290 70,270" fill="url(#planetGradient2)" />
  
  <!-- Spacesuit Giraffe Body -->
  <ellipse cx="150" cy="180" rx="20" ry="40" fill="url(#suitGradient)" />
  
  <!-- Spacesuit Legs -->
  <rect x="140" y="220" width="5" height="20" fill="#2f4f4f" />
  <rect x="155" y="220" width="5" height="20" fill="#2f4f4f" />
  
  <!-- Spacesuit Neck -->
  <rect x="145" y="140" width="10" height="40" fill="url(#suitGradient)" />
  
  <!-- Spacesuit Helmet -->
  <circle cx="150" cy="120" r="20" fill="url(#helmetGradient)" stroke="#ffffff" stroke-width="2" />
  
  <!-- Giraffe Head -->
  <ellipse cx="150" cy="100" rx="10" ry="15" fill="#f5deb3" />
  <ellipse cx="152" cy="98" rx="2" ry="4" fill="#000" />
  <ellipse cx="148" cy="98" rx="2" ry="4" fill="#000" />
  
  <!-- Giraffe Spots -->
  <circle cx="145" cy="185" r="2" fill="#654321" />
  <circle cx="155" cy="195" r="2" fill="#654321" />
  <circle cx="150" cy="205" r="2" fill="#654321" />
  
  <!-- Neck Stripes -->
  <line x1="150" y1="140" x2="150" y2="180" stroke="#ffffff" stroke-width="1" />
  <line x1="152" y1="140" x2="152" y2="180" stroke="#ffffff" stroke-width="1" />
  <line x1="148" y1="140" x2="148" y2="180" stroke="#ffffff" stroke-width="1" />
  
  <!-- Stars -->
  <rect width="300" height="300" fill="url(#patternStars)" opacity="0.3" />
  
  <!-- Geometric Accents -->
  <line x1="0" y1="0" x2="300" y2="300" stroke="#ffffff" stroke-width="0.5" opacity="0.1" />
  <line x1="300" y1="0" x2="0" y2="300" stroke="#ffffff" stroke-width="0.5" opacity="0.1" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission more effectively adheres to the prompt with a clearer depiction of a giraffe in a spacesuit, surrounded by geometric planets.

    The use of vibrant colors and geometric shapes enhances the visual appeal and creativity.

    In contrast, Player 1's image lacks clarity and detail in representing a giraffe and the spacesuit concept.

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
17
Player 2
23
Rectangles

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

Player 1
1
Player 2
5
Circles

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

Player 1
8
Player 2
7
Ellipses

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

Player 1
Player 2
4
Lines

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

Player 1
Player 2
5
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
8
Player 2
Groups

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

Player 1
6
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
14

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
5
Player 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
41
Player 2
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
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