Skip to content Skip to sidebar Skip to footer

Android: Is It Possible To Convert A Tiff Image To Jpg, Png?

I know android does not support TIFF format but I'm getting a Base64 image string from a web service and i need to display it. byte[] decodedString = Base64.decode(serverRespon

Solution 1:

If you are willing to add some C++ to your project via the Android NDK, then libtiff should do what you want.

see question Convert JPEG/PNG image to TIFF image format in android OS

Post a Comment for "Android: Is It Possible To Convert A Tiff Image To Jpg, Png?"