Back

SVG Drawing Match #623

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating garden on a whale's back under a starry sky"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#ffd700"/>
    </radialGradient>
    <linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4a90e2"/>
      <stop offset="100%" stop-color="#003e7e"/>
    </linearGradient>
    <linearGradient id="gardenGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#70db70"/>
      <stop offset="100%" stop-color="#3f7f3f"/>
    </linearGradient>
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="1" fill="darkgreen" />
    </pattern>
  </defs>

  <!-- Background: Starry Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="black" />
  <!-- Stars scattered -->
  <g id="stars">
    <circle cx="20" cy="40" r="1.5" fill="url(#starGradient)" />
    <circle cx="80" cy="60" r="1" fill="url(#starGradient)" />
    <circle cx="150" cy="30" r="1.5" fill="url(#starGradient)" />
    <circle cx="210" cy="70" r="1" fill="url(#starGradient)" />
    <circle cx="250" cy="40" r="2" fill="url(#starGradient)" />
    <circle cx="120" cy="100" r="1.2" fill="url(#starGradient)" />
    <circle cx="200" cy="20" r="1" fill="url(#starGradient)" />
    <circle cx="270" cy="90" r="1.5" fill="url(#starGradient)" />
    <circle cx="50" cy="150" r="1" fill="url(#starGradient)" />
    <circle cx="100" cy="130" r="1.5" fill="url(#starGradient)" />
    <circle cx="160" cy="150" r="1" fill="url(#starGradient)" />
    <circle cx="230" cy="110" r="1.2" fill="url(#starGradient)" />
    <circle cx="290" cy="140" r="1" fill="url(#starGradient)" />
  </g>

  <!-- Whale Body -->
  <g id="whale">
    <path d="M50,180 Q10,150 30,100 Q55,50 120,45 Q180,35 240,70 Q280,95 270,140 Q260,190 220,210 Q180,230 140,220 Q100,210 70,190 Q60,185 50,180Z" fill="url(#whaleGradient)" stroke="#001f3f" stroke-width="1"/>
    <!-- Whale eye -->
    <circle cx="100" cy="100" r="3" fill="white" />
    <circle cx="100" cy="100" r="1.5" fill="black" />
  </g>

  <!-- Floating Garden -->
  <g id="garden">
    <!-- Garden "island" on whale back -->
    <ellipse cx="170" cy="140" rx="40" ry="20" fill="url(#gardenGradient)" stroke="#2e8b57" stroke-width="1"/>
    <!-- Trees and flowers on garden -->
    <!-- Tree trunk -->
    <rect x="160" y="110" width="6" height="30" fill="#8B4513" />
    <!-- Tree leaves -->
    <circle cx="163" cy="105" r="10" fill="url(#leafPattern)" stroke="#006400" stroke-width="0.5"/>
    <!-- Flower 1 -->
    <circle cx="185" cy="145" r="3" fill="#ff69b4" />
    <path d="M185,142 L185,138" stroke="#ff1493" stroke-width="0.5"/>
    <!-- Flower 2 -->
    <circle cx="155" cy="150" r="3" fill="orange" />
    <path d="M155,147 L155,143" stroke="red" stroke-width="0.5"/>
    <!-- Bush -->
    <ellipse cx="175" cy="155" rx="6" ry="3" fill="#228B22" />
    <!-- Floating pond -->
    <ellipse cx="155" cy="135" rx="5" ry="2" fill="#00BFFF" />
  </g>

  <!-- Whimsical floating effects: Glowing aura around the garden -->
  <radialGradient id="auraGradient" cx="50%" cy="50%" r="50%">
    <stop offset="0%" stop-color="rgba(255,255,255,0.8)"/>
    <stop offset="100%" stop-color="rgba(0,128,0,0)"/>
  </radialGradient>
  <ellipse cx="170" cy="140" rx="50" ry="30" fill="url(#auraGradient)" />

  <!-- Additional overlay: subtle overlay of magic sparkles -->
  <g id="sparkles">
    <circle cx="190" cy="120" r="1" fill="white" opacity="0.8"/>
    <circle cx="160" cy="160" r="1.2" fill="white" opacity="0.8"/>
    <circle cx="180" cy="130" r="0.8" fill="white" opacity="0.8"/>
    <circle cx="200" cy="150" r="1" fill="white" opacity="0.8"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #003366; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #000033; stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color: #ffcc00; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #000000; stop-opacity:1"/>
    </radialGradient>
  </defs>
  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="url(#starGradient)"/>
  <circle cx="100" cy="100" r="3" fill="url(#starGradient)"/>
  <circle cx="200" cy="30" r="2" fill="url(#starGradient)"/>
  <circle cx="250" cy="150" r="2" fill="url(#starGradient)"/>
  <circle cx="150" cy="200" r="3" fill="url(#starGradient)"/>
  <!-- Whale -->
  <path d="M150 180 q-50 50 50 50 q100 -100 0 0" fill="#006699" stroke="#004d73" stroke-width="2"/>
  <!-- Floating Garden -->
  <defs>
    <pattern id="flowerPattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
      <circle cx="15" cy="15" r="10" fill="url(#flowerGradient)"/>
    </pattern>
    <linearGradient id="flowerGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #ff99cc; stop-opacity:1"/>
      <stop offset="100%" style="stop-color: #ff6699; stop-opacity:1"/>
    </linearGradient>
  </defs>
  <rect x="120" y="140" width="60" height="20" fill="url(#flowerPattern)"/>
  <!-- Leaves -->
  <path d="M110 160 q20 20 40 0" fill="#33cc33"/>
  <path d="M130 140 q20 -20 40 0" fill="#33cc33"/>
  <!-- Water -->
  <rect x="0" y="180" width="300" height="120" fill="url(#waterGradient)"/>
  <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" style="stop-color: #006699; stop-opacity:1"/>
    <stop offset="100%" style="stop-color: #003366; stop-opacity:1"/>
  </linearGradient>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image clearly depicts a whale shape with a garden on its back under a starry sky, adhering closely to the prompt.

    The garden is identifiable with a tree and other elements, adding to the creativity and visual appeal.

    Player 2's image, while creative, lacks clarity in representing the whale and garden concept, making Player 1's submission the stronger choice.

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
32
Player 2
12
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
23
Player 2
6
Ellipses

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

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

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

Player 1
3
Player 2
3
Groups

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
4
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
21
Player 2
3

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
14
Player 2
7
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
4
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