在iOS上动态创建png图像
如何在 iOS 中从文本创建 png 图像?
How do I create a png image from text in iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 iOS 中从文本创建 png 图像?
How do I create a png image from text in iOS?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如何将视图另存为图像:
How to save a view as an image:
斯坦福大学免费 iPhone 编程课程本学期的第一场讲座中对此进行了介绍。有视频和 PDF 注释。
基本上,您可以创建一个 UIImage 并使用其图形上下文进行绘制,然后保存图像的 PNG 表示形式。
It's covered in one of the first lectures in this term of Stanford's free iPhone programming course. There's a video and PDF notes.
Basically, you can create a
UIImage
and use its graphics context to draw into it, then save a PNG representation of the image.