Back

SVG Drawing Match #66

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe in a trench coat reading a newspaper on a rainy city street"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <filter id="rainEffect">
      <feGaussianBlur stdDeviation="1" result="blur"/>
      <feNoise type="fractalNoise" baseFrequency="1.5" result="noise"/>
      <feDiffuseLighting surfaceScale="2" result="light">
        <feDistantLight azimuth="45" elevation="45"/>
      </feDiffuseLighting>
      <feComposite in="light" in2="noise" operator="in"/>
    </filter>
    <clipPath id="newspaperClip">
      <path d="M150 220 C160 220 170 210 170 200 V180 H130 V200 C130 210 140 220 150 220"/>
    </clipPath>
    <pattern id="giraffeSpots" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#664300"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#linearGradient)" />
  
  <linearGradient id="cityGradient" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="300">
    <stop offset="0" style="stop-color:#1a1a1a;stop-opacity:1" />
    <stop offset="1" style="stop-color:#2a2a2a;stop-opacity:1" />
  </linearGradient>

  <path id="rain" fill="none" stroke="white" stroke-width="1" filter="url(#rainEffect)" 
        d="M0 0 H300 V300 H0 L0 0"/>
  
  <rect x="0" y="250" width="300" height="50" fill="#333" />
  <path d="M20 250 H280" fill="none" stroke="#666" stroke-width="2"/>
  
  <g transform="translate(50,250)">
    <circle r="15" fill="#ffcd00" />
    <path d="M0 0 Q20 -30 40 0" fill="#666" />
  </g>

  <g transform="translate(150,200)">
    <path d="M-50 -100 Q0 -50 50 -100 Q100 -50 150 -100 L150 -150 L0 -200 0 -100 -50 -100" 
          fill="#4a2b0f" stroke="#664300" stroke-width="2"/>
    
    <path d="M-40 -80 Q0 -60 40 -80" fill="url(#giraffeSpots)"/>
    
    <g transform="translate(0,-50)">
      <circle r="10" fill="#fff" />
      <circle r="8" fill="#000" cx="12" cy="0"/>
      <circle r="8" fill="#000" cx="-12" cy="0"/>
      <path d="M0 -20 Q-10 -30 0 -40" fill="#4a2b0f" />
    </g>
  </g>

  <g clip-path="url(#newspaperClip)" transform="translate(220,200) scale(0.8)">
    <rect x="0" y="0" width="100" height="100" fill="#fff" />
    <path d="M0 0 H100" fill="none" stroke="#000" stroke-width="2"/>
    <path d="M0 20 H100" fill="none" stroke="#000" stroke-width="1"/>
    <path d="M0 40 H100" fill="none" stroke="#000" stroke-width="1"/>
    <path d="M0 60 H100" fill="none" stroke="#000" stroke-width="1"/>
    <path d="M0 80 H100" fill="none" stroke="#000" stroke-width="1"/>
  </g>

  <path d="M100 250 Q150 260 200 250" fill="#666" stroke="#666" stroke-width="2"/>
  <path d="M50 250 Q80 240 110 250" fill="#666" stroke="#666" stroke-width="2"/>
  <path d="M200 250 Q220 240 250 250" fill="#666" stroke="#666" stroke-width="2"/>

  <filter id="shadow">
    <feDropShadow dx="0" dy="0" stdDeviation="5" floodOpacity="0.2"/>
  </filter>
  <use xlink:href="#rain" filter="url(#shadow)"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainy city street background -->
  <rect width="300" height="300" fill="#5E86B8" />
  <g id="buildings">
    <rect x="20" y="50" width="50" height="200" fill="#787878" />
    <rect x="100" y="70" width="70" height="180" fill="#787878" />
    <rect x="210" y="30" width="50" height="220" fill="#787878" />
  </g>
  <g id="street">
    <rect x="0" y="250" width="300" height="50" fill="#333" />
    <circle cx="150" cy="275" r="10" fill="#FFF" />
    <circle cx="180" cy="275" r="10" fill="#FFF" />
    <circle cx="210" cy="275" r="10" fill="#FFF" />
  </g>
  <!-- Giraffe -->
  <g id="giraffe">
    <ellipse cx="150" cy="120" rx="40" ry="70" fill="#FFD86E" />
    <ellipse cx="130" cy="90" rx="30" ry="50" fill="#FFD86E" />
    <rect x="135" y="115" width="30" height="50" fill="#D4935F" />
    <circle cx="150" cy="100" r="10" fill="#FFD86E" />
    <line x1="160" y1="100" x2="160" y2="130" stroke="#D4935F" stroke-width="3" />
  </g>
  <!-- Trench coat -->
  <g id="trenchcoat">
    <rect x="120" y="200" width="60" height="80" fill="#333" />
    <rect x="115" y="210" width="70" height="10" fill="#333" />
    <rect x="130" y="240" width="40" height="40" fill="#666" />
    <rect x="120" y="220" width="12" height="60" fill="#666" />
    <rect x="172" y="220" width="8" height="60" fill="#666" />
  </g>
  <!-- Newspaper -->
  <g id="newspaper">
    <rect x="90" y="190" width="40" height="60" fill="#EEE" />
    <rect x="95" y="185" width="30" height="5" fill="#AAA" />
    <text x="120" y="240" font-family="Arial" font-size="8" fill="#444">NEWS</text>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's image better captures the prompt with a clear depiction of a giraffe in a trench coat, identifiable through its elongated form, amidst a cityscape.

    The use of simplistic yet effective shapes and colors adds to the creativity and visual appeal.

    Player 1's submission lacks detail and clarity, making it difficult to discern any elements 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
23
Player 2
20
Rectangles

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

Player 1
3
Player 2
13
Circles

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

Player 1
5
Player 2
4
Ellipses

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

Player 1
Player 2
2
Lines

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

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

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
Patterns

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

Player 1
1
Player 2
Filters

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
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
4
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
40
Player 2
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
3
Player 2
Use Elements

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

Player 1
1
Player 2

Text Metrics

Text Elements

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

Player 1
Player 2
1

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