For purposes of making better Outlined Font with SkiaSharp, we’d like to Pre-Dilate each font that we use - and then use the Dilated Font to create the outline.
Skia has a ImageFilter.Dilate, which does what we want, but has POOR PERFORMANCE, because as it renders, it’s dilating EVERY PIXEL runtime… which is wouldn’t be necessary if we instead fed Skia a pre-dilated version of the TTF / Typeface!
And so we’re looking for a tool that allows us to create a custom-version of any font where it’s simply Dilated by ‘X’ amount.
Does anyone have suggestions for font editing tool to do this? Or does anyone know of a better/alternative way to achieve dilated text outlines using Skia??