Merge "docs: Fixed logic for determining image sample size" into nyc-dev

This commit is contained in:
Mark Lu
2016-07-11 20:13:34 +00:00
committed by Android (Google) Code Review

View File

@@ -115,8 +115,8 @@ public static int calculateInSampleSize(
// Calculate the largest inSampleSize value that is a power of 2 and keeps both
// height and width larger than the requested height and width.
while ((halfHeight / inSampleSize) > reqHeight
&& (halfWidth / inSampleSize) > reqWidth) {
while ((halfHeight / inSampleSize) >= reqHeight
&& (halfWidth / inSampleSize) >= reqWidth) {
inSampleSize *= 2;
}
}