根据文档Bitmap createBitmap (Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter)
方法:
从源位图的子集中返回一个不可变的位图,由可选矩阵转换。新位图可能是与源相同的对象,或者可能已经制作了副本。它以与原始位图相同的密度进行初始化。如果源位图是不可变的并且请求的子集与源位图本身相同,则返回源位图并且不创建新位图。
我有一种将方向应用于现有位图的方法:
private Bitmap getOrientedPhoto(Bitmap bitmap, int orientation) {
int rotate = 0;
switch (orientation) {
case ORIENTATION_ROTATE_270:
rotate = 270;
break;
case ORIENTATION_ROTATE_180:
rotate = 180;
break;
case ORIENTATION_ROTATE_90:
rotate = 90;
break;
default:
return bitmap;
}
int w = bitmap.getWidth();
int h = bitmap.getHeight();
Matrix mtx = new Matrix();
mtx.postRotate(rotate);
return Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, true);
}
我从这里调用它:
Bitmap tmpPhoto = BitmapFactory.decodeFile(inputPhotoFile.getAbsolutePath(), tmpOpts);
Bitmap orientedPhoto = getOrientedPhoto(tmpPhoto, orientation);
我已经检查过它tmpPhoto
是不可变的,但getOrientedPhoto()
仍然返回可变图像,它是 tmpPhoto 的副本。有谁知道如何在Bitmap.createBitmap()
不创建新位图对象的情况下使用以及我的代码有什么问题?