Back

SVG Drawing Match #2181

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating umbrella carrying a fish over a cityscape"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cityscape -->
  <rect fill="#6395B8" x="0" y="200" width="300" height="100"/>
  <rect fill="#65779A" x="50" y="220" width="40" height="80"/>
  <rect fill="#65779A" x="120" y="250" width="50" height="50"/>
  <rect fill="#65779A" x="210" y="200" width="40" height="100"/>
  <rect fill="#65779A" x="260" y="240" width="30" height="60"/>
  <!-- Windows and details -->
  <rect fill="#F7F7F7" x="55" y="230" width="10" height="10"/>
  <rect fill="#F7F7F7" x="65" y="230" width="10" height="10"/>
  <rect fill="#F7F7F7" x="55" y="240" width="10" height="10"/>
  <rect fill="#F7F7F7" x="65" y="240" width="10" height="10"/>
  <rect fill="#F7F7F7" x="135" y="260" width="10" height="10"/>
  <rect fill="#F7F7F7" x="145" y="260" width="10" height="10"/>
  <rect fill="#F7F7F7" x="135" y="270" width="10" height="10"/>
  <rect fill="#F7F7F7" x="145" y="270" width="10" height="10"/>
  <line stroke="#65779A" stroke-width="2" x1="0" y1="250" x2="300" y2="250"/>
  <!-- Umbrella -->
  <path fill="none" stroke="#695787" stroke-width="4" d="M150,50 L180,80 L210,50 L180,20 Z"/>
  <path fill="#44B6E8" opacity="0.8" d="M180,50 L210,80 L240,50 L210,20 Z"/>
  <path fill="#695787" opacity="0.4" d="M150,50 L180,80 L210,50 L180,20 Z"/>
  <circle fill="#F7F7F7" cx="180" cy="50" r="10"/>
  <!-- Fish -->
  <path fill="#F78C6B" d="M190,70 L200,100 L210,110 L220,100 L230,70 L200,50 Z"/>
  <circle fill="#F7F7F7" cx="210" cy="70" r="5"/>
  <circle fill="#000" cx="210" cy="70" r="2"/>
  <path fill="#603913" d="M190,70 L195,65 L200,50 L205,65 L210,70 Z"/>
  <!-- Water droplets -->
  <circle fill="#67F7F7" cx="180" cy="120" r="5"/>
  <circle fill="#67F7F7" cx="200" cy="150" r="5"/>
  <circle fill="#67F7F7" cx="220" cy="180" r="5"/>
  <circle fill="#67F7F7" cx="160" cy="140" r="5"/>
  <circle fill="#67F7F7" cx="240" cy="160" r="5"/>
  <path fill="#225794" d="M150,50 C170,50 170,100 190,120 C210,140 220,160 240,180 Z"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Sky Gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#70c5ff"/>
      <stop offset="100%" stop-color="#ffffff"/>
    </linearGradient>
    <!-- Umbrella Gradient -->
    <radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6f61"/>
      <stop offset="100%" stop-color="#d7263d"/>
    </radialGradient>
    <!-- Fish Gradient -->
    <linearGradient id="fishGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#34e89e"/>
      <stop offset="100%" stop-color="#0f3443"/>
    </linearGradient>
    <!-- Building Gradient -->
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2c3e50"/>
      <stop offset="100%" stop-color="#34495e"/>
    </linearGradient>
  </defs>
  
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Cityscape -->
  <g id="cityscape" transform="translate(0,200)">
    <rect x="20" y="50" width="30" height="150" fill="url(#buildingGradient)" />
    <rect x="70" y="80" width="20" height="120" fill="url(#buildingGradient)" />
    <rect x="110" y="60" width="25" height="140" fill="url(#buildingGradient)" />
    <rect x="160" y="90" width="15" height="110" fill="url(#buildingGradient)" />
    <rect x="190" y="70" width="20" height="130" fill="url(#buildingGradient)" />
    <rect x="230" y="100" width="25" height="100" fill="url(#buildingGradient)" />
    <rect x="270" y="80" width="15" height="120" fill="url(#buildingGradient)" />
  </g>

  <!-- Floating Umbrella -->
  <g id="umbrella" transform="translate(150,150)">
    <!-- Umbrella Canopy -->
    <path d="
      M -60,0
      A 60,60 0 0,1 60,0
      L 0,0
      Z" 
      fill="url(#umbrellaGradient)" />
    <!-- Umbrella Ribs -->
    <g stroke="#b22222" stroke-width="2">
      <line x1="0" y1="0" x2="0" y2="-50" />
      <line x1="0" y1="0" x2="42.4" y2="-42.4" />
      <line x1="0" y1="0" x2="50,0" y2="-30" />
      <line x1="0" y1="0" x2="42.4,-(-42.4)" y2="42.4" />
      <line x1="0" y1="0" x2="-42.4,42.4" y2="42.4" />
      <line x1="0" y1="0" x2="-50,0" y2="-30" />
      <line x1="0" y1="0" x2="-42.4,-42.4" y2="-42.4" />
    </g>
    <!-- Umbrella Handle -->
    <rect x="-2" y="0" width="4" height="60" fill="#8B4513" />
  </g>

  <!-- Fish -->
  <g id="fish" transform="translate(150,100)">
    <ellipse cx="0" cy="0" rx="15" ry="8" fill="url(#fishGradient)" />
    <polygon points="15,0 25,5 25,-5" fill="url(#fishGradient)" />
    <circle cx="-5" cy="-2" r="2" fill="#ffffff" />
    <circle cx="-6" cy="-2.5" r="1" fill="#000000" />
  </g>

  <!-- Reflection on Water -->
  <g id="reflection" transform="translate(0, 220)">
    <path d="M0,0 Q150,20 300,0" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none" />
    <path d="M0,5 Q150,25 300,5" stroke="rgba(255,255,255,0.2)" stroke-width="2" fill="none" />
    <path d="M0,10 Q150,30 300,10" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission adheres more closely to the prompt with a clear depiction of an umbrella carrying a fish over a cityscape.

    The use of color and simple shapes enhances visual appeal and clarity.

    In contrast, Player 1's image is more abstract and less recognizable in terms of fulfilling the specific prompt requirements.

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
28
Player 2
24
Rectangles

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

Player 1
13
Player 2
9
Circles

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

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

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

Player 1
Player 2
1
Paths

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

Player 1
6
Player 2
4
Groups

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
14

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
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
32
Player 2
10
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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