如何从 CGContextRef 获取 UIImage?
我有一个 CGContextRef,我用位图上下文进行了绘图。
现在,我想要一个函数调用来获取 CGContextRef
的 UIImage
。我该怎么做?
I have a CGContextRef
and I did my drawing stuff with the bitmap context.
Now, I would like to have a function call to get a UIImage
for the CGContextRef
. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西:
Something like this :
已针对 Swift 3 进行更新,这是一个方便的函数,它接受 CGContext 并返回 UIImage。请注意,在 Swift 3 中使用完上下文后,您不再需要释放它。
Updated for Swift 3, this is a convenience function that takes a CGContext and returns a UIImage. Note that you no longer need to free the context when you're done with it in Swift 3.