我必须裁剪位图图像。为此,我正在使用
Bitmap bitmap = Bitmap.createBitmap(imgView.getWidth(),imgView.getHeight(), Bitmap.Config.RGB_565);
Bitmap result =Bitmap.createBitmap(bitmap,imgView.getLeft()+10, imgView.getTop()+50, imgView.getWidth()-20, imgView.getHeight()-100);
bitmap.recycle();
Canvas canvas = new Canvas(result);
imgView.draw(canvas);
但它会切割位图的底部和右侧。位图的顶部和左侧部分存在于输出中。这意味着 x 和 y 位置没有影响。
我正在寻找好的文档。但我做不到。
提前致谢
这里有什么问题以及如何解决?