Get your free cropped hand. From the original in Android.

Android: Free Image Viewer Prefer this link to crop your image.

But my problem is that cropping the image than the rest of the original image is black. so how can i remove this black part?

I have a use:

    BitmapFactory.Options options = new BitmapFactory.Options();
    bitmap2 = BitmapFactory.decodeFile(Imagepath,options);

    Bitmap resultingImage = Bitmap.createBitmap(bitmap2, Xmin, Ymin, Width, Height);
    Canvas canvas = new Canvas(resultingImage);

here I have Xmin, Ymin, Width, Height using this link: https://stackoverflow.com/questions/16693229/need-help-finding-minimum-x-and-y-values-in-an-arraylist- of-points-java

But I am not creating an image crop limit ... Please, can someone help me?

Thanx in Advance ....

+3
source share

No one has answered this question yet.


All Articles