我知道 android 不支持 TIFF 格式,但我从 Web 服务获取 Base64 图像字符串,我需要显示它。
byte[] decodedString = Base64.decode(serverResponse, Base64.DEFAULT);
Bitmap imgMap = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
我尝试使用 BitmapFactory 对其进行解码,但由于它无法将其识别为图片,因此它返回 null
是否有任何外部 jar 或我可以添加的东西来显示/转换图片?
在此先感谢您的帮助!!