Reputation: 16428
Does android have any built-in features to slice an image into portions? For example, if I have an image loaded in my application (such as setting on in an ImageView), is it possible to slice that image up into 4 equal segments and display each one separately?
If there is nothing out of the box, which libraries would enable me to do this?
Thanks
Upvotes: 1
Views: 2244
Reputation: 8639
If you're working with bitmaps, you can use Bitmap.createBitmap to extract sub-images.
Hope this helps,
Phil Lello
Upvotes: 1