我可以在保存之前检查下载的图像是否损坏吗?
在将下载的图像保存到我的文档目录之前,我可以检查它是否已损坏吗? 如果是的话请告诉我怎么做? 谢谢
can I check if downloaded image is corrupt or not before saving it into my document directory?
if yes then please tell me how?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这有帮助
Hope this helps
您可以尝试使用
initData
加载UIIImage
中的NSData
对象。然后检查返回的 UIImage 对象是否为 nil。这不是完整的证明方法,但应该可行。
You could try to load the
NSData
object in aUIIImage
with theinitData
. Then check if the returnUIImage
object isnil
.This is not full proof methods, but should work.