Vachmi

The <feTile> filter primitive allows to fill a target rectangle with a repeated, tiled pattern of an input image.

Attributes

Attribute
Description
in
Identifies the input for the filter primitve

Here is the SVG code to draw this filter.

Image with feTile filter
<svg id='tile1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'>
 <filter id="tile-Ex1">
  <feImage x = "0" y = "0" width = "20%" height = "20%" href = "../images/flower.jpg"/>
  <feTile />
 </filter>
 <rect x = "0" y = "0" width = "100%" height = "100%" filter="url(#tile-Ex1)" />
</svg>