1

在我的应用程序中,当我从相机拍照时,我需要获取该图片的大小并压缩它,如果它超过指定的大小。我应该如何知道图像的大小并根据我的应用程序对其进行压缩..

请帮我。

4

1 回答 1

1

要获取高度和宽度,请调用:

Uri imagePath = Uri.fromFile(tempFile);//Uri from camera intent
//Bitmap representation of camera result
Bitmap realImage = BitmapFactory.decodeFile(tempFile.getAbsolutePath());
realImage.getHeight();
realImage.getWidth();

要调整图像大小,我只需将生成的位图提供给此方法:

public static Bitmap scaleDown(Bitmap realImage, float maxImageSize,
            boolean filter) {
    float ratio = Math.min((float) maxImageSize / realImage.getWidth(),
            (float) maxImageSize / realImage.getHeight());
    int width = Math.round((float) ratio * realImage.getWidth());
    int height = Math.round((float) ratio * realImage.getHeight());

    Bitmap newBitmap = Bitmap.createScaledBitmap(realImage, width, height,
            filter);
    return newBitmap;
}

基本其实只是Bitmap.createScaledBitmap()。但是,我将它包装成另一种方法以按比例缩小它。

于 2012-06-11T06:33:57.307 回答