Back

SVG Drawing Match #628

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A lighthouse made of crystal, glowing under a swirling aurora"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="auroraGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#A1C4FD; stop-opacity:1" />
            <stop offset="50%" style="stop-color:#C2E9FB; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#FFAFBD; stop-opacity:1" />
        </linearGradient>
        <linearGradient id="crystalGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" style="stop-color:#88C4E7; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#5E9BCC; stop-opacity:1" />
        </linearGradient>
        <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
            <feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur" />
            <feColorMatrix result="colormatrix" in="blur" type="matrix" values="0 0 0 0 0  0 0 0 0 0  0 0 0 0 1  0 0 0 1 0" />
            <feMerge>
                <feMergeNode in="blur" />
                <feMergeNode in="colormatrix" />
            </feMerge>
        </filter>
    </defs>
    
    <rect width="100%" height="100%" fill="url(#auroraGradient)" />
    
    <polygon points="150,50 130,150 170,150" fill="url(#crystalGradient)" filter="url(#glow)" />
    <rect x="145" y="150" width="10" height="50" fill="#FFFFFF" />
    <polygon points="145,200 155,200 180,250 120,250" fill="#E0E0E0" />
    
    <circle cx="150" cy="45" r="10" fill="yellow" filter="url(#glow)" />
    
    <path d="M10,210 Q150,100 290,210" stroke="#7FB3D5" stroke-width="4" fill="none" opacity="0.5"/>
    <path d="M20,215 Q150,105 280,215" stroke="#6DA4DB" stroke-width="3" fill="none" opacity="0.5"/>
</svg>
SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#0d0c1d"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <linearGradient id="auroraGrad1" x1="0" y1="0" x2="300" y2="0">
      <stop offset="0%" stop-color="#00d2ff" stop-opacity="0.7"/>
      <stop offset="50%" stop-color="#3a7bd5" stop-opacity="0.7"/>
      <stop offset="100%" stop-color="#00ff95" stop-opacity="0.7"/>
    </linearGradient>
    <linearGradient id="auroraGrad2" x1="0" y1="0" x2="300" y2="0">
      <stop offset="0%" stop-color="#ff9a9e" stop-opacity="0.6"/>
      <stop offset="50%" stop-color="#fad0c4" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#fad0c4" stop-opacity="0.6"/>
    </linearGradient>
    <linearGradient id="crystalGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0f0ff"/>
      <stop offset="100%" stop-color="#40c4ff"/>
    </linearGradient>
    <linearGradient id="beamGrad" x1="150" y1="0" x2="150" y2="40" gradientUnits="userSpaceOnUse">
      <stop offset="0%" stop-color="yellow" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="yellow" stop-opacity="0"/>
    </linearGradient>
    <filter id="blurFilter">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3"/>
    </filter>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)"/>
  <g filter="url(#blurFilter)">
    <path d="M10,50 C70,10 230,10 290,50 L290,80 C230,40 70,40 10,80 Z" fill="url(#auroraGrad1)"/>
    <path d="M0,70 C80,20 220,20 300,70 L300,100 C220,50 80,50 0,100 Z" fill="url(#auroraGrad2)"/>
  </g>
  <polygon points="150,40 100,0 200,0" fill="url(#beamGrad)"/>
  <polygon points="150,40 110,250 190,250" fill="url(#crystalGrad)" stroke="#ffffff" stroke-width="2" filter="url(#glow)"/>
  <line x1="150" y1="40" x2="150" y2="250" stroke="#ffffff" stroke-width="1" opacity="0.5"/>
  <line x1="150" y1="40" x2="120" y2="250" stroke="#ffffff" stroke-width="1" opacity="0.5"/>
  <line x1="150" y1="40" x2="180" y2="250" stroke="#ffffff" stroke-width="1" opacity="0.5"/>
  <line x1="120" y1="180" x2="180" y2="180" stroke="#ffffff" stroke-width="1" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt with a clearer depiction of a crystalline lighthouse glowing under a swirling aurora.

    The use of color and light in Player 2's image creates a more dynamic and visually appealing scene, while the composition better conveys the ethereal and magical quality suggested by the prompt.

    Player 1's image lacks the same level of detail and clarity in representing the concept.

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
7
Player 2
9
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
1
Player 2
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
4
Polygons

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

Player 1
2
Player 2
2
Paths

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
11

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
10
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
7
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