Android crop bitmap on top corners of image năm 2024

In this section I'll show how to crop image via rectangle shape using Android-Image-Cropper and image from camera.

To get picture from Camera and write access to disk I'm going to use EasyPermissions.

Add the below line in your module’s build.gradle file:

dependencies {

...
implementation 'pub.devrel:easypermissions:1.2.0'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
}

Add permissions and


9 into your AndroidManifest.xml


Following is layout for MainActivity.

android:layout_width="match_parent" android:layout_height="match_parent">