调整位图大小

时间:2012-03-06 12:31:04

标签: java android image bitmap resize

下面的代码调整位图大小并保持宽高比。 我想知道是否有更有效的调整大小的方法,因为我知道我正在编写已经在android API中提供的代码。

private Bitmap resizeImage(Bitmap bitmap, int newSize){
    int width = bitmap.getWidth();
    int height = bitmap.getHeight(); 

    int newWidth = 0;
    int newHeight = 0;

    if(width > height){
        newWidth = newSize;
        newHeight = (newSize * height)/width;
    } else if(width < height){
        newHeight = newSize;
        newWidth = (newSize * width)/height;
    } else if (width == height){
        newHeight = newSize;
        newWidth = newSize;
    }

    float scaleWidth = ((float) newWidth) / width;
    float scaleHeight = ((float) newHeight) / height;

    Matrix matrix = new Matrix();
    matrix.postScale(scaleWidth, scaleHeight);

    Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, 
            width, height, matrix, true); 

    return resizedBitmap;
}

3 个答案:

答案 0 :(得分:12)

使用方法Bitmap.createScaledBitmap():)

答案 1 :(得分:0)

我真的不这么认为,我的做法几乎和你一样,并且从Android开发者页面得到了这个想法......

答案 2 :(得分:0)

取决于您如何使用图像。如果您只想在视图中显示位图,只需调用myImageView.setImageBitmap(bitmap)并让框架调整大小。但如果你担心记忆,首先缩放可能是一个很好的方法。