Back

SVG Drawing Match #1688

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Treehouse in a shoe-shaped tree"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#1a0c3f"/>
      <stop offset="100%" stop-color="#4b0082"/>
    </linearGradient>
    <radialGradient id="sole" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#5d4037"/>
      <stop offset="100%" stop-color="#3e2723"/>
    </radialGradient>
    <pattern id="wood" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M0 20L20 0M-5 5L5-5M15 25L25 15" stroke="#6d4c41" stroke-width="2"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>

  <!-- Shoe-tree trunk -->
  <path d="M110 250 C80 200 120 80 150 50 180 80 220 200 190 250Z" fill="url(#sole)" stroke="#321911" stroke-width="4"/>
  <path d="M135 70 Q145 40 165 70" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>

  <!-- Treehouse structure -->
  <g transform="translate(115 100)">
    <rect x="20" y="30" width="50" height="70" fill="url(#wood)"/>
    <path d="M0 70 l35-40 35 40" fill="#8d6e63"/>
    <circle cx="45" cy="50" r="8" fill="#ffd54f"/>
    <rect x="35" y="60" width="20" height="40" fill="#795548"/>
    <path d="M25 100 l20-10 20 10" fill="#a1887f"/>
  </g>

  <!-- Foliage clusters -->
  <g fill="#2e7d32">
    <circle cx="180" cy="90" r="35"/>
    <circle cx="120" cy="70" r="28"/>
    <circle cx="150" cy="40" r="25"/>
  </g>

  <!-- Whimsical details -->
  <path d="M200 180 Q210 160 220 180 T240 190" stroke="#ff4081" fill="none" stroke-width="3"/>
  <g transform="translate(170 200)">
    <circle cx="0" cy="0" r="10" fill="#ffee58"/>
    <path d="M-15-5 l5 10 10-5" stroke="#fdd835" stroke-width="3"/>
  </g>

  <!-- Lace vines -->
  <g stroke="#fff" stroke-width="2" fill="none">
    <path d="M130 150 q20-30 40 0"/>
    <path d="M140 170 q25-25 35 5"/>
    <path d="M160 190 q15-15 20 10"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="treeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#A0522D;stop-opacity:1" />
        </linearGradient>
        <linearGradient id="shoeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1" />
        </linearGradient>
        <linearGradient id="houseGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#87CEEB;stop-opacity:1" />
        </linearGradient>
    </defs>
    <g transform="translate(50 150)">
        <path d="M75 0 Q90 -70 120 -60 Q135 -50 150 -20 Q150 10 120 30 Q90 70 75 0 Z" fill="url(#shoeGradient)" />
        <path d="M75 0 Q90 -70 120 -60 Q135 -50 150 -20 Q150 10 120 30 Q90 70 75 0 Z" stroke="#000000" stroke-width="2" fill="none"/>
        <rect x="70" y="-20" width="30" height="20" fill="url(#houseGradient)" stroke="#000" stroke-width="1" />
        <polygon points="70,-20 85,-40 100,-20" fill="#FF4500" stroke="#000" stroke-width="1" />
        <path d="M40 25 C20 10, 10 -10, 25 0 C15 20, 5 30, 15 35 C25 40, 35 30, 40 25 Z" fill="url(#treeGradient)" />
        <path d="M30 25 C15 10, 5 -10, 15 0 C10 15, 0 25, 5 30 C8 35, 12 34, 30 25 Z" fill="url(#treeGradient)" />
        <circle cx="75" cy="-20" r="5" fill="#228B22" />
        <circle cx="50" cy="-10" r="5" fill="#228B22" />
        <circle cx="100" cy="-10" r="5" fill="#228B22" />
        <circle cx="60" cy="-50" r="5" fill="#228B22" />
        <circle cx="90" cy="-50" r="5" fill="#228B22" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's submission creatively integrates the concept of a treehouse within the shoe-shaped tree, using a clear tree-like shape and visible treehouse elements.

    The design is cohesive, with a strong use of color and composition that effectively captures the prompt.

    In contrast, Player 2's entry lacks clarity and structure, making it less visually appealing and harder to interpret as a shoe-shaped tree with a treehouse.

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
11
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
5
Player 2
5
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
Player 2
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
10
Player 2
4
Groups

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

Player 1
4
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
3
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
4

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

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
22
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
3
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