I am compressing an image in the WEBP-format with the following code:
bitmap.compress(Bitmap.CompressFormat.WEBP, 100, outputStream)
Although I am using highest quality-settings, it looks like the image is not compressed lossless but lossy. Corresponding to the Android developer docs, it should be possible to compress WEBP-files lossless: http://developer.android.com/guide/appendix/media-formats.html http://developer.android.com/reference/android/graphics/Bitmap.CompressFormat.html
I am doing this on a Nexus 4 with Android 4.4.2 Kitkat. Furthermore I am using the highest SDK throughout in my project.
Has anyone got an idea, how to save bitmaps as lossless WEBP-images?