I’ve image has been crop. I want that image save to folder (sdcard)…I’ve already done crop image and show to imageview, but my problem is, I don’t know how saving image crop to sdcard ?
here is my code has success to crop an image..
Bundle extras = data.getExtras();
if (extras != null) {
Bitmap photo = extras.getParcelable("data");
mImageView.setImageBitmap(photo);
}
where I can add the code to save an image that have been cropped?
Try out this way:
Add below permission in manifest file.