Back

SVG Drawing Match #1276

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surrealist tree made entirely of cascading water streams, under a full moon"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#cce7ff; stop-opacity:1" />
        </linearGradient>
        <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#0099ff; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#00ccff; stop-opacity:1" />
        </linearGradient>
    </defs>
    <rect width="300" height="300" fill="#1a1a1a" />
    <circle cx="150" cy="80" r="40" fill="url(#moonGradient)" />
    <g>
        <path d="M150 150 C120 130, 130 100, 150 70 C170 100, 180 130, 150 150 Z" fill="none" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round" />
        <path d="M155 160 C130 180, 140 230, 155 210 C170 230, 170 180, 155 160 Z" fill="none" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round" />
        <path d="M145 170 C110 210, 120 250, 145 240 C170 250, 160 210, 145 170 Z" fill="none" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round" />
        <path d="M140 180 C115 220, 115 250, 140 240 C165 250, 165 200, 140 180 Z" fill="none" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round" />
        <path d="M150 150 L145 170 L155 160 Z" fill="url(#waterGradient)" />
    </g>
    <g>
        <path d="M150 210 Q160 230, 170 210 Q160 250, 150 210 Z" fill="url(#waterGradient)" />
        <path d="M150 240 Q160 260, 170 240 Q160 280, 150 240 Z" fill="url(#waterGradient)" />
        <path d="M150 220 Q140 240, 130 220 Q140 260, 150 220 Z" fill="url(#waterGradient)" />
        <path d="M150 230 Q140 250, 130 230 Q140 270, 150 230 Z" fill="url(#waterGradient)" />
    </g>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f8f0e3" />
      <stop offset="100%" stop-color="#e5e0d5" />
    </radialGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#a6d8f0" />
      <stop offset="50%" stop-color="#82c3ec" />
      <stop offset="100%" stop-color="#5ea0e2"/>
    </linearGradient>
    <filter id="waterBlur">
      <feGaussianBlur stdDeviation="1.5"/>
    </filter>
  </defs>

  <circle cx="250" cy="50" r="40" fill="url(#moonGradient)" />

  <g filter="url(#waterBlur)">
    <path d="M150 100 C 150 80, 170 60, 140 50 C 110 40, 100 100, 80 130 C 60 160, 160 130, 150 180 C 140 230, 160 170, 150 220" fill="transparent" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round"/>
    <path d="M150 180 C 160 160, 180 190, 170 220 C 160 250, 130 240, 150 280" fill="transparent" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round"/>
    <path d="M80 130 C 40 170, 90 210, 50 250" fill="transparent" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round"/>
    <path d="M170 220 C 200 210, 220 260, 250 290" fill="transparent" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round"/>
     <path d="M140 50 C 180 30, 200 70, 230 80 C 260 90, 220 60, 280 100" fill="transparent" stroke="url(#waterGradient)" stroke-width="5" stroke-linecap="round"/>
        <ellipse cx="150" cy="290" rx="40" ry="10" fill="url(#waterGradient)" opacity=".7"/>
  </g>


</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission better captures the surrealist concept of a tree made of cascading water streams.

    The fluid, flowing lines suggest movement and water, creating a more dynamic and visually appealing interpretation.

    The use of the full moon in the composition is more integrated and enhances the surreal atmosphere, adhering closely 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
11
Player 2
7
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
1
Player 2
1
Ellipses

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

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

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

Player 1
9
Player 2
5
Groups

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

Player 1
2
Player 2
1

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
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
6

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
36
Player 2
15
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
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