Back

SVG Drawing Match #2681

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A robot watering a flower that's growing out of a shoe."

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#grad-bg)"/>
  <linearGradient id="grad-bg" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0%" stop-color="#f2f2f2"/>
    <stop offset="100%" stop-color="#e6e6e6"/>
  </linearGradient>

  <!-- Shoe -->
  <g transform="translate(100, 150)">
    <path d="M0 0h100v50h-100v-50z" fill="#8B9467"/>
    <path d="M10 10h80v30h-80v-30z" fill="#786C3B"/>
    <circle cx="50" cy="25" r="10" fill="#FFF"/>
    <circle cx="50" cy="25" r="5" fill="#000"/>
  </g>

  <!-- Flower -->
  <g transform="translate(120, 50)">
    <path d="M0 0h20v50h-20v-50z" fill="#FF69B4"/>
    <path d="M5 5h10v40h-10v-40z" fill="#FF99CC"/>
    <circle cx="10" cy="25" r="5" fill="#FFF"/>
    <circle cx="10" cy="25" r="2" fill="#000"/>
    <path d="M5 45h10v5h-10v-5z" fill="#FF99CC"/>
  </g>

  <!-- Robot -->
  <g transform="translate(50, 100)">
    <rect x="0" y="0" width="50" height="70" fill="#B1B1B1"/>
    <rect x="10" y="10" width="30" height="50" fill="#CCC"/>
    <circle cx="25" cy="35" r="10" fill="#FFF"/>
    <circle cx="25" cy="35" r="5" fill="#000"/>
    <path d="M15 60h20v10h-20v-10z" fill="#999"/>
  </g>

  <!-- Watering Can -->
  <g transform="translate(40, 120)">
    <path d="M0 0h20v30h-20v-30z" fill="#4682B4"/>
    <path d="M5 5h10v20h-10v-20z" fill="#6495ED"/>
    <circle cx="10" cy="15" r="5" fill="#FFF"/>
    <circle cx="10" cy="15" r="2" fill="#000"/>
  </g>

  <!-- Water -->
  <path d="M60 140h20v10h-20v-10z" fill="#56B3FA"/>
  <path d="M60 150h20v10h-20v-10z" fill="#56B3FA"/>
  <path d="M60 160h20v10h-20v-10z" fill="#56B3FA"/>

  <!-- Gradients and Shadows -->
  <defs>
    <filter id="drop-shadow">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
      <feOffset dx="2" dy="2" result="offsetblur"/>
      <feMerge>
        <feMergeNode in="offsetblur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <use href="#shoe" filter="url(#drop-shadow)"/>
  <use href="#robot" filter="url(#drop-shadow)"/>
  <use href="#watering-can" filter="url(#drop-shadow)"/>

  <!-- Animation -->
  <animateTransform attributeName="transform" type="rotate" from="0 50 100" to="360 50 100" dur="10s" repeatCount="indefinite"/>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0d8f1"/>
      <stop offset="100%" stop-color="#c8e6a2"/>
    </linearGradient>
    <radialGradient id="sunGrad" cx="50%" cy="20%" r="30%">
      <stop offset="0%" stop-color="#fff799"/>
      <stop offset="100%" stop-color="#ffd33d"/>
    </radialGradient>
    <linearGradient id="metalGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#e0e0e0"/>
      <stop offset="100%" stop-color="#a0a0a0"/>
    </linearGradient>
    <linearGradient id="waterGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0e0ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#47b5ff" stop-opacity="0.6"/>
    </linearGradient>
    <linearGradient id="shoeGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff6f91"/>
      <stop offset="100%" stop-color="#ff9671"/>
    </linearGradient>
    <pattern id="shoePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
      <rect width="10" height="10" fill="#ffe066"/>
    </pattern>
  </defs>

  <!-- Background & Sun -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <circle cx="240" cy="60" r="40" fill="url(#sunGrad)"/>

  <!-- Shadow under shoe -->
  <ellipse cx="190" cy="260" rx="50" ry="8" fill="#000" opacity="0.1"/>

  <!-- Robot Head -->
  <rect x="40" y="50" width="50" height="40" rx="8" fill="url(#metalGrad)" stroke="#777" stroke-width="2"/>
  <circle cx="52" cy="65" r="5" fill="#00bbff" stroke="#006b9c" stroke-width="1"/>
  <circle cx="76" cy="65" r="5" fill="#00bbff" stroke="#006b9c" stroke-width="1"/>
  <rect x="60" y="78" width="14" height="4" rx="2" fill="#006b9c"/>

  <!-- Robot Body -->
  <rect x="40" y="90" width="50" height="60" rx="10" fill="url(#metalGrad)" stroke="#777" stroke-width="2"/>
  <rect x="48" y="100" width="34" height="26" rx="4" fill="#90caf9" stroke="#42a5f5" stroke-width="1.5"/>
  <circle cx="60" cy="115" r="3" fill="#ff8a65"/>
  <circle cx="70" cy="115" r="3" fill="#ff8a65"/>
  <circle cx="60" cy="125" r="3" fill="#ff8a65"/>
  <circle cx="70" cy="125" r="3" fill="#ff8a65"/>

  <!-- Robot Legs -->
  <rect x="52" y="150" width="6" height="20" rx="3" fill="url(#metalGrad)" stroke="#777" stroke-width="1"/>
  <rect x="72" y="150" width="6" height="20" rx="3" fill="url(#metalGrad)" stroke="#777" stroke-width="1"/>

  <!-- Robot Arm -->
  <path d="M90,120 L135,130" stroke="url(#metalGrad)" stroke-width="8" stroke-linecap="round"/>
  <circle cx="135" cy="130" r="6" fill="url(#metalGrad)" stroke="#777" stroke-width="1"/>

  <!-- Watering Can -->
  <g transform="rotate(12 150 118)">
    <rect x="130" y="108" width="40" height="20" rx="4" fill="url(#metalGrad)" stroke="#777" stroke-width="1"/>
    <path d="M170,113 c10,-2 15,5 5,10" fill="url(#metalGrad)" stroke="#777" stroke-width="1"/>
    <path d="M135,128 C125,118 125,108 135,108" fill="none" stroke="url(#metalGrad)" stroke-width="4"/>
  </g>

  <!-- Water Stream & Drops -->
  <path d="M175,135 C178,140 182,150 185,155" stroke="url(#waterGrad)" stroke-width="4" fill="none" stroke-linecap="round"/>
  <circle cx="175" cy="135" r="3" fill="url(#waterGrad)"/>
  <circle cx="180" cy="145" r="3" fill="url(#waterGrad)"/>
  <circle cx="185" cy="155" r="3" fill="url(#waterGrad)"/>

  <!-- Shoe -->
  <path d="M150,230 c25,-12 60,-12 72,8 c5,10 -8,25 -40,25 c-32,0 -35,-15 -32,-33 z" fill="url(#shoeGrad)" stroke="#b73e3e" stroke-width="2"/>
  <path d="M150,230 c30,5 62,5 70,0 l0,8 c-8,3 -40,3 -66,0 z" fill="#eee" stroke="#bbb" stroke-width="1"/>
  <path d="M150,230 c25,-12 60,-12 72,8 c5,10 -8,25 -40,25 c-32,0 -35,-15 -32,-33 z" fill="url(#shoePattern)" opacity="0.3"/>
  <g stroke="#fff" stroke-width="2">
    <line x1="168" y1="222" x2="185" y2="215"/>
    <line x1="178" y1="225" x2="195" y2="218"/>
    <line x1="188" y1="228" x2="205" y2="221"/>
  </g>

  <!-- Flower Stem & Leaves -->
  <path d="M190,218 C190,200 195,180 190,160" stroke="#357a38" stroke-width="4" fill="none"/>
  <path d="M190,200 C180,195 185,185 195,190" fill="#3ca55c" stroke="#2a6f3b" stroke-width="1"/>
  <path d="M190,180 C180,175 190,170 200,175" fill="#3ca55c" stroke="#2a6f3b" stroke-width="1"/>

  <!-- Flower Head -->
  <circle cx="190" cy="160" r="6" fill="#fdd835" stroke="#fbc02d" stroke-width="1"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1" transform="rotate(60 190 160)"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1" transform="rotate(120 190 160)"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1" transform="rotate(180 190 160)"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1" transform="rotate(240 190 160)"/>
  <ellipse cx="190" cy="146" rx="4" ry="10" fill="#ff8a65" stroke="#e64a19" stroke-width="1" transform="rotate(300 190 160)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's image adheres more closely to the prompt by clearly depicting a robot watering a flower growing out of a shoe, with a cohesive and visually appealing composition.

    The design is colorful, detailed, and demonstrates technical skill.

    In contrast, Player 1's image is abstract and lacks clarity in representing the prompt, making it less effective overall.

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
22
Player 2
41
Rectangles

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

Player 1
3
Player 2
9
Circles

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

Player 1
8
Player 2
12
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
Player 2
3
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
11
Player 2
10
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
26

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
28

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
66
Player 2
29
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
1
Player 2
6
Use Elements

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

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