0

我正在尝试裁剪和缩放给定的位图,但只有缩放有效。
我究竟做错了什么?

private Bitmap CropAndShrinkBitmap(Bitmap io_BitmapFromFile, int i_NewWidth, int i_NewHeight) 
{
    int cuttingOffset = 0;
    int currentWidth = i_BitmapFromFile.getWidth();
    int currentHeight = i_BitmapFromFile.getHeight();

    if(currentWidth > currentHeight)
    {
        cuttingOffset = currentWidth - currentHeight;
        Bitmap.createBitmap(i_BitmapFromFile, cuttingOffset/2, 0, currentWidth - cuttingOffset, currentHeight);
    }
    else
    {
        cuttingOffset = i_NewHeight - currentWidth;
        Bitmap.createBitmap(i_BitmapFromFile, 0, cuttingOffset/2, currentWidth, currentHeight - cuttingOffset);
    }
    Bitmap fixedBitmap = Bitmap.createScaledBitmap(i_BitmapFromFile, i_NewWidth, i_NewHeight, false)  ;

    return i_BitmapFromFile;
}

描述说:“createBitmap 返回一个不可变的位图”。
那什么意识?这是我问题的原因吗?

4

2 回答 2

1

默认情况下,位图是“不可变的”,这意味着您无法更改它们。您需要创建一个可编辑的“可变”位图。

查看这些链接以了解如何执行此操作:

BitmapFactory.decodeResource 在 Android 2.2 中返回一个可变位图,在 Android 1.6 中返回一个不可变位图

http://sudarnimalan.blogspot.com/2011/09/android-convert-immutable-bitmap-into.html

于 2012-06-01T20:33:48.817 回答
1

裁剪可能工作正常,但是Bitmap裁剪的结果对象是从返回createBitmap(),原始对象没有被修改(如前所述,因为Bitmap实例是不可变的)。如果你想要裁剪的结果,你必须获取返回值。

Bitmap cropped = Bitmap.createBitmap(i_BitmapFromFile, cuttingOffset/2, 0, currentWidth - cuttingOffset, currentHeight);

然后,您可以根据该结果进行任何进一步的工作。

高温高压

于 2012-06-01T20:42:58.123 回答