I've successfully made an app that takes a photo via startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
and I get the full size image in the onActivityResult
.
But this approach takes a single photo.
I've investegated this link.
By adding INTENT_ACTION_STILL_IMAGE_CAMERA
camera takes multiple images, but after the user presses the back button, I need to process the taken.
How to process captured images?