Back

SVG Drawing Match #1364

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Van Gogh's Starry Night with neon-colored galaxies"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <radialGradient id="galaxy1" cx="30%" cy="40%" r="70%">
      <stop offset="0%" stop-color="#ff00ff"/>
      <stop offset="100%" stop-color="#9400d3" stop-opacity="0.8"/>
    </radialGradient>
    <linearGradient id="swirlGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00ffff"/>
      <stop offset="100%" stop-color="#ff69b4"/>
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="#0a0a2e"/>

  <!-- Cosmic Swirls -->
  <path d="M50 150q20-80 60-40 40 40 80-20 40-20 60 40" fill="none" stroke="url(#swirlGrad)" stroke-width="8" stroke-linecap="round" filter="url(#neonGlow)" stroke-opacity="0.9"/>
  <path d="M30 120q40-60 100-30 60 30 80 70" fill="none" stroke="#ff1493" stroke-width="5" stroke-dasharray="4 8" filter="url(#neonGlow)"/>

  <!-- Neon Galaxies -->
  <circle cx="200" cy="80" r="40" fill="url(#galaxy1)" filter="url(#neonGlow)" opacity="0.7"/>
  <path d="M220 70l-10 20 10-20-5 15-15-5" fill="#00ffff" filter="url(#neonGlow)"/>

  <!-- Star Cluster -->
  <g filter="url(#neonGlow)">
    <circle cx="80" cy="60" r="2" fill="#ffffff"/>
    <circle cx="120" cy="90" r="1.5" fill="#00ffff"/>
    <circle cx="180" cy="200" r="2.2" fill="#ff69b4"/>
    <polygon points="250,150 253,155 258,155 255,160 256,165 250,162 244,165 245,160 242,155 247,155" fill="#ff4500"/>
  </g>

  <!-- Abstract Village -->
  <g transform="translate(0 220)" filter="url(#neonGlow)">
    <rect x="50" y="30" width="20" height="40" fill="#7d26cd"/>
    <polygon points="100,70 115,40 130,70" fill="#ff1493"/>
    <path d="M180 30v40h-15v-20h-10v20h-15v-40z" fill="#00bfff"/>
  </g>

  <!-- Cypress Silhouette -->
  <path d="M280 300v-80q-10-20-15-40-5-20-10-40-5-20-15-30" fill="none" stroke="#003300" stroke-width="12" stroke-linecap="round"/>
  <path d="M275 160l5 20-10-15 5 25-15-20" fill="#00ff00" filter="url(#neonGlow)" opacity="0.6"/>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color: #1a2980; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #283c7d; stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #ffcc00; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #ff6600; stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="galaxyGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" style="stop-color: #00ff00; stop-opacity:1"/>
      <stop offset="50%" style="stop-color: #00ccff; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #ff00cc; stop-opacity:1"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  <g>
    <path d="M150 100 C100 50, 200 50, 150 100 C100 150, 200 150, 150 100" fill="url(#galaxyGradient)" stroke="white" stroke-width="2"/>
    <path d="M150 170 C100 120, 200 120, 150 170 C100 220, 200 220, 150 170" fill="url(#galaxyGradient)" stroke="white" stroke-width="2"/>
  </g>
  <circle cx="150" cy="150" r="10" fill="url(#starGradient)" stroke="white" stroke-width="2"/>
  <circle cx="200" cy="120" r="5" fill="url(#starGradient)" stroke="white" stroke-width="2"/>
  <circle cx="100" cy="180" r="5" fill="url(#starGradient)" stroke="white" stroke-width="2"/>
  <circle cx="250" cy="100" r="5" fill="url(#starGradient)" stroke="white" stroke-width="2"/>
  <circle cx="50" cy="180" r="5" fill="url(#starGradient)" stroke="white" stroke-width="2"/>
  <path d="M250 200 Q275 250 300 200" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
  <path d="M50 200 Q25 250 0 200" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
  <path d="M100 150 Q125 180 150 150" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
  <path d="M200 150 Q175 180 150 150" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
  <path d="M150 250 Q175 300 200 250" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
  <path d="M150 250 Q125 300 100 250" fill="none" stroke="url(#galaxyGradient)" stroke-width="5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission captures the essence of a starry night with vibrant, neon-colored elements that suggest galaxies.

    The use of gradient colors and circular forms creates a cosmic feel that aligns well with the prompt.

    Player 1's design, while creative and colorful, lacks the connection to Van Gogh's style and the theme of galaxies, making Player 2's image more fitting overall.

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
14
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
4
Player 2
5
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
2
Player 2
Paths

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

Player 1
6
Player 2
8
Groups

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
1

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
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
20
Player 2
18
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
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