我正在寻找“developer.android.com”来缩小我的位图文件,但我发现了一件事我不明白。所以我很感谢你给我一点帮助。
这是来自 developer.android.com的片段
public static int calculateInSampleSize(
BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
if (width > height) {
inSampleSize = Math.round((float)height / (float)reqHeight);
} else {
inSampleSize = Math.round((float)width / (float)reqWidth);
}
}
return inSampleSize;
}
在 if 语句中,当“ if(width > height)”时,他们为什么要计算“(float)height / (float)reqHeight”?
例如,宽度=600,高度=800,reqWidth=100,reqHeight=100。
在这种情况下,inSampleSize 将为 6,计算的尺寸为 width=100,height=133。高度仍然高于 reqHeight..
那么,有人可以解释一下吗?对不起复杂的解释,但我希望有人给我一个想法。:)