How do I create an image from a Base64-encoded string in Swift?(如何在 Swift 中从 Base64 编码的字符串创建图像?)
问题描述
Web 服务将 Base64 编码的图像作为字符串回显.如何在 Swift 项目中解码和显示此编码图像?
A web service echoes a Base64 encoded image as a string. How can one decode and display this encoded image in a Swift project?
具体来说,我想将 Web 服务已经提供的图像作为 Base64 格式的字符串,并了解如何在 UIImageView 中显示它.
Specifically, I would like to take an image, which is already provided by the web service as a string in Base64 format, and understand how to display it in a UIImageView.
到目前为止,我发现的文章描述了已弃用的技术,或者是用我不熟悉的 Objective-C 编写的.如何接收 Base64 编码的字符串并将其转换为 UIImage?
The articles I have found thus far describe deprecated techniques or are written in Objective-C, which I am not familiar with. How do you take in a Base64-encoded string and convert it to a UIImage?
推荐答案
通过执行以下操作将您的 base64 编码字符串转换为 NSData
实例:
Turn your base64 encoded string into an NSData
instance by doing something like this:
let encodedImageData = ... get string from your web service ...
let imageData = NSData(base64EncodedString: encodedImageData options: .allZeros)
然后把imageData变成一个UIImage:
Then turn the imageData into a UIImage:
let image = UIImage(data: imageData)
然后您可以在 UIImageView
上设置图像,例如:
You can then set the image on a UIImageView
for example:
imageView.image = image
这篇关于如何在 Swift 中从 Base64 编码的字符串创建图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Swift 中从 Base64 编码的字符串创建图像?
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01