How to crop images from camera
问题 How can I crop the camera images. Now it is showing the the image for crop and after selecting the crop section while tap on the " Save " button. Its showing as " saving image ". After that nothing is happen. Here is my code. Button click : Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(MediaStore.EXTRA_OUTPUT, MediaStore.Images.Media.EXTERNAL_CONTENT_URI.toString()); intent.putExtra("crop", "true"); intent.putExtra("aspectX", 0); intent.putExtra("aspectY", 0);