Adrian F
unread,Sep 20, 2023, 4:28:58 PM9/20/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to skia-discuss
Hi, I'm trying to implement a drawing application using Visual Studio's Window Forms Applications. I decided to go with Skia for the drawing logic and I have been struggling to implement 'custom brushes'. Essentially I want to be able to create different types of brushes like the Microsoft Paint program, but I haven't been able to find much information online. The best I've been able to do is use an SKShader ( with a png bitmap ), in the SKPaint object and then using this paint object in the Canvas.Draw() method, but the behavior is more like the bitmap is being revealed rather than actually 'drawing' with the bitmap. I hope that makes sense and I would appreciate any advice that'll point me in the right direction (if this is even possible with Skiasharp), thanks!