I would like to change an image I loaded to have round corners.
Any hints, tutorials, best practices you know of?
|
feedback
|
|
Why not use clipPath?
| |||||||||||||||
feedback
|
|
For a more controlled method draw a rounded rectangle and mask it onto your image using the porter-duff Xfer mode of the paint. First setup the Xfer paint and the rounded bitmap:
Now apply this bitmap ontop of your image:
Note: this is not the same canvas as before, it is a canvas to whatever buffer you're drawing to. | |||||||||||||
feedback
|
|
How about creating a NinePatchDrawable image that has just rounded corners and has a transparent body. Overlay your image with an appropriately re-sized version of your NinePatchDrawable. | |||||||||||
feedback
|
| |||||
feedback
|