Back

SVG Drawing Match #2083

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating castle tangled in glowing balloon strings"

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="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.2">
      <stop offset="0%" style="stop-color:rgb(135,206,250); stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(0,139,139); stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="stringGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color:rgb(255,105,180); stop-opacity:1"/>
      <stop offset="100%" style="stop-color:rgb(255,255,0); stop-opacity:1"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Floating Castle -->
  <g transform="translate(100,120)">
    <path d="M50 50 L90 50 L90 10 L115 35 L140 10 L140 50 L180 50 L180 80 L150 80 L150 120 L80 120 L80 80 L50 80 Z" fill="lightgray" />
    <rect x="100" y="80" width="20" height="40" fill="darkgray"/>
    <polygon points="50,50 90,50 70,20" fill="darkgray"/>
    <polygon points="110,35 140,50 170,35 140,10" fill="silver"/>
  </g>
  <!-- Balloons -->
  <circle cx="80" cy="60" r="20" fill="rgb(255,99,71)"/>
  <circle cx="120" cy="40" r="15" fill="rgb(154,205,50)"/>
  <circle cx="160" cy="70" r="25" fill="rgb(255,140,0)"/>
  <circle cx="200" cy="50" r="20" fill="rgb(138,43,226)"/>
  <!-- Strings -->
  <path d="M80,80 Q90,100 75,140" stroke="url(#stringGradient)" stroke-width="2" fill="none"/>
  <path d="M120,55 Q140,70 110,140" stroke="url(#stringGradient)" stroke-width="2" fill="none"/>
  <path d="M160,95 Q150,120 135,140" stroke="url(#stringGradient)" stroke-width="2" fill="none"/>
  <path d="M200,70 Q190,100 170,140" stroke="url(#stringGradient)" stroke-width="2" fill="none"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bg-gradient)"/>
  <linearGradient id="bg-gradient" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="300">
    <stop offset="0" stop-color="#4567b7"/>
    <stop offset="1" stop-color="#6495ed"/>
  </linearGradient>
  
  <!-- Castle -->
  <g transform="translate(100, 50)">
    <rect x="0" y="0" width="80" height="150" fill="#968756" rx="10"/>
    <rect x="15" y="30" width="50" height="50" fill="#857a6f" rx="5"/>
    <rect x="15" y="90" width="50" height="50" fill="#857a6f" rx="5"/>
    <path d="M 40 0 L 80 30 L 40 60 Z" fill="#857a6f"/>
  </g>
  
  <!-- Balloons -->
  <g>
    <circle cx="50" cy="200" r="30" fill="url(#balloon-gradient)"/>
    <circle cx="150" cy="100" r="30" fill="url(#balloon-gradient)"/>
    <circle cx="250" cy="200" r="30" fill="url(#balloon-gradient)"/>
    <linearGradient id="balloon-gradient" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#ff69b4"/>
      <stop offset="1" stop-color="#ffe6f2"/>
    </linearGradient>
  </g>
  
  <!-- Strings -->
  <g>
    <path d="M 100 150 L 50 200" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
    <path d="M 150 50 L 150 100" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
    <path d="M 250 150 L 250 200" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
  </g>
  
  <!-- Glow Effect -->
  <g>
    <circle cx="50" cy="200" r="30" fill="url(#glow-gradient)" opacity="0.5"/>
    <circle cx="150" cy="100" r="30" fill="url(#glow-gradient)" opacity="0.5"/>
    <circle cx="250" cy="200" r="30" fill="url(#glow-gradient)" opacity="0.5"/>
    <linearGradient id="glow-gradient" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#fff"/>
      <stop offset="1" stop-color="#add8e6"/>
    </linearGradient>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image more clearly represents the concept of a 'floating castle tangled in glowing balloon strings' with its depiction of a castle-like structure held by colorful balloons.

    The composition is visually appealing with the use of vibrant colors and the glowing effect on the strings.

    In contrast, Player 2's image lacks clarity in depicting a castle and the concept of glowing balloons, resulting in less adherence to the prompt.

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
13
Player 2
14
Rectangles

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

Player 1
2
Player 2
4
Circles

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

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

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

Player 1
1
Player 2
4

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
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
3
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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