Merge "Use Q=100 JPEG instead of PNG for wallpaper display" into nyc-dev
This commit is contained in:
@@ -432,7 +432,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub {
|
|||||||
|
|
||||||
f = new FileOutputStream(wallpaper.cropFile);
|
f = new FileOutputStream(wallpaper.cropFile);
|
||||||
bos = new BufferedOutputStream(f, 32*1024);
|
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
|
bos.flush(); // don't rely on the implicit flush-at-close when noting success
|
||||||
success = true;
|
success = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user