I'm trying to put a border on an image and to clip an image into a shape. I've seen some solutions online but not specific to fibit and none of them are working. Anyone know how to do this? I've seen it on some watch faces but they aren't open source.
any help is appreciated
thank you
@Rozeyt wrote:I'm trying to put a border on an image and to clip an image into a shape. I've seen some solutions online but not specific to fibit and none of them are working. Anyone know how to do this? I've seen it on some watch faces but they aren't open source.
any help is appreciated
thank you
Masking is supposed to work with this, but Versa 2 currently won't render if you do.
I generally use transparent backgrounds, or I draw SVG <arc> elements after(/on top of) them to give them a nice sharp well defined border. Occasionally I do both.
<image id="iGl" width="127" height="127" href="png\Glb\G (1).png" opacity="0.8"/>
<arc x="0" y="0" width="128" height="128" fill="black" arc-width="5" sweep-angle="360" />
Best Answer
Best Answer