Mobile app version of vmapp.org
Login or Join
Courtney577

: Is it possible to give a mask to an SVG document or a layer? I wish to round the corners of some SVG documents in a such a way that it hides whatever gets in that corner. Like a clipping

@Courtney577

Posted in: #Inkscape #Svg

I wish to round the corners of some SVG documents in a such a way that it hides whatever gets in that corner.
Like a clipping Mask of any other objects.

Is this possible in SVG, or in Inkscape?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Courtney577

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kimberly620

Mask or clipping an SVG layer (an object or even a group) can be done using clipPath. This page provides excellent instructions on how to create and apply a clipPath: sawyerhollenshead.com/writing/using-svg-clippath/
These are the two pieces that are essential:

<g>
<clipPath id="hex-mask">
<polygon points="270,0 0,160 0,485 270,645 560,485 560,160" />
</clipPath>
</g>

<image clip-path="url(#hex-mask)" height="100%" width="100%" xlink:href="image.jpg" />


Notice how you first define a clipPath with an ID. This defines the area of the clip or mask. Then you apply that to the element you want to mask using this syntax:

clip-path="url(#id-of-the-clipPath)"


Whenever I've used this functionality, I've edited the svg file manually, so I'm not familiar with how or even whether it's possible to do in Inkscape. But it's fairly easy to edit the svg files with a text editor.

Hope that helps!

Anne

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme