I am using the below intent to crop the images selected from gallery or taken by camera:
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setClassName("com.android.camera", "com.android.camera.CropImage");
However I need to add rotate buttons to that screen as well. Is there a way to do that?
Thanks in advance.