Back

SVG Drawing Match #1308

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish cityscape, buildings glowing like bioluminescent tentacles"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <radialGradient id="bg" cx="150" cy="300" r="350" gradientUnits="userSpaceOnUse">
    <stop offset="0%" stop-color="#001220"/>
    <stop offset="100%" stop-color="#000"/>
  </radialGradient>
  <rect width="300" height="300" fill="url(#bg)"/>
  <g fill="none" stroke="white" stroke-opacity=".2">
    <line x1="0" y1="280" x2="300" y2="280" stroke-width="1"/>
  </g>

  <g filter="url(#glow)">
  <g opacity=".8">
    <path d="M40 100c0-30 20-50 50-50s60 25 55 55-20 50-55 50c-25 15-70-5-40-40z" fill="url(#grad1)">
        <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="0 -10" dur="4s" repeatCount="indefinite"/>
    </path>
      <radialGradient id="grad1" cx="0.5" cy="0.5" r="0.5">
           <stop offset="0%" stop-color="#8A2BE2" stop-opacity="1"/>
           <stop offset="100%" stop-color="#4B0082" stop-opacity="1"/>
      </radialGradient>
    <path d="M100 80c0-30 5-55 55-55s65 30 50 65c0 5-15 60-60 60-10 0-50-10-50-50z" fill="url(#grad2)">
        <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="5 -15" dur="5s" repeatCount="indefinite"/>
      </path>
       <radialGradient id="grad2" cx="0.5" cy="0.5" r="0.5">
           <stop offset="0%" stop-color="#00BFFF" stop-opacity="1"/>
           <stop offset="100%" stop-color="#1E90FF" stop-opacity="1"/>
      </radialGradient>   
       <path d="M170 140c-20-40 0-70 40-70s55 25 50 65c5 45-10 70-50 70-20 10 -55-5 -55-45z" fill="url(#grad3)">
         <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="-5 -5" dur="3s" repeatCount="indefinite"/>
       </path>
       <radialGradient id="grad3" cx="0.5" cy="0.5" r="0.5">
           <stop offset="0%" stop-color="#90EE90" stop-opacity="1"/>
           <stop offset="100%" stop-color="#008000" stop-opacity="1"/>
      </radialGradient>
       <polyline points="55,150 55,280" stroke="#90EE90" stroke-width="6" stroke-linecap="round" stroke-opacity=".5"/> 
       <polyline points="105,120 105,280" stroke="#00BFFF" stroke-width="10" stroke-linecap="round" stroke-opacity=".5"/>
       <polyline points="180,180 180,280" stroke="#8A2BE2" stroke-width="12" stroke-linecap="round" stroke-opacity=".5"/>
      <polyline points="250,160 250,280" stroke="#DA70D6" stroke-width="8" stroke-linecap="round" stroke-opacity=".5"/>
            <path d="M230 120c-5-35 10-55 50-55s50 25 50 60c-10 35-10 70-60 65-40-5-50 -20 -40-60z" fill="url(#grad4)">
        <animateTransform attributeName="transform" attributeType="XML" type="translate" from="0 0" to="0 -15" dur="6s" repeatCount="indefinite"/>
      </path>       <radialGradient id="grad4" cx="0.5" cy="0.5" r="0.5">
           <stop offset="0%" stop-color="#DA70D6" stop-opacity="1"/>
           <stop offset="100%" stop-color="#800080" stop-opacity="1"/>
      </radialGradient>

  </g>
  </g>

<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
    <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
    <feMerge>
      <feMergeNode in="coloredBlur"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>

</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <rect x="0" y="0" width="300" height="300" fill="#05090b"/>
  <circle cx="150" cy="100" r="60" fill="#0a7181"/>
  <circle cx="120" cy="50" r="80" fill="#0f91a0"/>
  <circle cx="180" cy="50" r="70" fill="#0a7181"/>
  <circle cx="150" cy="150" r="60" fill="#0f91a0"/>
  <circle cx="120" cy="200" r="80" fill="#0a7181"/>
  <circle cx="180" cy="200" r="70" fill="#0f91a0"/>
  <rect x="130" y="250" width="40" height="50" fill="#223a46"/>
  <rect x="140" y="200" width="20" height="20" fill="#3d3d3d"/>
  <circle cx="150" cy="250" r="10" fill="#0a7181"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 1

Judge's Analysis

    Player 1's submission creatively utilizes vibrant colors and glowing effects to depict a jellyfish cityscape, effectively capturing the bioluminescent theme.

    The composition is visually appealing and aligns well with the prompt, using color gradients to suggest the glow of tentacles.

    In contrast, Player 2's image lacks the dynamic visual elements and glowing quality needed to fully embody 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
10
Player 2
10
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
Player 2
Paths

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

Player 1
4
Player 2
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
5

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
4
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
20
Player 2
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

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