Back

SVG Drawing Match #169

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe with butterfly wings dancing on a cloud under a crescent moon"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Create sky background -->
  <rect x="0" y="0" width="300" height="300" fill="#8EC0E4" />
  
  <!-- Draw crescent moon -->
  <circle cx="50" cy="50" r="40" fill="#F5DEB3" />
  <circle cx="90" cy="50" r="40" fill="#8EC0E4" />
  
  <!-- Draw cloud -->
  <circle cx="200" cy="70" r="30" fill="#FFFFFF" />
  <circle cx="240" cy="70" r="40" fill="#FFFFFF" />
  <circle cx="280" cy="70" r="30" fill="#FFFFFF" />
  
  <!-- Draw giraffe body -->
  <rect x="120" y="120" width="50" height="100" fill="#FFD700" />
  
  <!-- Draw giraffe neck -->
  <rect x="120" y="80" width="20" height="50" fill="#FFD700" />
  
  <!-- Draw giraffe head -->
  <circle cx="130" cy="75" r="20" fill="#FFD700" />
  
  <!-- Draw giraffe spots -->
  <circle cx="140" cy="115" r="5" fill="#8B4513" />
  <circle cx="160" cy="140" r="5" fill="#8B4513" />
  <circle cx="140" cy="160" r="5" fill="#8B4513" />
  
  <!-- Draw butterfly wings -->
  <path d="M230,150 C220,130 210,150 200,140 C190,130 200,120 200,100 C200,120 190,130 180,140 C170,150 160,130 150,150 C160,170 170,150 180,160 C190,170 200,190 200,200 C200,190 210,170 220,160 C230,160 240,170 250,160 Z" fill="#ADFF2F" />
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="cloudGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#fff" />
      <stop offset="100%" stop-color="#eef" />
    </linearGradient>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffa" />
      <stop offset="100%" stop-color="#ff5" />
    </radialGradient>
    <pattern id="butterflyWing" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="20" height="20" fill="url(#butterflyGradient)" />
      <circle cx="10" cy="10" r="5" fill="url(#butterflyGradient)" />
    </pattern>
    <linearGradient id="butterflyGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#f0f" />
      <stop offset="50%" stop-color="#0ff" />
      <stop offset="100%" stop-color="#f0f" />
    </linearGradient>
  </defs>
  <circle cx="240" cy="80" r="30" fill="url(#moonGradient)" />
  <g fill="url(#cloudGradient)">
    <path d="M150,200 c-80,0 -40,-100 0,-100 40,0 80,100 0,100 z" />
    <path d="M150,150 c-60,0 -30,-80 0,-80 30,0 60,80 0,80 z" />
  </g>
  <g fill="url(#butterflyWing)">
    <path d="M100,200 q50,-40 100,0 50,40 0,0 z" />
    <path d="M100,200 q-50,-40 -100,0 -50,40 0,0 z" />
  </g>
  <path d="M150,220 c0,-20 50,-20 50,0 0,20 -50,20 -50,0 z" fill="#080" />
  <path d="M150,220 c-15,0 -15,15 0,15 15,0 15,-15 0,-15 z" fill="#f80" />
  <path d="M150,240 q0,-20 30,-20 30,0 30,20 0,20 -30,20 -30,0 -30,-20 z" fill="#080" />
  <path d="M150,260 q0,-20 20,-20 20,0 20,20 0,20 -20,20 -20,0 -20,-20 z" fill="#f80" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's submission more closely adheres to the prompt by clearly depicting a giraffe with butterfly wings on a cloud under a crescent moon.

    The simple yet effective use of colors and shapes creates a whimsical and recognizable scene.

    In contrast, Player 2's image lacks clear elements of the prompt, making it less effective in conveying the intended idea.

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

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

Player 1
3
Player 2
1
Circles

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

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

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
7

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
10
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
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