Back

SVG Drawing Match #1397

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cactus-shaped clouds over a desert with a single rainboot"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert Background -->
  <rect x="0" y="150" width="300" height="150" fill="#F5F5DC" rx="20" />
  <linearGradient id="desert-gradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#F2C464" stop-opacity="0.5" />
    <stop offset="1" stop-color="#FFC499" stop-opacity="0.5" />
  </linearGradient>
  <rect x="0" y="150" width="300" height="150" fill="url(#desert-gradient)" rx="20" />

  <!-- Cactus Clouds -->
  <symbol id="cactus-cloud">
    <path d="M 25 0 L 50 50 L 75 0 Z" fill="#FFFFFF" stroke="#AAAAAA" stroke-width="2" />
    <circle cx="50" cy="50" r="25" fill="#FFFFFF" stroke="#AAAAAA" stroke-width="2" />
  </symbol>
  <use xlink:href="#cactus-cloud" x="50" y="50" transform="scale(1.5)" />
  <use xlink:href="#cactus-cloud" x="150" y="75" transform="scale(1.2)" />
  <use xlink:href="#cactus-cloud" x="250" y="100" transform="scale(1.8)" />
  <use xlink:href="#cactus-cloud" x="100" y="125" transform="scale(1.5) rotate(30)" />
  <use xlink:href="#cactus-cloud" x="200" y="150" transform="scale(1.2) rotate(-30)" />

  <!-- Rainboot -->
  <path d="M 140 220 L 160 220 L 150 240 Z" fill="#008000" stroke="#000000" stroke-width="2" />
  <circle cx="150" cy="230" r="10" fill="#008000" stroke="#000000" stroke-width="2" />
  <rect x="145" y="235" width="10" height="20" fill="#008000" rx="2" />
  <path d="M 150 240 L 150 260 L 140 260 Z" fill="#008000" stroke="#000000" stroke-width="2" />

  <!-- Shadows -->
  <rect x="140" y="220" width="20" height="10" fill="#000000" opacity="0.5" rx="2" />
  <circle cx="150" cy="230" r="5" fill="#000000" opacity="0.5" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert background -->
  <rect x="0" y="0" width="300" height="300" fill="#FDDC98" />
  
  <!-- Cactus-shaped clouds -->
  <path d="M50 100 Q60 80 75 100 Q80 110 90 100 Q100 80 110 100 Q120 120 130 100 Q140 80 150 100 Q160 120 170 100 Q180 80 190 100 Q200 120 210 100 Q220 80 230 100 Q240 120 250 100 Q260 80 275 100 Z" fill="#FFFFFF" />
  <path d="M110 70 Q120 50 130 70 Q140 90 150 70 Q160 50 170 70 Q180 90 190 70 Q200 50 210 70 Q220 90 230 70 Q240 50 250 70 Q260 90 270 70 Q280 50 290 70 V100 H110 Z" fill="#FFFFFF" />
  
  <!-- Rainboot in the desert -->
  <path d="M200 200 Q200 180 190 180 H110 Q100 180 100 200 L120 240 H180 Z" fill="#2E86AB" />
  <path d="M160 200 H140 V170 H170 Z" fill="#F4D35E" />
  <path d="M160 200 H140 V240 H160 Z" fill="#F4D35E" />
  <path d="M160 240 Q160 260 150 260 H150 Q140 260 140 240 Z" fill="#F4D35E" />
</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 submission better adheres to the prompt by clearly depicting a cactus-shaped cloud and a single rainboot in a desert setting.

    The use of colors and simple shapes enhances the visual appeal and creativity.

    Player 1's image is not visible, leaving Player 2 as the clear winner by default.

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

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

Player 1
4
Player 2
1
Circles

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
4

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
5
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
12
Player 2
48
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
Use Elements

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

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