CropperNoCropper
CropperNoCropper copied to clipboard
Cropped Bitmap also take black portion which is not part of Image .
CroppedBitmap also take black line which is not part of Image . How to remove that black portion
It happens with most potrait Images.
BitmapResult bitmapResult = ivSelectedImage.getCroppedBitmap();
if (bitmapResult.getState() == CropState.SUCCESS) {
bitmapResult.getBitmap();
}
What black part are you talking about? Can you provide a screenshot?
Are you talking about the added padding to make the image square? If so, you may use
cropper.setMakeSquare(false);
cropper.setMakeSquare(false);
this function work closed this issue
Thank you!