Back

SVG Drawing Match #1623

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit elephant balancing on a tightrope above a cityscape"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Night sky background with gradient -->
  <defs>
    <linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1A1A4A;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0A0A2A;stop-opacity:1" />
    </linearGradient>
    
    <!-- Moon glow effect -->
    <filter id="moonGlow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <!-- Elephant gradient -->
    <linearGradient id="elephantGray" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#888;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#444;stop-opacity:1" />
    </linearGradient>
  </defs>

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

  <!-- Cityscape -->
  <g transform="translate(0,200)">
    <!-- Buildings -->
    <rect x="20" y="0" width="60" height="180" fill="#333" rx="10"/>
    <rect x="100" y="0" width="80" height="150" fill="#444" rx="8"/>
    <rect x="200" y="0" width="40" height="160" fill="#555" rx="6"/>
    
    <!-- Windows -->
    <rect x="30" y="80" width="10" height="10" fill="#FFB500" rx="2"/>
    <rect x="120" y="70" width="10" height="10" fill="#FFB500" rx="2"/>
    <rect x="220" y="90" width="10" height="10" fill="#FFB500" rx="2"/>
  </g>

  <!-- Tightrope -->
  <path d="M50,150 Q150,140 250,150" stroke="#666" stroke-width="2" fill="none"/>

  <!-- Elephant -->
  <g transform="translate(150,140)">
    <!-- Body -->
    <path d="M0,0 C20,-10 40,0 60,0 C80,0 100,-20 120,0 C140,20 160,0 180,0 C200,0 220,20 240,0 C260,-20 280,0 300,0 L280,40 L220,40 L200,80 L180,40 L140,40 L120,80 L100,40 L80,40 L60,40 L40,40 L20,40 L0,40 Z" fill="url(#elephantGray)"/>

    <!-- Ears -->
    <path d="M60,0 L80,-20 L100,0" fill="url(#elephantGray)"/>
    <path d="M240,0 L220,-20 L200,0" fill="url(#elephantGray)"/>

    <!-- Trunk -->
    <path d="M180,40 C190,60 200,80 210,60" stroke="#444" stroke-width="8" fill="none"/>

    <!-- Tusks -->
    <path d="M180,40 L185,30" stroke="#FFF" stroke-width="3" fill="none"/>
    <path d="M180,40 L175,30" stroke="#FFF" stroke-width="3" fill="none"/>
  </g>

  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="white" filter="url(#moonGlow)">
    <animate attributeName="r" from="30" to="35" dur="2s" repeatCount="indefinite" />
  </circle>

  <!-- Ground shadow -->
  <rect x="0" y="280" width="300" height="20" fill="#000" opacity="0.3"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#f0e68c; stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#d1c24e; stop-opacity:0" />
    </radialGradient>
    <linearGradient id="cityGradient" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#1c1c1c; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3d3d3d; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="tightropeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffcc00; stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ff9900; stop-opacity:0.8" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="#101010" />
  <circle cx="250" cy="50" r="40" fill="url(#moonGradient)" />
  <g transform="translate(50, 200)">
    <path d="M20 0 Q40 30, 70 0 T120 0" stroke="url(#tightropeGradient)" stroke-width="4" fill="none" />
    <path d="M50 0 L45 20 Q50 25, 55 20 L50 0" fill="url(#tightropeGradient)" />
    <g transform="scale(0.5, 0.5) translate(-40, -40)">
      <path d="M100 60 Q50 20, 0 60 Q20 80, 50 80 Q80 80, 100 60" fill="#708090" />
      <circle cx="50" cy="40" r="40" fill="#456" />
      <path d="M50 40 Q40 60, 60 60 Q50 70, 40 60 Q50 60, 50 40" fill="#b0b0b0" />
    </g>
  </g>
  <g transform="translate(0, 150)">
    <rect width="300" height="150" fill="url(#cityGradient)" />
    <rect x="20" y="40" width="30" height="60" fill="#444" />
    <rect x="60" y="20" width="50" height="80" fill="#555" />
    <rect x="130" y="10" width="40" height="90" fill="#666" />
    <rect x="180" y="30" width="30" height="70" fill="#777" />
    <rect x="220" y="50" width="40" height="50" fill="#888" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's image captures the prompt effectively by depicting an elephant balancing on a tightrope above a cityscape, with a clearly visible moon.

    The composition is imaginative and aligns well with the theme, whereas Player 2's image lacks the central elements of the prompt, namely the elephant and the tightrope, and does not convey the idea as clearly.

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

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

Player 1
8
Player 2
7
Circles

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

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

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

Player 1
2
Player 2
3

Visual Effects Metrics

Gradients

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

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

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
33
Player 2
15
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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