如何从 UIImage 制作 Pdf?
我的 UIViewController 中有一个 UIImage,我想将该图像迁移到 PDF 格式,那么这种迁移是否可能?请指导我,我对此一无所知。
I have one UIImage in my UIViewController and I want to migrate that image to PDF formate so is it possible to such kind of migration?Please guide me i don't have idea of this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有 UIImageView 到 UIViewController 然后调用这个方法:
像这样使用:
If you have UIImageView into UIViewController then call this method:
Use like this:
这并不难,但需要几个步骤来设置所有内容。基本上,您需要创建一个 PDF 图形上下文,然后使用标准绘图命令在其中进行绘制。要简单地将 UIImage 放入 PDF 中,您可以执行如下操作:
有关详细信息,请参阅 iOS 绘图和打印指南。
It's not very hard, but there are a few steps to set everything up. Basically, you need to create a PDF graphics context, and then draw into it with standard drawing commands. To simply put an UIImage into a PDF, you could do something like the following:
For more information, see the Drawing and Printing Guide for iOS.