Back

SVG Drawing Match #727

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A rainbow-colored giraffe wearing vintage space boots under a starry night sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Night Sky Background -->
  <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:#1A1A4F;stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#FF0000"/>
      <stop offset="20%" style="stop-color:#FFA500"/>
      <stop offset="40%" style="stop-color:#FFFF00"/>
      <stop offset="60%" style="stop-color:#00FF00"/>
      <stop offset="80%" style="stop-color:#00FFFF"/>
      <stop offset="100%" style="stop-color:#4B0082"/>
    </linearGradient>
    <pattern id="spots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="url(#rainbow)" stroke="#000" stroke-width="0.5"/>
    </pattern>
  </defs>

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

  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white" filter="url(#glow)"/>
    <circle cx="150" cy="80" r="1" fill="white" filter="url(#glow)"/>
    <circle cx="250" cy="30" r="1" fill="white" filter="url(#glow)"/>
    <circle cx="120" cy="150" r="1" fill="white" filter="url(#glow)"/>
    <circle cx="180" cy="120" r="1" fill="white" filter="url(#glow)"/>
    <circle cx="230" cy="180" r="1" fill="white" filter="url(#glow)"/>
  </g>

  <!-- Giraffe Body -->
  <g id="giraffe">
    <path d="M100,150 L120,140 L140,150 L160,140 L180,150 L200,140 L220,150 M100,160 L120,170 L140,160 L160,170 L180,160 L200,170 L220,160" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
    <ellipse cx="140" cy="100" rx="30" ry="40" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
    
    <!-- Giraffe Face Details -->
    <circle cx="130" cy="90" r="8" fill="white"/>
    <circle cx="150" cy="90" r="8" fill="white"/>
    <path d="M130,90 L140,95 L150,90" stroke="#000" stroke-width="2"/>
    <path d="M128,92 L132,92" stroke="#000" stroke-width="1"/>
    <path d="M148,92 L152,92" stroke="#000" stroke-width="1"/>
    
    <!-- Spots -->
    <rect x="100" y="100" width="100" height="100" fill="url(#spots)"/>
  </g>

  <!-- Space Boots -->
  <g id="boots">
    <path d="M140,220 L160,220 L170,210 L180,220 L200,220 L190,230 L170,230 Z" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
    <path d="M140,240 L160,240 L170,250 L180,240 L200,240 L190,260 L170,260 Z" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
    
    <!-- Boot Details -->
    <circle cx="150" cy="225" r="5" fill="#silver"/>
    <circle cx="150" cy="245" r="5" fill="#gold"/>
    <circle cx="175" cy="225" r="5" fill="#silver"/>
    <circle cx="175" cy="245" r="5" fill="#gold"/>
  </g>

  <!-- Grass -->
  <rect x="0" y="280" width="300" height="20" fill="#003300"/>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#123456"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="red"/>
      <stop offset="17%" stop-color="orange"/>
      <stop offset="34%" stop-color="yellow"/>
      <stop offset="51%" stop-color="green"/>
      <stop offset="68%" stop-color="blue"/>
      <stop offset="85%" stop-color="indigo"/>
      <stop offset="100%" stop-color="violet"/>
    </linearGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="2" fill="white" opacity="0.8"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  <g fill="url(#rainbowGradient)">
    <path d="M100,200 Q150,150 200,200 T300,300"/>
    <circle cx="150" cy="200" r="50"/>
  </g>
  <rect x="140" y="240" width="20" height="40" fill="silver"/>
  <rect x="140" y="240" width="20" height="40" fill="silver"/>
  <rect x="160" y="240" width="20" height="40" fill="silver"/>
  <rect x="160" y="240" width="20" height="40" fill="silver"/>
  <circle cx="150" cy="240" r="10" fill="gold"/>
  <circle cx="170" cy="240" r="10" fill="gold"/>
  <g fill="url(#starPattern)">
    <rect x="0" y="0" width="300" height="150"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission captures the concept of a rainbow-colored giraffe more effectively, with the circular shape suggesting the giraffe's head and a gradient that hints at the rainbow theme.

    The vintage space boots are abstractly represented, and the starry night sky is subtly depicted with a dotted pattern.

    Player 1's image is more abstract and less recognizable in terms of adherence to the prompt, lacking clear representation of the giraffe and boots.

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

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

Player 1
3
Player 2
6
Circles

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

Player 1
13
Player 2
4
Ellipses

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

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

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
12

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
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
37
Player 2
3
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
4
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