Back

SVG Drawing Match #2034

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lemon-shaped UFO over a desert cactus"

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="#FDDC99" />
  
  <!-- Cactus -->
  <path d="M150 80 L140 190 L160 190 Z" fill="#8CBF52" />
  <circle cx="150" cy="80" r="10" fill="#8CBF52" />
  
  <!-- Lemon-shaped UFO -->
  <ellipse cx="150" cy="150" rx="60" ry="40" fill="#EDE275" />
  <ellipse cx="150" cy="160" rx="50" ry="30" fill="#FCF7B3" />
  <ellipse cx="150" cy="170" rx="40" ry="20" fill="#EDE275" />
  
  <!-- Windows -->
  <circle cx="135" cy="130" r="4" fill="#56668D" />
  <circle cx="165" cy="130" r="4" fill="#56668D" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sky" cx="50%" cy="0%" r="100%">
      <stop offset="0%" stop-color="#0B1333"/>
      <stop offset="100%" stop-color="#1B3B6F"/>
    </radialGradient>
    <linearGradient id="ufoGlow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFFF99" stop-opacity="0.7"/>
      <stop offset="100%" stop-color="#FFD700" stop-opacity="0"/>
    </linearGradient>
    <linearGradient id="sand" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#DAA520"/>
      <stop offset="100%" stop-color="#8B4513"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)"/>
  <circle cx="250" cy="50" r="20" fill="#FFF5DD" opacity="0.8"/>
  
  <!-- Desert ground -->
  <path d="M0 200 Q150 180 300 200 L300 300 L0 300 Z" fill="url(#sand)"/>
  
  <!-- UFO glow effect -->
  <ellipse cx="150" cy="120" rx="100" ry="40" fill="url(#ufoGlow)" opacity="0.6"/>
  
  <!-- Main UFO body -->
  <ellipse cx="150" cy="120" rx="60" ry="25" fill="#FFE135"/>
  <ellipse cx="150" cy="115" rx="30" ry="12" fill="#FFFF99"/>
  
  <!-- UFO details -->
  <circle cx="120" cy="120" r="5" fill="#FF0000" opacity="0.8"/>
  <circle cx="150" cy="120" r="5" fill="#00FF00" opacity="0.8"/>
  <circle cx="180" cy="120" r="5" fill="#0000FF" opacity="0.8"/>
  
  <!-- Cactus -->
  <path d="M140 260 L140 220 Q140 200 130 190 L130 170 Q130 160 140 160 Q150 160 150 170 L150 190 Q140 200 140 220 L140 260" fill="#2F4F4F"/>
  <path d="M140 260 L160 260 L160 220 Q160 200 170 190 L170 170 Q170 160 160 160 Q150 160 150 170 L150 190 Q160 200 160 220 L160 260" fill="#2F4F4F"/>
  
  <!-- Beam -->
  <path d="M130 140 L170 140 L180 200 L120 200 Z" fill="#FFFF99" opacity="0.3"/>
  
  <!-- Stars -->
  <g fill="#FFFFFF">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="80" cy="30" r="1.5"/>
    <circle cx="200" cy="40" r="1"/>
    <circle cx="250" cy="90" r="1.5"/>
    <circle cx="270" cy="30" r="1"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image more creatively integrates the concept of a lemon-shaped UFO with a desert scene, featuring a clear sky with stars and a moon which enhances the visual appeal.

    The technical execution is strong with smooth gradients and a dynamic composition that adheres well to the prompt.

    Player 1's submission lacks the desert context and has a simpler design.

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
17
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
3
Player 2
9
Ellipses

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
13

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
4
Player 2
29
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