Back

SVG Drawing Match #1524

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon giraffe floating in space with a rainbow spacesuit"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="neonGlow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <radialGradient id="spaceGradient" cx="50%" cy="50%">
      <stop offset="0%" style="stop-color:#000"/>
      <stop offset="100%" style="stop-color:#020823"/>
    </radialGradient>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0000"/>
      <stop offset="20%" style="stop-color:#ff9900"/>
      <stop offset="40%" style="stop-color:#ffff00"/>
      <stop offset="60%" style="stop-color:#33ff00"/>
      <stop offset="80%" style="stop-color:#0099ff"/>
      <stop offset="100%" style="stop-color:#9900ff"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#spaceGradient)"/>
  <g transform="translate(150,150)">
    <path d="M0,0 L50,50 Q80,60 100,50 L100,-50 Q80,-60 50,-50 Z" fill="url(#rainbow)" filter="url(#neonGlow)"/>
    <path d="M0,0 L50,50 Q80,60 100,50 L100,-50 Q80,-60 50,-50 Z" stroke="#0ff" stroke-width="2" fill="none"/>
    <circle cx="0" cy="0" r="20" fill="#0ff" filter="url(#neonGlow)"/>
    <circle cx="0" cy="0" r="15" fill="#fff"/>
    <path d="M-30,30 L30,30 Q40,40 30,50 L-30,50 Q-40,40 -30,30" fill="#0ff" filter="url(#neonGlow)"/>
    <path d="M-30,-30 L30,-30 Q40,-40 30,-50 L-30,-50 Q-40,-40 -30,-30" fill="#0ff" filter="url(#neonGlow)"/>
    <circle cx="20" cy="-20" r="5" fill="#fff"/>
    <circle cx="-20" cy="-20" r="5" fill="#fff"/>
    <circle cx="20" cy="20" r="5" fill="#fff"/>
    <circle cx="-20" cy="20" r="5" fill="#fff"/>
  </g>
  <g transform="translate(150,150) rotate(45)">
    <rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
    <rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
  </g>
  <g transform="translate(150,150) rotate(-45)">
    <rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
    <rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
  </g>
  <g transform="translate(150,150) rotate(90)">
    <rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
    <rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
  </g>
  <g transform="translate(150,150) rotate(180)">
    <rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
    <rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
  </g>
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="50" fill="none" stroke="#0ff" stroke-width="4" filter="url(#neonGlow)"/>
  </g>
  <g transform="translate(100,100)">
    <circle cx="0" cy="0" r="3" fill="#fff"/>
    <circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
  </g>
  <g transform="translate(200,200)">
    <circle cx="0" cy="0" r="3" fill="#fff"/>
    <circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
  </g>
  <g transform="translate(50,50)">
    <circle cx="0" cy="0" r="3" fill="#fff"/>
    <circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
  </g>
  <g transform="translate(250,250)">
    <circle cx="0" cy="0" r="3" fill="#fff"/>
    <circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starfield)" />
  <defs>
    <pattern id="starfield" patternUnits="userSpaceOnUse" width="300" height="300">
      <circle cx="150" cy="150" r="1" fill="#fff" />
      <circle cx="75" cy="225" r="0.5" fill="#fff" />
      <circle cx="225" cy="75" r="0.5" fill="#fff" />
      <circle cx="50" cy="150" r="0.25" fill="#fff" />
      <circle cx="250" cy="150" r="0.25" fill="#fff" />
      <!-- More stars... -->
    </pattern>
  </defs>

  <!-- Giraffe Body -->
  <path d="M150 150C150 120 180 100 210 100C240 100 270 120 270 150C270 180 240 200 210 200C180 200 150 180 150 150Z" fill="url(#giraffe-fur)" />
  <defs>
    <pattern id="giraffe-fur" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect x="0" y="0" width="10" height="10" fill="#F7D2C4" rx="1" />
      <rect x="5" y="0" width="5" height="5" fill="#FFC499" rx="0.5" />
    </pattern>
  </defs>

  <!-- Rainbow Spacesuit -->
  <path d="M210 100C210 80 230 70 250 70C270 70 290 80 290 100C290 120 270 130 250 130C230 130 210 120 210 100Z" fill="url(#rainbow)" />
  <defs>
    <linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#FF69B4" />
      <stop offset="0.2" stop-color="#FFC67D" />
      <stop offset="0.4" stop-color="#F7DC6F" />
      <stop offset="0.6" stop-color="#8BC34A" />
      <stop offset="0.8" stop-color="#45B3FA" />
      <stop offset="1" stop-color="#9C27B0" />
    </linearGradient>
  </defs>

  <!-- Neon Accents -->
  <path d="M250 130C250 120 270 110 290 110C310 110 330 120 330 130C330 140 310 150 290 150C270 150 250 140 250 130Z" fill="none" stroke="url(#neon)" stroke-width="2" />
  <path d="M210 100C210 80 230 70 250 70C270 70 290 80 290 100C290 120 270 130 250 130C230 130 210 120 210 100Z" fill="none" stroke="url(#neon)" stroke-width="2" />
  <defs>
    <linearGradient id="neon" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#39FF14" />
      <stop offset="1" stop-color="#FF8F00" />
    </linearGradient>
  </defs>

  <!-- Face and Details -->
  <circle cx="210" cy="120" r="10" fill="#F7D2C4" />
  <circle cx="210" cy="120" r="5" fill="#FFC499" />
  <circle cx="205" cy="125" r="2" fill="#000" />
  <circle cx="215" cy="125" r="2" fill="#000" />
  <path d="M200 130C200 140 220 150 240 150C260 150 280 140 280 130C280 120 260 110 240 110C220 110 200 120 200 130Z" fill="#FFC499" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 1

Judge's Analysis

    Player 1's submission effectively captures the concept with a vibrant neon color scheme and distinct space elements, adhering closely to the prompt.

    The use of glowing outlines and a rainbow gradient creates a visually appealing and technically polished design.

    Player 2's image, while creative, lacks clarity and the strong neon effect, making Player 1's image more 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
17
Rectangles

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

Player 1
9
Player 2
3
Circles

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

Player 1
15
Player 2
9
Ellipses

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

Player 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
4
Player 2
5
Groups

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
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
10
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
22
Player 2
30
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
3
Player 2
4
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