am 80d8ace4: Merge change 26997 into eclair

Merge commit '80d8ace484525f0272b8a56142ef838f5f4d38e4' into eclair-plus-aosp

* commit '80d8ace484525f0272b8a56142ef838f5f4d38e4':
  Fix issue 2128896 The thumbnail generated after picture capture with max zoom is overlapped with previous thumbnail.
This commit is contained in:
Ray Chen
2009-09-24 21:26:27 -07:00
committed by Android Git Automerger

View File

@@ -245,7 +245,7 @@ public class ThumbnailUtil {
} }
Matrix matrix = new Matrix(); Matrix matrix = new Matrix();
matrix.setScale(scale, scale); matrix.setScale(scale, scale);
Bitmap miniThumbnail = transform(matrix, source, width, height, false, recycle); Bitmap miniThumbnail = transform(matrix, source, width, height, true, recycle);
return miniThumbnail; return miniThumbnail;
} }