android 读取图片尺寸和大小

 Options options = new BitmapFactory.Options();
                    options.inJustDecodeBounds = true;
                    BitmapFactory.decodeFile(imagePath, options);

其中options就包含图片的尺寸

你可能感兴趣的:(android 读取图片尺寸和大小)