Reputation: 121
I am developing an iOS app that uses a paint brush to draw in a board. I have created a simple paint tool with which user can paint,but what I really need is a paint tool that draws with brush stroke. Is there anyway to achieve the same in native iOS app development?
Here is a sample image of the brush stroke I would like to create:
Upvotes: 10
Views: 4233
Reputation: 12621
the fact is you'll have to go to GLPaint
https://developer.apple.com/library/ios/samplecode/GLPaint/Introduction/Intro.html
consider also https://github.com/rbuussyghin/glpaint
and https://stackoverflow.com/a/2045262/294884
this is not easy.
Indeed, it's a huge P.I.T.A. Surprisingly, nobody has a ready-made solution for this in iOS.
Surprisingly, as far as I know, there is STILL no ready-made solution for this. Strange thing!
Appears there are finally some libraries in Metal, example
https://github.com/Harley-xk/MaLiang
Upvotes: 12