Merge "Use Q=100 JPEG instead of PNG for wallpaper display" into nyc-dev

This commit is contained in:
Chris Tate
2016-05-11 22:56:13 +00:00
committed by Android (Google) Code Review

View File

@@ -432,7 +432,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub {
f = new FileOutputStream(wallpaper.cropFile);
bos = new BufferedOutputStream(f, 32*1024);
finalCrop.compress(Bitmap.CompressFormat.PNG, 90, bos);
finalCrop.compress(Bitmap.CompressFormat.JPEG, 100, bos);
bos.flush(); // don't rely on the implicit flush-at-close when noting success
success = true;
}