我的本地图库中有一个大小为1.61 mb的图像,但是当我使用下面的代码选择图像并记录它的大小时它会变成6mb!如何使图像大小变大或我的计算或获取字节的方法是错误的。
使用此选择图像。
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, SELECT_PHOTO);
使用此获取位图字节。
bytes = bitmap.getRowBytes() * bitmap.getHeight();
public static String humanReadableByteCount(long bytes, boolean si) {
int unit = si ? 1000 : 1024;
if (bytes < unit) return bytes + " B";
int exp = (int) (Math.log(bytes) / Math.log(unit));
String pre = (si ? "kMGTPE" : "KMGTPE").charAt(exp-1) + (si ? "" : "i");
return String.format("%.1f %sB", bytes / Math.pow(unit, exp), pre);
}