将来自 asp.net Web 服务的数据流转换为 UIImage (iPhone)

发布于 2024-09-27 18:35:30 字数 175 浏览 1 评论 0原文

我开发了一个发送图像的 asp.net Web 服务,我想将接收到的数据流转换为 iPhone 中的 UIImage,

这是我从 Web 服务获得的示例

R0lGODlhbQCdAOYA...KsxbcSAAOw==

提前谢谢您!

I developed an asp.net web service that send an image and i want to convert the received data stream to an UIImage in my iPhone

this is a sample of what i get from the web service

R0lGODlhbQCdAOYA...KsxbcSAAOw==

thank you in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

活雷疯 2024-10-04 18:35:30

这是一个base64编码的字符串,因此您需要首先对其进行解码,然后将其放入NSData对象中。
接下来是从 NSData 对象创建一个 UIImage,可以这样完成:

NSData *myData;
UIImage *image = [UIImage imageWithData:myData];

This is an base64 encoded string, so you need to first decode it and then put it into an NSData object.
The next thing is to create an UIImage from the NSData object, this can be done like this:

NSData *myData;
UIImage *image = [UIImage imageWithData:myData];
浅忆流年 2024-10-04 18:35:30

为了将 Base64 编码的字符串编码/解码为 NSData,请参阅以下 帖子。最后有一个指向执行 Base64 编码/解码的 NSData 类别的链接。

And in order to encode/decode Base64 encoded strings into NSData, see the following post. At the end there's a link to a NSData category that does Base64 encoding/decoding.

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