: 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
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?
More posts by @Courtney577
1 Comments
Sorted by latest first Latest Oldest Best
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
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.