Back

SVG Drawing Match #1362

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Van Gogh's Starry Night with pixelated shooting stars"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#1d2951;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#333b6d;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffeb3b;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffa726;stop-opacity:1" />
    </linearGradient>
    <filter id="pixelate" x="0" y="0">
      <feFlood flood-color="rgba(0,0,0,0)" result="bg" />
      <feBlend in="SourceGraphic" in2="bg" mode="multiply" />
      <feTile in="SourceGraphic" mode="normal" />
      <feComponentTransfer>
        <feFuncR type="discrete" tableValues="0 0.5 1" />
        <feFuncG type="discrete" tableValues="0 0.5 1" />
        <feFuncB type="discrete" tableValues="0 0.5 1" />
      </feComponentTransfer>
      <feGaussianBlur stdDeviation="2" result="blurred" />
      <feComposite in="blurred" in2="SourceGraphic" operator="in" />
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <g filter="url(#pixelate)">
    <polygon points="150,10 170,90 130,90" fill="url(#starGradient)" />
    <polygon points="180,40 190,90 170,90" fill="url(#starGradient)" />
    <polygon points="60,80 80,150 40,150" fill="url(#starGradient)" />
    <polygon points="240,120 260,190 220,190" fill="url(#starGradient)" />
  </g>
  <circle cx="60" cy="60" r="30" fill="url(#starGradient)" />
  <circle cx="230" cy="200" r="25" fill="url(#starGradient)" />
  <circle cx="180" cy="80" r="20" fill="url(#starGradient)" />
  <path d="M150 200 Q140 180, 130 200 T110 200" fill="none" stroke="url(#starGradient)" stroke-width="3" />
  <path d="M110 150 Q100 130, 90 150 T70 150" fill="none" stroke="url(#starGradient)" stroke-width="3" />
  <path d="M190 250 Q180 230, 170 250 T150 250" fill="none" stroke="url(#starGradient)" stroke-width="3" />
  <path d="M220 100 Q210 80, 200 100 T180 100" fill="none" stroke="url(#starGradient)" stroke-width="3" />
  <g stroke="none" fill="url(#starGradient)">
    <rect x="200" y="20" width="10" height="10" />
    <rect x="210" y="30" width="10" height="10" />
    <rect x="220" y="40" width="10" height="10" />
  </g>
  <g stroke="none" fill="url(#starGradient)">
    <rect x="50" y="200" width="10" height="10" />
    <rect x="60" y="210" width="10" height="10" />
    <rect x="70" y="220" width="10" height="10" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<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%" stop-color="#0b486b"/>
      <stop offset="100%" stop-color="#f56217"/>
    </linearGradient>
    <radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#ffff00"/>
    </radialGradient>
    <pattern id="pixelPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="2" height="2" fill="#ffffff"/>
      <rect x="2" y="2" width="2" height="2" fill="#ffffff"/>
    </pattern>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Swirling Stars -->
  <g>
    <path d="M50,150 C70,130 90,170 110,150 S150,130 170,150" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" />
    <path d="M130,200 C150,180 170,220 190,200 S230,180 250,200" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" />
    <circle cx="100" cy="80" r="3" fill="url(#starGradient)" />
    <circle cx="200" cy="60" r="4" fill="url(#starGradient)" />
    <circle cx="250" cy="120" r="3.5" fill="url(#starGradient)" />
  </g>
  
  <!-- Pixelated Shooting Stars -->
  <g>
    <!-- Shooting Star 1 -->
    <g transform="translate(60, 40) rotate(45)">
      <rect x="0" y="0" width="4" height="4" fill="#ffffff"/>
      <rect x="5" y="5" width="4" height="4" fill="#ffffff"/>
      <rect x="10" y="10" width="4" height="4" fill="#ffffff"/>
      <rect x="15" y="15" width="4" height="4" fill="#ffffff"/>
      <rect x="20" y="20" width="4" height="4" fill="#ffffff"/>
    </g>
    <!-- Shooting Star 2 -->
    <g transform="translate(180, 100) rotate(-30)">
      <rect x="0" y="0" width="3" height="3" fill="#ffff00"/>
      <rect x="4" y="4" width="3" height="3" fill="#ffff00"/>
      <rect x="8" y="8" width="3" height="3" fill="#ffff00"/>
      <rect x="12" y="12" width="3" height="3" fill="#ffff00"/>
    </g>
    <!-- Shooting Star 3 -->
    <g transform="translate(220, 70) rotate(60)">
      <rect x="0" y="0" width="2" height="2" fill="#ffdd00"/>
      <rect x="3" y="3" width="2" height="2" fill="#ffdd00"/>
      <rect x="6" y="6" width="2" height="2" fill="#ffdd00"/>
    </g>
  </g>
  
  <!-- Hills and Village Silhouette -->
  <g>
    <path d="M0,250 Q50,200 100,250 T200,250 T300,250 V300 H0 Z" fill="#023e8a"/>
    <rect x="60" y="210" width="20" height="40" fill="#03045e"/>
    <polygon points="80,210 90,190 100,210" fill="#0077b6"/>
    <rect x="140" y="220" width="15" height="30" fill="#03045e"/>
    <polygon points="147.5,220 155,205 162.5,220" fill="#0077b6"/>
    <rect x="220" y="215" width="25" height="35" fill="#03045e"/>
    <polygon points="225,215 237.5,195 250,215" fill="#0077b6"/>
  </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 better captures the essence of Van Gogh's 'Starry Night' with a clear horizon and celestial elements.

    The pixelated shooting stars are evident and add a creative modern touch.

    The composition and use of gradients offer a more visually appealing and technically refined image compared to Player 1's abstract representation.

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

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

Player 1
7
Player 2
18
Circles

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

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

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

Player 1
4
Player 2
3
Groups

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

Player 1
3
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
8

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
3

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
13
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

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