Back

SVG Drawing Match #1973

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a giant clock face and a tree growing through it"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Island -->
  <rect x="100" y="150" width="100" height="50" rx="20" fill="#F7F4C9" />
  <rect x="90" y="140" width="120" height="60" rx="20" fill="#F2F2F2" />
  <rect x="80" y="130" width="140" height="70" rx="20" fill="#E5E5E5" />
  
  <!-- Clock Face -->
  <circle cx="150" cy="100" r="40" fill="#333" />
  <circle cx="150" cy="100" r="35" fill="#F7F4C9" />
  <circle cx="150" cy="100" r="30" fill="#333" />
  <circle cx="150" cy="100" r="25" fill="#F7F4C9" />
  <circle cx="150" cy="100" r="20" fill="#333" />
  
  <!-- Clock Hands -->
  <line x1="150" y1="100" x2="170" y2="120" stroke="#333" stroke-width="5" />
  <line x1="150" y1="100" x2="140" y2="80" stroke="#333" stroke-width="3" />
  
  <!-- Tree -->
  <path d="M 150 100 L 140 80 C 130 70 120 60 110 50 L 100 40" stroke="#228B22" stroke-width="10" fill="none" />
  <path d="M 110 50 L 100 40 C 90 30 80 20 70 10" stroke="#228B22" stroke-width="8" fill="none" />
  <path d="M 100 40 L 90 30 C 80 20 70 10 60 0" stroke="#228B22" stroke-width="6" fill="none" />
  <circle cx="60" cy="0" r="10" fill="#228B22" />
  
  <!-- Clouds -->
  <circle cx="70" cy="230" r="20" fill="#FFF" />
  <circle cx="190" cy="260" r="30" fill="#FFF" />
  <circle cx="250" cy="220" r="25" fill="#FFF" />
  
  <!-- Gradient Sky -->
  <linearGradient id="sky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#87CEEB" />
    <stop offset="1" stop-color="#ADD8E6" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradients -->
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8EBF42"/>
      <stop offset="100%" stop-color="#4C832F"/>
    </radialGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F5E05F"/>
      <stop offset="100%" stop-color="#E2C044"/>
    </radialGradient>
    <linearGradient id="treeTrunkGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8B5A2B"/>
      <stop offset="100%" stop-color="#5D3A1A"/>
    </linearGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#4682B4"/>
    </linearGradient>
    <!-- Patterns -->
    <pattern id="clockFacePattern" patternUnits="userSpaceOnUse" width="300" height="300">
      <circle cx="150" cy="150" r="1" fill="rgba(0,0,0,0.1)"/>
    </pattern>
  </defs>
  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Floating island base -->
  <ellipse cx="150" cy="230" rx="70" ry="20" fill="#3F704D" opacity="0.8"/>
  <path d="M80,230 Q150,180 220,230 Q210,260 90,260 Z" fill="url(#islandGradient)" stroke="#2F5A3A" stroke-width="2"/>
  
  <!-- Giant clock face integrated on the island -->
  <circle cx="150" cy="230" r="45" fill="url(#clockGradient)" stroke="#B8860B" stroke-width="3"/>
  
  <!-- Clock details: ticks and hands -->
  <!-- Ticks -->
  <g stroke="#8B4513" stroke-width="2">
    <line x1="150" y1="185" x2="150" y2="195"/>
    <line x1="150" y1="265" x2="150" y2="255"/>
    <line x1="195" y1="230" x2="185" y2="230"/>
    <line x1="105" y1="230" x2="115" y2="230"/>
  </g>
  <!-- Clock hands -->
  <line x1="150" y1="230" x2="150" y2="200" stroke="#654321" stroke-width="3" stroke-linecap="round"/>
  <line x1="150" y1="230" x2="175" y2="230" stroke="#654321" stroke-width="2" stroke-linecap="round"/>
  
  <!-- Tree growing through the clock -->
  <g>
    <!-- Tree trunk -->
    <path d="M150,140 L155,230" stroke="url(#treeTrunkGradient)" stroke-width="8" stroke-linecap="round"/>
    <!-- Branches and leaves -->
    <g fill="#228B22">
      <circle cx="145" cy="130" r="10"/>
      <circle cx="160" cy="125" r="12"/>
      <circle cx="150" cy="115" r="9"/>
      <circle cx="140" cy="105" r="8"/>
      <circle cx="155" cy="100" r="7"/>
      <circle cx="170" cy="110" r="6"/>
    </g>
  </g>
  
  <!-- Additional artistic elements: small clouds -->
  <g fill="#FFFFFF" opacity="0.8">
    <ellipse cx="70" cy="50" rx="15" ry="8"/>
    <ellipse cx="90" cy="50" rx="18" ry="10"/>
    <ellipse cx="80" cy="60" rx="12" ry="7"/>
    
    <ellipse cx="230" cy="70" rx="12" ry="7"/>
    <ellipse cx="245" cy="70" rx="15" ry="8"/>
    <ellipse cx="238" cy="80" rx="10" ry="6"/>
  </g>
  
  <!-- Subtle texture overlay on clock face -->
  <circle cx="150" cy="230" r="45" fill="url(#clockFacePattern)" opacity="0.2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image clearly depicts a floating island with a giant clock face and a tree growing through it, adhering closely to the prompt.

    The inclusion of clouds adds depth and visual interest, enhancing the composition.

    Player 1's image lacks elements that align with the theme, making Player 2's submission more relevant and visually appealing.

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
18
Player 2
25
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
9
Player 2
9
Ellipses

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

Player 1
Player 2
7
Lines

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
4
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
16

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
10
Player 2
6
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
5
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