Back

SVG Drawing Match #600

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal cityscape with floating fruit-shaped buildings under a glowing crescent moon"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f8f0d6" />
      <stop offset="100%" stop-color="#e0c9a6" />
    </radialGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#1e1040" />
      <stop offset="100%" stop-color="#4a1a62" />
    </linearGradient>
    <pattern id="orangePeel" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="3" r="2" fill="#ffa500" />
      <circle cx="7" cy="7" r="2" fill="#ffa500" />
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M50 50 A 40 40 0 1 0 50 130 L 20 130 A 60 60 0 0 1 20 50 Z" fill="url(#moonGlow)" />
  

  <path d="M100 150 C 120 100, 180 80, 200 150 L 220 200 C 190 240, 140 250, 120 200 Z" fill="url(#orangePeel)" stroke="#ff8c00" stroke-width="3"/>
  <ellipse cx="150" cy="220" rx="20" ry="10" fill="#9acd32" />
  <ellipse cx="250" cy="180" rx="30" ry="40" fill="red" style="transform: rotate(20deg);" />
  <path d="M260 240 C 280 210, 290 260, 250 290 L 230 260 C 260 220, 270 280, 240 250 Z" fill="yellow" />
  <polygon points="70,200 90,180 110,210 80,230" fill="purple" stroke="black" stroke-width="2">
  <animateTransform attributeName="transform" type="rotate" from="0 90 200" to="360 90 200" dur="20s" repeatCount="indefinite" />
  </polygon>

  <g transform="translate(50, 240)">
    <circle cx="0" cy="0" r="15" fill="#800080"/>
    <rect x="-5" y="-20" width="10" height="20" fill="#800000"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background - Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#0C1446" />

  <!-- Glowing Crescent Moon -->
  <circle cx="250" cy="50" r="40" fill="yellow" opacity="0.8" />

  <!-- Stars in the Sky -->
  <circle cx="30" cy="70" r="1" fill="white" />
  <circle cx="60" cy="25" r="1" fill="white" />
  <circle cx="100" cy="80" r="1" fill="white" />
  <circle cx="120" cy="40" r="1" fill="white" />
  <circle cx="160" cy="60" r="1" fill="white" />
  <circle cx="200" cy="20" r="1" fill="white" />
  <circle cx="220" cy="85" r="1" fill="white" />
  <circle cx="270" cy="30" r="1" fill="white" />

  <!-- Floating Fruit-shaped Buildings -->
  <!-- Apple Building -->
  <path d="M50,200 Q60,160 70,200 Q80,130 90,200 Q100,160 110,200 Q120,160 130,200 Q125,240 110,220 Q105,240 90,220 Q85,240 70,220 Q65,240 50,200Z" fill="#E63946" stroke="none" />
  
  <!-- Orange Building -->
  <circle cx="180" cy="180" r="40" fill="#F77F00" stroke="none" />
  <circle cx="180" cy="180" r="30" fill="#EA580C" stroke="none" />
  
  <!-- Banana Building -->
  <path d="M240,185 Q260,120 270,185 Q280,150 290,185 Q280,225 270,195 Q260,230 240,185Z" fill="#FFBA08" stroke="none" />
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's image more closely adheres to the prompt with a visible crescent moon and distinct fruit shapes that suggest buildings, creating a surreal ambiance.

    The composition is visually dynamic with varied shapes and colors.

    Player 2's submission lacks clear fruit-shaped buildings and the glowing crescent moon, making it less aligned with the prompt and less visually engaging.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
3
Player 2
11
Ellipses

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

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

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

Player 1
3
Player 2
2
Groups

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
8

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
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
15
Player 2
16
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
3
Player 2
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