我正在调用网络服务。有响应是一个图像。这是一种字符串格式。如何将 Base64 字符串转换为图像。
谢谢。
在您的项目中添加Base64类http://www.imthi.com/wp-content/uploads/2010/08/base64.zip 。
你可以encode
使用:
NSData* data = UIImageJPEGRepresentation(yourImage, 1.0f);
[Base64 initialize];
NSString *strEncoded = [Base64 encode:data];
Decode
使用:
[Base64 initialize];
NSData* data = [Base64 decode:strEncoded ];;
image.image = [UIImage imageWithData:data];
检查此链接以获取更多信息。
你也可以参考这个