UIImage-> CG图像参考
我正在构建一个 Iphone 应用程序,需要将 UIImage 转换为 CGImageRef。我不知道如何做到这一点,并且希望得到一些帮助。我没有处理图像的背景......:)
I'm building an Iphone app that needs to convert a UIImage to a CGImageRef. I have no idea how to do this and would love some help. I have no background in working with images... :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它就像
image.CGImage
一样简单,其中image
是一个UIImage
对象。It is as simple as
image.CGImage
whereimage
is aUIImage
object.编写以下内容以从 UIImage 获取 CGImage:
假设你有一个 UIImage 对象 ex imageObject 那么,
write folowing to get CGImage from UIImage:
Suppose u have an UIImage object ex imageObject then,