Back

SVG Drawing Match #108

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe with a constellation-patterned neck under a starry night sky"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starry-night-sky)" />
  <linearGradient id="starry-night-sky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#212121" stop-opacity="1" />
    <stop offset="1" stop-color="#1a1a1a" stop-opacity="1" />
  </linearGradient>
  <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
    <circle cx="5" cy="5" r="1" fill="#fff" opacity="0.5" />
  </pattern>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)" />

  <!-- Giraffe -->
  <g transform="translate(150, 150)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="40" ry="60" fill="#f0f0f0" />
    <!-- Neck -->
    <g transform="translate(0, -60)">
      <path d="M 0,0 C 0,-20 20,-40 40,-40 L 80,-40 C 100,-40 120,-20 120,0 L 120,20 C 120,40 100,60 80,60 L 40,60 C 20,60 0,40 0,20 Z" fill="url(#constellation-pattern)" />
      <linearGradient id="constellation-pattern" x1="0" y1="0" x2="0" y2="1">
        <stop offset="0" stop-color="#fff" stop-opacity="0.5" />
        <stop offset="0.5" stop-color="#fff" stop-opacity="0.2" />
        <stop offset="1" stop-color="#fff" stop-opacity="0.5" />
      </linearGradient>
      <pattern id="constellation" width="20" height="20" patternUnits="userSpaceOnUse">
        <circle cx="10" cy="10" r="2" fill="#fff" opacity="0.5" />
        <circle cx="5" cy="15" r="1" fill="#fff" opacity="0.5" />
        <circle cx="15" cy="15" r="1" fill="#fff" opacity="0.5" />
      </pattern>
      <rect x="-40" y="-40" width="80" height="80" fill="url(#constellation)" />
    </g>
    <!-- Head -->
    <g transform="translate(0, -120)">
      <ellipse cx="0" cy="0" rx="20" ry="30" fill="#f0f0f0" />
      <!-- Eyes -->
      <circle cx="-10" cy="0" r="5" fill="#000" />
      <circle cx="10" cy="0" r="5" fill="#000" />
    </g>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Night Background -->
  <rect width="100%" height="100%" fill="darkblue" />
  <defs>
    <radialGradient id="starry-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:white; stop-opacity:0.7" />
      <stop offset="100%" style="stop-color:transparent; stop-opacity:0" />
    </radialGradient>
    <pattern id="constellation-pattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="5" cy="5" r="1.5" fill="white" />
      <circle cx="15" cy="15" r="1" fill="white" />
      <circle cx="10" cy="10" r="1" fill="white" />
      <line x1="5" y1="5" x2="15" y2="15" stroke="white" stroke-width="0.3" />
    </pattern>
  </defs>
  <!-- Stars -->
  <g>
    <circle cx="30" cy="30" r="2" fill="white" />
    <circle cx="80" cy="70" r="1.5" fill="white" />
    <circle cx="130" cy="40" r="2" fill="white" />
    <circle cx="200" cy="100" r="1.8" fill="white" />
    <circle cx="250" cy="80" r="1.5" fill="white" />
    <circle cx="220" cy="180" r="1.8" fill="white" />
    <circle cx="50" cy="250" r="1.6" fill="white" />
  </g>
  <!-- Giraffe Body -->
  <path d="M150 220 Q140 180 170 160 Q200 140 190 180 Q180 200 150 220" fill="#c2a662" />
  <!-- Giraffe Neck with Constellation Pattern -->
  <rect x="160" y="100" width="20" height="80" fill="url(#constellation-pattern)" />
  <!-- Giraffe Head -->
  <path d="M170 80 Q166 75 162 75 Q158 75 154 80 Q152 85 150 90 Q156 95 166 95 Q176 95 170 80" fill="#c2a662" />
  <!-- Giraffe Ears -->
  <path d="M164 72 L162 66 L166 66 Z" fill="#c2a662" />
  <path d="M156 72 L154 66 L158 66 Z" fill="#c2a662" />
  <!-- Giraffe Eyes -->
  <circle cx="165" cy="84" r="2" fill="black" />
  <circle cx="158" cy="84" r="2" fill="black" />
  <!-- Giraffe Horns -->
  <rect x="162" y="64" width="2" height="6" fill="#8b6e4e" />
  <rect x="166" y="64" width="2" height="6" fill="#8b6e4e" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's image more effectively adheres to the prompt by incorporating a giraffe-like figure with a visible constellation pattern on its neck and a starry night sky background.

    The use of color and composition enhances the visibility of the stars and the theme.

    Player 1's image lacks clear representation of the giraffe and constellation elements, making it less visually and contextually 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
12
Player 2
21
Rectangles

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

Player 1
3
Player 2
4
Circles

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

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

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
5

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
3
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
9
Player 2
18
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
Player 2
2
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