How to put selection area (mobile) for photo taken

2

I would like to know how to do it right after taking a photo and grabbing the file and uploading this photo, create a photo select area to the whatsapp profile photo style, and then save just that bit as the image.

Examples:

    
asked by anonymous 10.03.2016 / 18:01

1 answer

1

Hello,

You can use these lib to make the process easier link , link or you can do it using the bitmap

Bitmap Bmp = Bitmap.createBitmap(originalBmp, 0, 0, originalBmp.getWidth(), originalBmp.getHeight()-10);
    
10.03.2016 / 18:18