我有一个类,在构造函数中我得到一个文件。这个文件是jpeg。如何在此类中获取此 jpeg 文件的分辨率?这是来自构造函数的一些代码:
public static Bitmap bitmapSizer(File file) {
BitmapFactory.Options options = new BitmapFactory.Options();
Bitmap bitmap = null;
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
int imageHeight = options.outHeight;
int imageWidth = options.outWidth;
options.inDither = true;
options.inPreferredConfig = Bitmap.Config.ARGB_4444;
options.inPurgeable = true;
options.inSampleSize=8;
options.inJustDecodeBounds = false;