Back

SVG Drawing Match #841

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with an upside-down castle in a galaxy sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Galaxy Background -->
  <defs>
    <radialGradient id="galaxyGradient" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" style="stop-color:#1a0f3c;stop-opacity:1" />
      <stop offset="1" style="stop-color:#4a1010;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="1" fill="white"/>
      <circle cx="90" cy="40" r="1" fill="white"/>
      <circle cx="30" cy="90" r="1" fill="white"/>
      <circle cx="10" cy="60" r="1" fill="white"/>
      <circle cx="70" cy="70" r="1" fill="white"/>
    </pattern>
  </defs>

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

  <!-- Stars -->
  <rect width="300" height="300" fill="url(#starPattern)"/>

  <!-- Floating Island -->
  <g transform="translate(100,100)">
    <defs>
      <radialGradient id="islandGradient" cx="0" cy="0" r="100" fx="0" fy="0">
        <stop offset="0" style="stop-color:#2d5a27;stop-opacity:1" />
        <stop offset="1" style="stop-color:#3a6b2e;stop-opacity:1" />
      </radialGradient>
      <pattern id="terrainPattern" patternUnits="userSpaceOnUse" width="20" height="20">
        <circle cx="10" cy="10" r="2" fill="#3a6b2e"/>
      </pattern>
    </defs>
    <ellipse cx="100" cy="50" rx="80" ry="40" fill="url(#islandGradient)"/>
    <ellipse cx="100" cy="50" rx="80" ry="40" fill="url(#terrainPattern)"/>
  </g>

  <!-- Upside-Down Castle -->
  <g transform="translate(150,220) scale(1,-1)">
    <defs>
      <linearGradient id="castleGradient" x1="0" y1="0" x2="0" y2="100">
        <stop offset="0" style="stop-color:#666;stop-opacity:1" />
        <stop offset="1" style="stop-color:#999;stop-opacity:1" />
      </linearGradient>
    </defs>
    <path d="M-50,0 L-20,0 L0,50 L20,0 L50,0 L40,-40 L0,-80 -40,-40 -50,0 Z" fill="url(#castleGradient)"/>
    <path d="M-30,20 L-10,20 L0,40 L10,20 L30,20 L20,-20 L0,-40 -20,-20 -30,20 Z" fill="url(#castleGradient)"/>
    <path d="M-15,10 L-5,10 L0,20 L5,10 L15,10 L10,-10 L0,-20 -10,-20 -15,10 Z" fill="url(#castleGradient)"/>
    <path d="M-5,5 L5,5 L0,15 L5,5 L10,0 L5,-5 L0,-10 -5,-10 -5,5 Z" fill="url(#castleGradient)"/>
    <path d="M0,-30 L10,-30 L10,-50 L-10,-50 L-10,-30 L0,-30 Z" fill="#444"/>
    <path d="M-40,-60 L40,-60 L40,-80 -40,-80 Z" fill="#444"/>
    <path d="M-20,-100 L20,-100 L20,-120 -20,-120 Z" fill="#444"/>
    <path d="M-10,-140 L10,-140 L10,-160 -10,-160 Z" fill="#444"/>
  </g>

  <!-- Mist Effect -->
  <ellipse cx="150" cy="120" rx="60" ry="40" fill="#4a1010" opacity="0.3" filter="blur(5px)"/>

  <!-- Additional Elements -->
  <g transform="translate(150,220) scale(1,-1)">
    <circle cx="-40" cy="-80" r="4" fill="#666" filter="blur(2px)"/>
    <circle cx="40" cy="-80" r="4" fill="#666" filter="blur(2px)"/>
    <circle cx="0" cy="-100" r="4" fill="#666" filter="blur(2px)"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#1a1a80; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#0a0a29; stop-opacity:1" />
        </linearGradient>
        <linearGradient id="islandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#4caf50; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#3e8e41; stop-opacity:1" />
        </linearGradient>
        <linearGradient id="castleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#ffcc00; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#ff6600; stop-opacity:1" />
        </linearGradient>
        <radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" style="stop-color:#fff; stop-opacity:0.9" />
            <stop offset="100%" style="stop-color:#ffcc00; stop-opacity:0" />
        </radialGradient>
    </defs>
    <rect width="300" height="300" fill="url(#skyGradient)" />
    <g>
        <ellipse cx="150" cy="250" rx="80" ry="20" fill="url(#islandGradient)" />
        <path d="M130 230 Q120 210 100 220 Q130 215 140 200 Q160 190 130 210 Q150 210 140 190 Q170 180 130 230" fill="url(#islandGradient)" />
        <polygon points="140,190 170,210 150,260 140,190" fill="url(#castleGradient)" />
        <polygon points="165,195 185,215 175,265 165,195" fill="url(#castleGradient)" />
        <polygon points="130,180 160,200 140,250 130,180" fill="url(#castleGradient)" />
        <polygon points="160,180 190,200 170,250 160,180" fill="url(#castleGradient)" />
        <circle cx="150" cy="40" r="3" fill="url(#starGradient)" />
        <circle cx="180" cy="70" r="2" fill="url(#starGradient)" />
        <circle cx="50" cy="90" r="2.5" fill="url(#starGradient)" />
        <circle cx="220" cy="50" r="1.5" fill="url(#starGradient)" />
        <circle cx="100" cy="130" r="2" fill="url(#starGradient)" />
        <circle cx="90" cy="230" r="3" fill="url(#starGradient)" />
        <circle cx="250" cy="200" r="2.5" fill="url(#starGradient)" />
        <circle cx="70" cy="260" r="1" fill="url(#starGradient)" />
        <circle cx="250" cy="30" r="1.8" fill="url(#starGradient)" />
        <circle cx="130" cy="130" r="1.2" fill="url(#starGradient)" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission stands out with its vibrant colors and dynamic composition.

    The use of a deep blue galaxy sky enhances the visual appeal, and the inverted castle structure is more creatively integrated with the floating island.

    In contrast, Player 1's image has a darker, less engaging background and a more static composition, making Player 2's artwork more compelling and visually attractive.

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
22
Player 2
17
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
9
Player 2
10
Ellipses

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

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

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

Player 1
8
Player 2
1
Groups

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
4
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2

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
3
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
51
Player 2
6
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
5
Player 2
4
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