Back

SVG Drawing Match #331

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe balancing teacups on its horns during a moonlit night in a desert"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Desert Gradient -->
    <linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#fceabb"/>
      <stop offset="100%" stop-color="#f8b500"/>
    </linearGradient>
    <!-- Moon Gradient -->
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cfd8dc"/>
    </radialGradient>
    <!-- Giraffe skin pattern -->
    <pattern id="giraffePattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#f9d29d"/>
      <circle cx="5" cy="5" r="2" fill="#d2a679" />
    </pattern>
    <!-- Teacup gradient -->
    <linearGradient id="teacupGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffddee"/>
      <stop offset="100%" stop-color="#ff99cc"/>
    </linearGradient>
  </defs>
  
  <!-- Desert Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#desertGradient)" />
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  
  <!-- Giraffe Body -->
  <g id="giraffe">
    <!-- Body -->
    <ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#giraffePattern)" stroke="#aa7c5c" stroke-width="1"/>
    <!-- Neck -->
    <rect x="140" y="100" width="20" height="100" fill="url(#giraffePattern)" stroke="#aa7c5c" stroke-width="1" />
    <!-- Head -->
    <ellipse cx="150" cy="85" rx="18" ry="15" fill="url(#giraffePattern)" stroke="#aa7c5c" stroke-width="1" />
    <!-- Eyes -->
    <circle cx="156" cy="80" r="2" fill="#000" />
    <circle cx="144" cy="80" r="2" fill="#000" />
    <!-- Ears -->
    <polygon points="138,78 135,68 142,70" fill="url(#giraffePattern)" stroke="#aa7c5c" stroke-width="0.5"/>
    <polygon points="162,78 165,68 158,70" fill="url(#giraffePattern)" stroke="#aa7c5c" stroke-width="0.5"/>
    <!-- Horns -->
    <line x1="145" y1="65" x2="145" y2="40" stroke="#aa7c5c" stroke-width="3" />
    <line x1="155" y1="65" x2="155" y2="40" stroke="#aa7c5c" stroke-width="3" />
    
    <!-- Teacups on horns -->
    <!-- Teacup on left horn -->
    <g id="teacup-left">
      <path d="M140 40 Q142 35 146 40 Q142 42 140 40" fill="url(#teacupGradient)" stroke="#d8436a" stroke-width="0.5"/>
      <path d="M141 40 L141 45 L145 45 L145 40" fill="#fff"/>
      <line x1="141" y1="45" x2="145" y2="45" stroke="#d8436a" stroke-width="0.5"/>
    </g>
    
    <!-- Teacup on right horn -->
    <g id="teacup-right">
      <path d="M154 40 Q156 35 160 40 Q156 42 154 40" fill="url(#teacupGradient)" stroke="#d8436a" stroke-width="0.5"/>
      <path d="M155 40 L155 45 L159 45 L159 40" fill="#fff"/>
      <line x1="155" y1="45" x2="159" y2="45" stroke="#d8436a" stroke-width="0.5"/>
    </g>
  </g>
  
  <!-- Desert Dunes -->
  <path d="M0,250 Q75,225 150,250 T300,250 L300,300 L0,300 Z" fill="#e0a85c" />
  
  <!-- Silhouette of distant dunes -->
  <path d="M0,260 Q50,250 100,265 T300,260 L300,300 L0,300 Z" fill="rgba(0,0,0,0.1)" />
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="20" r="1.2" fill="#fff"/>
    <circle cx="60" cy="40" r="1" fill="#fff"/>
    <circle cx="80" cy="15" r="1.5" fill="#fff"/>
    <circle cx="110" cy="30" r="1.2" fill="#fff"/>
    <circle cx="200" cy="20" r="1.4" fill="#fff"/>
    <circle cx="220" cy="45" r="1" fill="#fff"/>
    <circle cx="240" cy="10" r="1.3" fill="#fff"/>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#f5f3a2" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#f5f3a2" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="desertSand" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#e3c29e"/>
      <stop offset="100%" stop-color="#d4a373"/>
    </linearGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#34495e"/>
    </linearGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="#ffffff"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect y="200" width="300" height="100" fill="url(#desertSand)"/>
  <circle cx="250" cy="50" r="30" fill="#f5f3a2"/>
  <circle cx="250" cy="50" r="40" fill="url(#moonGlow)"/>
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.5"/>
  <g transform="translate(150, 100)">
    <ellipse cx="0" cy="100" rx="60" ry="30" fill="#8b5a2b"/>
    <ellipse cx="0" cy="80" rx="40" ry="20" fill="#a0522d"/>
    <line x1="-50" y1="100" x2="50" y2="100" stroke="#8b5a2b" stroke-width="10" stroke-linecap="round"/>
    <line x1="-30" y1="120" x2="30" y2="120" stroke="#8b5a2b" stroke-width="10" stroke-linecap="round"/>
    <circle cx="0" cy="70" r="15" fill="#8b5a2b"/>
    <circle cx="-10" cy="65" r="3" fill="#ffffff"/>
    <circle cx="10" cy="65" r="3" fill="#ffffff"/>
    <polygon points="-5,75 5,75 0,85" fill="#ff6347"/>
    <line x1="0" y1="70" x2="0" y2="50" stroke="#8b5a2b" stroke-width="5" stroke-linecap="round"/>
    <circle cx="0" cy="50" r="8" fill="#8b5a2b"/>
    <circle cx="0" cy="30" r="5" fill="#8b5a2b"/>
    <circle cx="0" cy="10" r="3" fill="#8b5a2b"/>
    <circle cx="-20" y="50" r="8" fill="#8b5a2b"/>
    <circle cx="-20" y="30" r="5" fill="#8b5a2b"/>
    <circle cx="-20" y="10" r="3" fill="#8b5a2b"/>
    <circle cx="20" y="50" r="8" fill="#8b5a2b"/>
    <circle cx="20" y="30" r="5" fill="#8b5a2b"/>
    <circle cx="20" y="10" r="3" fill="#8b5a2b"/>
    <circle cx="0" cy="-10" r="10" fill="#8b5a2b"/>
    <circle cx="-20" y="-10" r="10" fill="#8b5a2b"/>
    <circle cx="20" y="-10" r="10" fill="#8b5a2b"/>
    <circle cx="0" cy="-30" r="15" fill="#8b5a2b"/>
    <circle cx="-20" y="-30" r="15" fill="#8b5a2b"/>
    <circle cx="20" y="-30" r="15" fill="#8b5a2b"/>
    <circle cx="0" cy="-50" r="20" fill="#8b5a2b"/>
    <circle cx="-20" y="-50" r="20" fill="#8b5a2b"/>
    <circle cx="20" y="-50" r="20" fill="#8b5a2b"/>
    <circle cx="0" cy="-70" r="25" fill="#8b5a2b"/>
    <circle cx="-20" y="-70" r="25" fill="#8b5a2b"/>
    <circle cx="20" y="-70" r="25" fill="#8b5a2b"/>
    <circle cx="0" cy="-90" r="30" fill="#8b5a2b"/>
    <circle cx="-20" y="-90" r="30" fill="#8b5a2b"/>
    <circle cx="20" y="-90" r="30" fill="#8b5a2b"/>
    <circle cx="0" cy="-110" r="35" fill="#8b5a2b"/>
    <circle cx="-20" y="-110" r="35" fill="#8b5a2b"/>
    <circle cx="20" y="-110" r="35" fill="#8b5a2b"/>
    <g transform="translate(0, -150)">
      <circle cx="0" cy="0" r="20" fill="#ffd700"/>
      <circle cx="-20" y="0" r="20" fill="#ffd700"/>
      <circle cx="20" y="0" r="20" fill="#ffd700"/>
      <circle cx="0" cy="-20" r="15" fill="#ffd700"/>
      <circle cx="-20" y="-20" r="15" fill="#ffd700"/>
      <circle cx="20" y="-20" r="15" fill="#ffd700"/>
      <circle cx="0" cy="-40" r="10" fill="#ffd700"/>
      <circle cx="-20" y="-40" r="10" fill="#ffd700"/>
      <circle cx="20" y="-40" r="10" fill="#ffd700"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image effectively captures the idea of a giraffe with teacups, integrating a moonlit desert setting.

    The design is clear and whimsical, aligning well with the prompt.

    In contrast, Player 2's image lacks clarity in depicting the giraffe and teacups, making it less visually coherent and appealing.

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
28
Player 2
51
Rectangles

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

Player 1
3
Player 2
3
Circles

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

Player 1
11
Player 2
42
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
4
Player 2
3
Polygons

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

Player 1
2
Player 2
1
Paths

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

Player 1
6
Player 2
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
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
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
26
Player 2
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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