cropping image and save to specific folder in sdcard (Android)?
问题 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? 回答1: Try out this way: Bundle m_extras = data.getExtras();