3

根据文档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()不创建新位图对象的情况下使用以及我的代码有什么问题?

4

1 回答 1

7

似乎这种方法的文档确实不清楚。我在Bitmap crateBitmap()方法中找到了这段代码:

// check if we can just return our argument unchanged
if (!source.isMutable() && x == 0 && y == 0 && width == source.getWidth() &&
    height == source.getHeight() && (m == null || m.isIdentity())) {
    return source;
}

这意味着源位图只有在它是不可变的并且不需要转换的情况下才会返回。

于 2012-09-21T11:27:05.317 回答