安卓:是否有可能一个TIFF图像转换为JPG,PNG?(Android: Is it possibl

2019-10-29 03:58发布

我知道Android不支持TIFF格式,但我发现,从Web服务的Base64编码的图像串,我需要显示它。

   byte[] decodedString = Base64.decode(serverResponse, Base64.DEFAULT);
   Bitmap imgMap = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);

我试着用BitmapFactory解码,但因为它没有认识到它作为一个图片返回null

是否有任何外部罐子什么的,我可以添加到显示/转换的图片?

在此先感谢您的帮助!!

Answer 1:

如果你愿意通过Android NDK一些C ++添加到您的项目,然后的libtiff应该做你想要什么。

见问题转换JPEG / PNG图像的TIFF图像格式的android操作系统



文章来源: Android: Is it possible to convert a TIFF image to JPG, PNG?