Bitmap的getWidth()和getHeight()给出错误的值

时间:2014-10-15 19:11:26

标签: android bitmap

我在文件夹

中有一张图片captura.png

原始尺寸为:279 x 450像素。

但是当我得到Widht Height android返回

56 * 52。

Bitmap windowBitmap = BitmapFactory.decodeResource(getResources(),  R.drawable.captura);
       int width = windowBitmap.getHeight();
       int height = windowBitmap.getWidth();

只有一个图像,我需要像素的大小。 ¿我该怎么办?

1 个答案:

答案 0 :(得分:0)

这可能是因为您将文件放在具有不同图像密度的文件夹中。

请参阅:Bitmap getWidth returns wrong value