所以,我正在开发一个应用程序,我需要获得图像高度。此图像存储在手机中。为此,我使用以下代码:
photoPath = "file://" + Environment.getExternalStorageDirectory() + "/WIP/test.jpg";
Log.i("Debuguo", photoPath);
Bitmap bitmapWV = BitmapFactory.decodeFile(photoPath);
Log.i("Debuguo", "Test");
String info = Float.toString(bitmapWV.getHeight());
Log.i("Debuguo", info);
photoPath
字符串和
"Test"
在调试窗口中,但没有高度。我认为位图本身可能有问题,所以我尝试了不同的方法来创建它,但仍然没有改变:
public static Bitmap getBitmapFromUrl(String src) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap bitmap = BitmapFactory.decodeFile(src, options);
return bitmap;
}
老实说,这是我第一次遇到这样的问题——没有错误,调试没有显示任何东西。我不知道是什么引起的。