简单的url加载图片,遇到的问题。
图片(jpg)下载是没问题,只是在Android手机上打不开图片,导出到PC端,打开正常可见。
从http://blog.csdn.net/noway211/article/details/6818983,还有http://stackoverflow.com/questions/4339082/android-decoder-decode-returned-false-for-bitmap-download
都没有解决问题。(这个问题回去测试下,大婶看见了,也可以留言帮忙解惑)
最终我发现问题源头在于图片,是CMYK的jpg图片,把它在ps里打开也提示了这点,挺无语的。
"Maybe this is not your case but it could be if you are trying to decode images with CMYK colorspace, instead of RGB colorspace. CMYK images, like this one, are not supported by Android, and will not be displayed even in the Android web browser....."
Android不支持CMYK色彩的jgp图片。。。
解决方案:https://github.com/Mariovc/GetCMYKImage(我的图片(1张1兆大小)比较大,感觉很慢,不建议这个,最好第二种),另一种方案是图片回炉,改造成RGB色彩的jpg图片。