Back

SVG Drawing Match #1405

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Runaway kite entangled in a giant spiderweb under a crescent moon"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background: Night Sky with Crescent Moon -->
  <rect x="0" y="0" width="300" height="300" fill="#0d0c48"/>
  <circle cx="70" cy="60" r="50" fill="#eaf0f1"/>
  <!-- Crescent Moon -->
  <path d="M70 10 Q100 40 130 10 Q100 30 70 10" fill="#f4e04d"/>
  <!-- Spiderweb -->
  <path d="M150 150 Q120 100 150 50 Q180 100 150 150" fill="none" stroke="#5b5b5b" stroke-width="2"/>
  <path d="M150 150 Q120 180 150 230 Q180 180 150 150" fill="none" stroke="#5b5b5b" stroke-width="2"/>
  <!-- Kite: Triangle with Tail -->
  <polygon points="100,150 120,130 140,150" fill="#ff5252"/>
  <polygon points="140,150 135,155 140,160" fill="#949494"/>
  <polygon points="100,150 120,150 120,170 100,150" fill="#949494"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f0e68c" />
      <stop offset="100%" stop-color="#b0b232" />
    </linearGradient>
    <linearGradient id="kiteGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff6b81" />
      <stop offset="100%" stop-color="#ffab6f" />
    </linearGradient>
    <pattern id="webPattern" patternUnits="userSpaceOnUse" width="20" height="20" patternTransform="rotate(45)">
      <line x1="0" y1="10" x2="20" y2="10" stroke="#ccc" stroke-width="2"/>
      <line x1="10" y1="0" x2="10" y2="20" stroke="#ccc" stroke-width="2"/>
      <circle cx="10" cy="10" r="1" fill="#888" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#001f3f"/>
  <ellipse cx="230" cy="60" rx="40" ry="20" fill="url(#moonGradient)" />
  <path d="M180 100 Q170 80, 150 90 T120 100 Q110 120, 100 120 T80 100 Q90 70, 130 70 Q150 50, 180 100" fill="url(#kiteGradient)" stroke="#e63946" stroke-width="2"/>
  <path d="M120 80 Q110 70, 130 50 Q150 40, 170 60 Q190 70, 180 80" stroke="#e63946" stroke-width="2" fill="none"/>
  <path d="M70 150 C60 130, 30 130, 20 150 S30 180, 70 180 S90 160, 70 150" fill="url(#webPattern)"/>
  <path d="M150 10 L150 290" stroke="#ccc" stroke-width="2" />
  <path d="M10 150 L290 150" stroke="#ccc" stroke-width="2" />
  <path d="M155 155 L300 0" stroke="#ccc" stroke-width="2" />
  <path d="M145 155 L0 300" stroke="#ccc" stroke-width="2" />
  <path d="M150 20 A130 130 0 0 1 250 150" stroke="#ccc" stroke-width="2" />
  <path d="M10 150 A130 130 0 0 1 150 270" stroke="#ccc" stroke-width="2" />
</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 image creatively integrates the kite and spiderweb under a crescent moon with clear visual elements that adhere closely to the prompt.

    The composition is simple yet effective, with a clear depiction of the kite entangled in the web.

    Player 2's image, while visually interesting, is less clear in representing a spiderweb and kite, making Player 1's submission more aligned with the prompt and visually coherent.

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
8
Player 2
14
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
1
Player 2
1
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
3
Player 2
Paths

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

Player 1
3
Player 2
9
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
8

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
9
Player 2
27
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
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