我可以在保存之前检查下载的图像是否损坏吗?

发布于 2024-11-01 19:57:21 字数 56 浏览 1 评论 0原文

在将下载的图像保存到我的文档目录之前,我可以检查它是否已损坏吗? 如果是的话请告诉我怎么做? 谢谢

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枫以 2024-11-08 19:57:21
UIImage *im = [[UIImage alloc] initWithData:YourNSData];
UIImageView *imview;

// test to see if the image was successfully created
if (im){
   imview = [[UIImageView alloc] initWithImage:im];
}

希望这有帮助

UIImage *im = [[UIImage alloc] initWithData:YourNSData];
UIImageView *imview;

// test to see if the image was successfully created
if (im){
   imview = [[UIImageView alloc] initWithImage:im];
}

Hope this helps

何其悲哀 2024-11-08 19:57:21

您可以尝试使用 initData 加载 UIIImage 中的 NSData 对象。然后检查返回的 UIImage 对象是否为 nil。
这不是完整的证明方法,但应该可行。

You could try to load the NSData object in a UIIImage with the initData. Then check if the return UIImage object is nil.
This is not full proof methods, but should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文