increase jpeg quality from 80 to 85
This results in about the same filesize as a 90q-webp
This commit is contained in:
parent
41e57bb1c6
commit
329451dce4
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user