将来自 asp.net Web 服务的数据流转换为 UIImage (iPhone)
我开发了一个发送图像的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个base64编码的字符串,因此您需要首先对其进行解码,然后将其放入NSData对象中。
接下来是从 NSData 对象创建一个 UIImage,可以这样完成:
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:
为了将 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.