从 NSData 到 NSImage 的转换

发布于 2024-12-02 02:20:50 字数 85 浏览 0 评论 0原文

我正在一个项目中工作,我从服务器获取结果,它就像数据形式意味着数字和数字一样。字母表,所以我想将该 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 技术交流群。

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

发布评论

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

评论(1

落花浅忆 2024-12-09 02:20:50

您可以使用 NSData 创建一个 NSImage 对象 -

NSImage *img = [[NSImage alloc] initWithData:data];

如果您传入的任何数据应该是图像的数据,这将起作用。

You can make a NSImage object with NSData as -

NSImage *img = [[NSImage alloc] initWithData:data];

this will work if whatever data you are passing in it should be data of a image.

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