I would cut an image with custom shape. The shape is draw with finger by the users. Is this possible in android?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by Simon, Radu Murzea, ElYusubov, Jave, Mario Feb 3 at 20:33
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
As suggested by @harism, you should use BitmapShader I know one example in which Bitmap is cropped circular, here is a nice code snippet by @Altaf
And here is Link Cropping Circular Area from bitmap in android May be helpful to you. |
|||
|
|

BitmapShaders. One would be then original image and then draw user drawn object into other one. For clipping/composing the final image you could put these BitmapShaders intoComposeShaderand choose appropriate PorterDuff mode. – harism Feb 3 at 18:05