Android-Image-Cropper icon indicating copy to clipboard operation
Android-Image-Cropper copied to clipboard

Image Cropping Library for Android, optimized for Camera / Gallery.

Results 117 Android-Image-Cropper issues
Sort by recently updated
recently updated
newest added

see related issues #551 #616 ``` Caused by java.lang.NullPointerException: Attempt to invoke virtual method 'android.os.Parcelable android.os.Bundle.getParcelable(java.lang.String)' on a null object reference at com.theartofdev.edmodo.cropper.CropImageActivity.onCreate(CropImageActivity.java:63) ``` Fix by finishing the CropImageActivity gracefully...

Fixed issue where the gallery options were not showing up in the image source picker on Android 10 devices. This is due to the new scoped storage requirements of 10....

When taking a photo from Camera the `data` is always null and result code is always `RESULT_CANCELED` despite successfully taking a picture.

How to add new items in the crop menu (CropImageActivity)?

Hi, I have imagepicker already working in my project. It was woking good with Android 9. But, with one plus 6t android 10, it only gives me options for Camera,...

The cropper screen does not open when I use the camera. camera force going close

I am trying to convert uri to bitmap using ``` val result = CropImage.getActivityResult(data) val selectedImage = result.uri val source = ImageDecoder.createSource(this.contentResolver, selectedImage) val temp = ImageDecoder.decodeBitmap(source) ``` and i...

`protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode==galerypic && requestCode==RESULT_OK && data!=null){ Uri imageuri = data.getData(); CropImage.activity() .setGuidelines(CropImageView.Guidelines.ON) .setAspectRatio(1,1) .start(this); } if (requestCode...