Back

SVG Drawing Match #588

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe with a neck made of spiraling rainbows reaching for a starry fruit"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Starry Night -->
  <rect width="300" height="300" fill="navy" />
  <g id="stars">
    <!-- Generating random stars in the background -->
    <circle cx="100" cy="100" r="1" fill="white" />
    <!-- Add more stars as needed -->
  </g>
  
  <!-- Giraffe Body -->
  <rect x="120" y="100" width="50" height="80" fill="sandybrown" />
  
  <!-- Giraffe Neck - Spiraling Rainbows -->
  <path fill="none" stroke="url(#rainbow)" stroke-width="10"
        d="M145 120 Q160 105 170 135 Q180 125 170 160 Q160 150 180 180 Q190 170 200 200 Q210 190 220 220 Q230 210 240 240 Q250 230 260 260" />
  
  <!-- Giraffe Head -->
  <circle cx="145" cy="90" r="20" fill="sandybrown" />
  
  <!-- Giraffe's Eye -->
  <circle cx="135" cy="85" r="2" fill="black" />
  
  <!-- Starry Fruit -->
  <circle cx="250" cy="50" r="15" fill="yellow" />
  
  <!-- Rainbow Gradient -->
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="red" />
      <stop offset="20%" stop-color="orange" />
      <stop offset="40%" stop-color="yellow" />
      <stop offset="60%" stop-color="green" />
      <stop offset="80%" stop-color="blue" />
      <stop offset="100%" stop-color="purple" />
    </linearGradient>
  </defs>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="giraffeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fbebaa"/>
      <stop offset="100%" stop-color="#e89e52"/>
    </radialGradient>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white"/>
      <stop offset="100%" stop-color="yellow"/>
    </radialGradient>
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="red"/>
      <stop offset="16.67%" stop-color="orange"/>
      <stop offset="33.33%" stop-color="yellow"/>
      <stop offset="50%" stop-color="green"/>
      <stop offset="66.67%" stop-color="blue"/>
      <stop offset="83.33%" stop-color="indigo"/>
      <stop offset="100%" stop-color="violet"/>
    </linearGradient>
    <pattern id="starryFruitPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1.5" fill="white"/>
      <circle cx="8" cy="8" r="1.5" fill="white"/>
    </pattern>
  </defs>
  <g>
    <ellipse cx="100" cy="230" rx="35" ry="50" fill="url(#giraffeGradient)"/>
    <path d="M135,230 Q150,210 140,180 Q150,130 200,100" stroke="url(#rainbowGradient)" stroke-width="10" fill="none"/>
    <circle cx="200" cy="100" r="30" fill="url(#starryFruitPattern)"/>
    <circle cx="200" cy="100" r="15" fill="url(#starGradient)" opacity="0.7"/>
  </g>
  <circle cx="120" cy="250" r="10" fill="#e89e52"/>
  <circle cx="150" cy="230" r="7" fill="#e89e52"/>
  <circle cx="115" cy="280" r="4" fill="#e89e52"/>
  <circle cx="130" cy="290" r="6" fill="#e89e52"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt with a clear depiction of a giraffe's head and a spiral rainbow neck reaching for a starry fruit.

    The technical execution shows a strong grasp of color blending and composition, creating a visually appealing and creative interpretation.

    Player 1's image, while colorful, lacks the clarity and adherence to the prompt in terms of depicting a giraffe and the starry fruit.

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
7
Player 2
10
Rectangles

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

Player 1
2
Player 2
Circles

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
10

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