Back

SVG Drawing Match #2524

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two giraffes tangled in fairy lights under a crescent moon."

SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Night sky gradient -->
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0d1b2a"/>
      <stop offset="100%" stop-color="#1b263b"/>
    </linearGradient>
    <!-- Moon glow gradient -->
    <radialGradient id="moonGrad" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#fff9c4"/>
      <stop offset="100%" stop-color="#f0e68c"/>
    </radialGradient>
    <!-- Giraffe body gradient -->
    <linearGradient id="giraffeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fdd835"/>
      <stop offset="100%" stop-color="#f9a825"/>
    </linearGradient>
    <!-- Glow filter for stars and lights -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1.5" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Stars scattered -->
  <g fill="#ffffff" filter="url(#glow)" opacity="0.8">
    <circle cx="30" cy="40" r="1.5"/>
    <circle cx="80" cy="20" r="1"/>
    <circle cx="150" cy="60" r="1.2"/>
    <circle cx="200" cy="30" r="1.8"/>
    <circle cx="250" cy="70" r="1"/>
    <circle cx="270" cy="120" r="1.3"/>
    <circle cx="50" cy="100" r="1"/>
    <circle cx="120" cy="150" r="1.4"/>
    <circle cx="180" cy="110" r="1"/>
    <circle cx="220" cy="160" r="1.2"/>
  </g>

  <!-- Crescent moon -->
  <path d="M230,40 
           a40,40 0 1,0 0,80 
           a32,32 0 1,1 0,-80"
        fill="url(#moonGrad)" filter="url(#glow)"/>

  <!-- Giraffes group -->
  <g id="giraffes">
    <!-- Left giraffe -->
    <g id="leftGiraffe">
      <!-- Body & neck & head -->
      <path d="M100,280 
               Q95,240 110,200 
               Q115,180 120,160 
               Q125,180 130,200 
               Q145,240 140,280 Z"
            fill="url(#giraffeGrad)" stroke="#b8860b" stroke-width="2"/>
      <!-- Spots -->
      <circle cx="115" cy="240" r="6" fill="#b8860b"/>
      <circle cx="125" cy="260" r="5" fill="#b8860b"/>
      <circle cx="105" cy="260" r="4" fill="#b8860b"/>
      <circle cx="120" cy="220" r="7" fill="#b8860b"/>
      <circle cx="130" cy="240" r="5" fill="#b8860b"/>
      <circle cx="110" cy="210" r="4" fill="#b8860b"/>
      <!-- Ears & horns -->
      <circle cx="120" cy="155" r="3" fill="#f9a825"/>
      <circle cx="124" cy="155" r="3" fill="#f9a825"/>
      <ellipse cx="118" cy="148" rx="6" ry="3" fill="#fdd835"/>
      <!-- Fairy light wire -->
      <path id="wire1" d="M107,280 Q100,240 115,200 Q120,180 125,160" fill="none" stroke="#333" stroke-width="1"/>
      <!-- Fairy lights on wire -->
      <circle cx="107" cy="280" r="3.5" fill="#ff7272" filter="url(#glow)"/>
      <circle cx="103" cy="256" r="3.5" fill="#72ff72" filter="url(#glow)"/>
      <circle cx="113" cy="230" r="3.5" fill="#7272ff" filter="url(#glow)"/>
      <circle cx="121" cy="205" r="3.5" fill="#ffff72" filter="url(#glow)"/>
      <circle cx="127" cy="185" r="3.5" fill="#ff72ff" filter="url(#glow)"/>
      <circle cx="124" cy="168" r="3.5" fill="#72ffff" filter="url(#glow)"/>
      <circle cx="125" cy="160" r="3.5" fill="#ffd972" filter="url(#glow)"/>
    </g>

    <!-- Right giraffe -->
    <g id="rightGiraffe">
      <path d="M200,280 
               Q205,240 190,200 
               Q185,180 180,160 
               Q175,180 170,200 
               Q155,240 160,280 Z"
            fill="url(#giraffeGrad)" stroke="#b8860b" stroke-width="2"/>
      <!-- Spots -->
      <circle cx="185" cy="240" r="6" fill="#b8860b"/>
      <circle cx="175" cy="260" r="5" fill="#b8860b"/>
      <circle cx="195" cy="260" r="4" fill="#b8860b"/>
      <circle cx="180" cy="220" r="7" fill="#b8860b"/>
      <circle cx="170" cy="240" r="5" fill="#b8860b"/>
      <circle cx="190" cy="210" r="4" fill="#b8860b"/>
      <!-- Ears & horns -->
      <circle cx="180" cy="155" r="3" fill="#f9a825"/>
      <circle cx="176" cy="155" r="3" fill="#f9a825"/>
      <ellipse cx="182" cy="148" rx="6" ry="3" fill="#fdd835"/>
      <!-- Fairy light wire -->
      <path id="wire2" d="M193,280 Q200,240 185,200 Q180,180 175,160" fill="none" stroke="#333" stroke-width="1"/>
      <!-- Fairy lights on wire -->
      <circle cx="193" cy="280" r="3.5" fill="#72ff72" filter="url(#glow)"/>
      <circle cx="197" cy="256" r="3.5" fill="#ff7272" filter="url(#glow)"/>
      <circle cx="187" cy="230" r="3.5" fill="#ffd972" filter="url(#glow)"/>
      <circle cx="179" cy="205" r="3.5" fill="#7272ff" filter="url(#glow)"/>
      <circle cx="173" cy="185" r="3.5" fill="#72ffff" filter="url(#glow)"/>
      <circle cx="176" cy="168" r="3.5" fill="#ff72ff" filter="url(#glow)"/>
      <circle cx="175" cy="160" r="3.5" fill="#ffff72" filter="url(#glow)"/>
    </g>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#0f3057" />
  
  <!-- Crescent Moon -->
  <circle cx="200" cy="100" r="40" fill="#f8e16c" />
  
  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="#f8e16c" />
  <circle cx="80" cy="70" r="2" fill="#f8e16c" />
  <circle cx="120" cy="30" r="2" fill="#f8e16c" />
  <circle cx="150" cy="80" r="2" fill="#f8e16c" />
  <circle cx="180" cy="40" r="2" fill="#f8e16c" />
  <circle cx="220" cy="50" r="2" fill="#f8e16c" />
  
  <!-- Giraffe 1 -->
  <rect x="70" y="120" width="15" height="60" fill="#e0ac69" />
  <rect x="85" y="120" width="5" height="40" fill="#e0ac69" />
  <circle cx="77.5" cy="115" r="12" fill="#e0ac69" />
  
  <!-- Giraffe 2 -->
  <rect x="150" y="160" width="15" height="60" fill="#ffd700" />
  <rect x="165" y="160" width="5" height="40" fill="#ffd700" />
  <circle cx="157.5" cy="155" r="12" fill="#ffd700" />
  
  <!-- Fairy Lights -->
  <path d="M80,140 C100,110 120,130 140,140 C160,130 180,110 200,140" fill="none" stroke="#ff0000" stroke-width="2" stroke-dasharray="5,5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission closely adheres to the prompt with two identifiable giraffes tangled in colorful fairy lights under a starry night sky, demonstrating creativity and visual appeal.

    Player 2's submission is less clear in representing the giraffes or the fairy lights and lacks the compositional strength and adherence to the prompt seen in Player 1's work.

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
48
Player 2
15
Rectangles

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

Player 1
1
Player 2
5
Circles

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

Player 1
40
Player 2
9
Ellipses

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

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

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
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
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
21
Player 2
3
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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