I'm trying to crop an photo after taking it with the Intent(MediaStore.ACTION_IMAGE_CAPTURE) but I can't figure out how to keep a large image. I've been following this post to help me : Android: Crop an Image after Taking it With Camera with a Fixed Aspect Ratio But the problem is that I want to get large images (like 640*856), and the biggest images we can get using the camera.action.CROP are 256*256.
The solutions I found are to code my own cropper by the using BitmapRegionDecoder : http://developer.android.com/reference/android/graphics/BitmapRegionDecoder.html by drawing a rectangle over the photo, getting the rectangle coordinates and get it with the BitmapRegionDecoder, or to code a camera from scratch and define a view respecting my ratio, but this won't allow the user to select an area he wants to crop.
If anybody knows a solution, I'd be really glad to hear it.
Thanks in advance.