如何从给定的 UIImage 对象获取文件名?
如何从给定的 UIImage 对象获取文件名?
How to get the filename from a given UIImage object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从给定的 UIImage 对象获取文件名?
How to get the filename from a given UIImage object?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不,你不能,因为你可以从纯数据构建
UIImage
而无需文件。No you can't, since you can construct a
UIImage
from pure data without a file.UIImage 不存储加载它的文件名。您需要将其单独保存在下载时的某个位置以供将来使用。
UIImage does not store the file name it was loaded from. You need to save it separately somewhere on download for future usage.