I'm developing an Android app where the server sends to the app (and viceversa) different base64 encoded images. Is it possible to compress the base64 string? something like
photo --> base64 encoded string --> compressed string
Doing so, how much data can I save, more or less? And, if I can save some byte, what is the best way to do the compression in Android and in Java?
In pure Java I sow here on Stackoverflow the Deflater class (that can do the work, but I don't know how much does it permits to save in terms of data).