Back

SVG Drawing Match #2364

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating island with a single glowing tree under a crescent moon."

SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="0%" r="100%">
      <stop offset="0%" stop-color="#0a0827"/>
      <stop offset="100%" stop-color="#0c0011"/>
    </radialGradient>
    <radialGradient id="moonGrad" cx="60%" cy="30%" r="20%">
      <stop offset="0%" stop-color="#fffceb"/>
      <stop offset="100%" stop-color="#ae987e"/>
    </radialGradient>
    <radialGradient id="leafGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#baffb5"/>
      <stop offset="100%" stop-color="#217c03"/>
    </radialGradient>
    <linearGradient id="islandTopGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#3b2e25"/>
      <stop offset="100%" stop-color="#1f140d"/>
    </linearGradient>
    <linearGradient id="islandBotGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#504032"/>
      <stop offset="100%" stop-color="#2b1f17"/>
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>
  
  <g fill="#fff">
    <circle cx="30" cy="50" r="1.2" opacity="0.8"/>
    <circle cx="80" cy="20" r="0.8" opacity="0.7"/>
    <circle cx="120" cy="40" r="1" opacity="0.6"/>
    <circle cx="200" cy="30" r="0.9" opacity="0.7"/>
    <circle cx="260" cy="60" r="1.1" opacity="0.8"/>
    <circle cx="50" cy="100" r="0.7" opacity="0.5"/>
    <circle cx="170" cy="80" r="0.8" opacity="0.6"/>
    <circle cx="240" cy="120" r="1" opacity="0.7"/>
    <circle cx="180" cy="20" r="0.6" opacity="0.5"/>
    <circle cx="100" cy="10" r="0.5" opacity="0.4"/>
  </g>
  
  <path d="M220 60 A30 30 0 1 1 190 60 A20 20 0 1 0 220 60 Z" fill="url(#moonGrad)"/>
  
  <g id="island">
    <path d="M50 180 Q150 120 250 180 L230 195 Q150 150 70 195 Z" fill="url(#islandTopGrad)"/>
    <path d="M50 180 L230 195 L180 260 L120 260 Z" fill="url(#islandBotGrad)"/>
    <line x1="80" y1="195" x2="70" y2="225" stroke="#2b1f17" stroke-width="2"/>
    <line x1="130" y1="195" x2="125" y2="235" stroke="#2b1f17" stroke-width="2"/>
    <line x1="180" y1="195" x2="175" y2="245" stroke="#2b1f17" stroke-width="2"/>
    <line x1="220" y1="195" x2="215" y2="230" stroke="#2b1f17" stroke-width="2"/>
  </g>
  
  <g id="tree" filter="url(#glow)">
    <path d="M150 150 C145 180 155 200 150 230" stroke="#5a3323" stroke-width="8" fill="none"/>
    <path d="M150 150 C155 180 145 200 150 230" stroke="#6b442e" stroke-width="6" fill="none"/>
    <circle cx="150" cy="130" r="40" fill="url(#leafGrad)" opacity="0.9"/>
    <circle cx="130" cy="110" r="15" fill="#8cff72" opacity="0.8"/>
    <circle cx="170" cy="120" r="12" fill="#aaff8f" opacity="0.7"/>
    <circle cx="150" cy="145" r="10" fill="#9fff7a" opacity="0.8"/>
    <circle cx="135" cy="140" r="8" fill="#baffb5" opacity="0.6"/>
    <circle cx="165" cy="135" r="8" fill="#ccffcc" opacity="0.6"/>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0B2447"/>
      <stop offset="100%" stop-color="#191D3A"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.35" cy="0.35" r="0.5">
      <stop offset="0%" stop-color="#FFF9C4"/>
      <stop offset="100%" stop-color="#FBC02D"/>
    </radialGradient>
    <linearGradient id="islandGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4CAF50"/>
      <stop offset="100%" stop-color="#2E7D32"/>
    </linearGradient>
    <radialGradient id="treeGlow" cx="0.5" cy="0.8" r="0.75">
      <stop offset="0%" stop-color="rgba(255, 215, 0, 0.8)"/>
      <stop offset="100%" stop-color="rgba(255, 215, 0, 0)" />
    </radialGradient>
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#A5D6A7"/>
    </pattern>
  </defs>

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

  <!-- Crescent Moon -->
  <circle cx="220" cy="80" r="40" fill="url(#moonGradient)" />
  <circle cx="235" cy="80" r="40" fill="url(#skyGradient)" />

  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="60" cy="50" r="2"/>
    <circle cx="100" cy="90" r="1.5"/>
    <circle cx="150" cy="40" r="2.5"/>
    <circle cx="200" cy="100" r="1.8"/>
    <circle cx="250" cy="60" r="2"/>
    <circle cx="280" cy="120" r="1.5"/>
  </g>

  <!-- Floating Island -->
  <path d="M150,250 C100,220 100,180 150,160 C200,180 200,220 150,250 Z" fill="url(#islandGradient)" stroke="#1B5E20" stroke-width="2"/>
  <path d="M150,160 L140,150 L160,150 Z" fill="#1B5E20"/>

  <!-- Tree Glow -->
  <circle cx="150" cy="160" r="60" fill="url(#treeGlow)" />

  <!-- Tree Trunk -->
  <rect x="145" y="180" width="10" height="40" fill="#6D4C41" />

  <!-- Tree Foliage -->
  <g fill="url(#leafPattern)" transform="translate(150,180)">
    <circle cx="0" cy="-30" r="15" />
    <circle cx="-20" cy="-20" r="12" />
    <circle cx="20" cy="-20" r="12" />
    <circle cx="0" cy="-40" r="10" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission demonstrates better creativity and visual appeal with vibrant colors, a glowing tree, and a crescent moon integrated into a balanced composition.

    The layered glow effect adds depth and technical quality.

    While Player 1's submission adheres to the theme, its design lacks refinement and intricate detailing compared to Player 2's work.

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
26
Player 2
18
Rectangles

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

Player 1
1
Player 2
2
Circles

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

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

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
12

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
1

Complexity Metrics

Path Commands

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

Player 1
18
Player 2
8
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
6
Player 2
5
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