Android: Free Croping of Image 首选此链接裁剪图像。
但我的问题是当裁剪图像时保留原始图像的一部分是黑色的。那我怎么能删除那个黑色部分?
我用过:
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);
这里我使用此链接获得Xmin,Ymin,Width,Height: https://stackoverflow.com/questions/16693229/need-help-finding-minimum-x-and-y-values-in-an-arraylist-of-points-java
但我没有创造裁剪图像的界限......请有人帮我吗?
Thanx提前......