Back

SVG Drawing Match #323

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe with a telescope neck gazing at a swirling galaxy"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="neckGradient">
      <stop offset="0%" stop-color="#4A90E2"/>
      <stop offset="100%" stop-color="#9C27B0"/>
    </linearGradient>
    <radialGradient id="galaxyGradient">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="50%" stop-color="#4169E1"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <path d="M150,200 Q100,150 150,100 Q200,150 150,200" fill="#FFA533" stroke="#8B4513" stroke-width="2"/>
  <rect x="100" y="100" width="100" height="100" rx="50" fill="url(#neckGradient)" transform="rotate(45 150 150)"/>
  <circle cx="150" cy="50" r="20" fill="#FFA533">
    <animate attributeName="cy" from="50" to="45" dur="1s" repeatCount="indefinite" />
  </circle>
  <circle cx="140" cy="40" r="3" fill="#000000"/>
  <circle cx="160" cy="40" r="3" fill="#000000"/>
  <path d="M130,35 L145,30 L160,35" fill="#8B4513"/>
  <path d="M120,220 L130,230 L150,220 L140,230 Z" fill="#8B4513"/>
  <path d="M160,220 L170,230 L180,220 L170,210 Z" fill="#8B4513"/>
  <g transform="translate(150, 50)">
    <circle r="80" fill="url(#galaxyGradient)" opacity="0.8"/>
    <circle r="60" fill="url(#galaxyGradient)" opacity="0.6"/>
    <circle r="40" fill="url(#galaxyGradient)" opacity="0.4"/>
    <circle r="20" fill="url(#galaxyGradient)" opacity="0.2"/>
  </g>
  <circle cx="145" cy="40" r="2" fill="#FFFFFF" filter="url(#glow)"/>
  <circle cx="155" cy="40" r="2" fill="#FFFFFF" filter="url(#glow)"/>
  <path d="M140,35 Q130,40 140,45" stroke="#8B4513" stroke-width="2"/>
  <path d="M160,35 Q170,40 160,45" stroke="#8B4513" stroke-width="2"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFC300;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF5733;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#9b59b6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3498db;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="1.5" fill="white" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="black" />
  <g>
    <path d="M150 250 Q130 210 110 190 T70 180 Q90 170 110 150 T160 140 Q180 120 200 140 T220 170 Q240 190 230 210 T210 230 Q190 240 180 250" fill="url(#giraffeGradient)" />
    <path d="M130 270 Q125 265 120 270 T110 260 Q115 255 120 250 T130 245" fill="saddlebrown" />
    <ellipse cx="150" cy="130" rx="10" ry="30" fill="none" stroke="saddlebrown" stroke-width="4" />
    <circle cx="150" cy="100" r="8" fill="gold" />
  </g>
  <g transform="translate(40, -60)">
    <circle cx="200" cy="150" r="60" fill="url(#galaxyGradient)" />
    <path d="M200 150 A40 60 0 1 1 140 150 A40 60 0 1 1 200 150 Z" fill="transparent" stroke="white" stroke-width="1.5" />
    <path d="M200 150 Q175 130 150 150 Q175 170 200 150" fill="none" stroke="white" stroke-width="1.5" />
    <path d="M150 120 C130 110 160 80 160 100 C160 120 140 110 150 120" fill="none" stroke="white" stroke-width="1.5" />
    <path d="M240 150 A40 55 0 1 0 200 150" fill="none" stroke="white" stroke-width="1.5" />
    <g fill="url(#starPattern)">
      <circle cx="180" cy="120" r="2" />
      <circle cx="210" cy="110" r="2" />
      <circle cx="240" cy="130" r="2" />
      <circle cx="170" cy="170" r="2" />
      <circle cx="140" cy="160" r="2" />
    </g>
  </g>
</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 submission creatively integrates the concept of a giraffe with a telescope neck gazing at a swirling galaxy by using a dynamic composition and vibrant colors.

    The swirling lines and gradient effects visually represent the galaxy, adding to the overall appeal.

    Player 1's image, while abstract, lacks clarity in depicting the giraffe and galaxy elements, making Player 2's artwork more successful in adhering to 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
16
Player 2
16
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
9
Player 2
8
Ellipses

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

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

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

Player 1
1
Player 2
3

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
20
Player 2
27
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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