从 NSData 到 NSImage 的转换
我正在一个项目中工作,我从服务器获取结果,它就像数据形式意味着数字和数字一样。字母表,所以我想将该 blob 值更改为图像视图,请帮助我,这对我来说太难了。
I am working in a project where i am fetching the result from server, it is coming like data form means as digit & alphabets so i want to change that blob value to image view please help me it is too difficult to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 NSData 创建一个
NSImage
对象 -如果您传入的任何数据应该是图像的数据,这将起作用。
You can make a
NSImage
object with NSData as -this will work if whatever data you are passing in it should be data of a image.