increase jpeg quality from 80 to 85

This results in about the same filesize as a 90q-webp
This commit is contained in:
Adrian Ulrich 2016-02-07 13:06:12 +01:00
parent 41e57bb1c6
commit 329451dce4

View File

@ -325,7 +325,7 @@ public class CoverCache {
ByteArrayOutputStream out = new ByteArrayOutputStream();
// We store a lossy version as this image was
// created from the original source (and will not be re-compressed)
cover.compress(Bitmap.CompressFormat.JPEG, 80, out);
cover.compress(Bitmap.CompressFormat.JPEG, 85, out);
Random rnd = new Random();
long ttl = getUnixTime() + rnd.nextInt(OBJECT_TTL);