Back

SVG Drawing Match #954

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating giraffe balloon in a surreal, starry sky"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <radialGradient id="skyGradient" cx="50%" cy="50%" r="80%">
            <stop offset="0%" stop-color="#001848"/>
            <stop offset="100%" stop-color="#0a2f6c"/>
        </radialGradient>
        <pattern id="starsPattern" x="0" y="0" width=".1" height=".1" patternUnits="userSpaceOnUse">
            <circle cx="3" cy="3" r="1" fill="#ffffff"/>
            <circle cx="10" cy="8" r="1.5" fill="#b0c5ff"/>
            <circle cx="6" cy="15" r="1" fill="#ffffff"/>
            <circle cx="15" cy="12" r="1.2" fill="#b0c5ff"/>
            <circle cx="18" cy="3" r="1" fill="#ffffff"/>
        </pattern>
    </defs>
    <rect width="300" height="300" fill="url(#skyGradient)" />
    <rect width="300" height="300" fill="url(#starsPattern)" />

    <g transform="translate(150, 150)">
        <path d="M10,-20 Q0,-10 -10,-20 Q-15,-30 -10,-40 Q0,-30 10,-40 Q20,-30 10,-20" fill="#fcc73b"/>
        <ellipse cx="0" cy="-30" rx="10" ry="14" fill="#ffbd1a"/>
        <circle cx="10" cy="-40" r="2" fill="#5a3f24"/>
        <circle cx="-10" cy="-40" r="2" fill="#5a3f24"/>
        <path d="M-10,-20 Q0,0 10,-20" fill="#5a3f24"/>
    </g>

    <line x1="150" y1="150" x2="150" y2="300" stroke="#ffffff" stroke-width="1"/>

    <g transform="translate(230, 80) scale(0.3)">
        <path d="M10,-20 Q0,-10 -10,-20 Q-15,-30 -10,-40 Q0,-30 10,-40 Q20,-30 10,-20" fill="#fcc73b"/>
        <ellipse cx="0" cy="-30" rx="10" ry="14" fill="#ffbd1a"/>
        <circle cx="10" cy="-40" r="2" fill="#5a3f24"/>
        <circle cx="-10" cy="-40" r="2" fill="#5a3f24"/>
        <path d="M-10,-20 Q0,0 10,-20" fill="#5a3f24"/>
    </g>
    <line x1="230" y1="80" x2="70" y2="300" stroke="#ffffff" stroke-width="1"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#000033"/>
      <stop offset="100%" stop-color="#000066"/>
    </radialGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <circle cx="100" cy="80" r="5" fill="url(#starGlow)"/>
  <circle cx="250" cy="120" r="4" fill="url(#starGlow)"/>
  <circle cx="50" cy="200" r="3" fill="url(#starGlow)"/>
  <circle cx="150" cy="250" r="6" fill="url(#starGlow)"/>
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.5"/>
  <path d="M150,100 C160,80 180,70 200,80 C220,90 230,110 220,130 C210,150 190,160 170,150 C150,140 140,120 150,100 Z" fill="#FFD700" stroke="#D4AF37" stroke-width="5"/>
  <ellipse cx="200" cy="120" rx="10" ry="15" fill="#FFD700"/>
  <ellipse cx="140" cy="115" rx="8" ry="12" fill="#FFD700"/>
  <path d="M175,90 C180,85 190,85 195,90 C200,95 200,105 195,110 C190,115 180,115 175,110 C170,105 170,95 175,90 Z" fill="#D4AF37"/>
  <path d="M165,100 C170,95 180,95 185,100 C190,105 190,115 185,120 C180,125 170,125 165,120 C160,115 160,105 165,100 Z" fill="#D4AF37"/>
  <path d="M185,130 C190,125 200,125 205,130 C210,135 210,145 205,150 C200,155 190,155 185,150 C180,145 180,135 185,130 Z" fill="#D4AF37"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image captures the surreal aspect of the prompt with a minimalist design that effectively showcases a giraffe balloon floating in a starry sky.

    The use of simple lines and shapes contributes to a sense of whimsy and imagination.

    Player 2's image, while colorful and clear, lacks the creativity and adherence to the giraffe aspect of 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
19
Player 2
13
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
9
Player 2
5
Ellipses

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

Player 1
2
Player 2
2
Lines

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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