如何在 iPhone 中将 jpeg 文件转换为 pdf 文件?
我想在 iPhone 应用程序中将 jepg 文件转换为 pdf 文件...
有人知道任何链接或教程或对此有任何想法吗?
I want to convert jepg file into pdf file in an iphone application...
Do anyone know any link or tutorial or any idea about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所能做的就是加载图像文件并将其绘制到新创建的 PDF 上下文中:
UIImage
中。CGPDFContextCreate()
或CGPDFContextCreateWithURL()
创建新的 PDF 上下文。All you can do is load the image file and draw it into a newly created PDF context:
UIImage
.CGPDFContextCreate()
orCGPDFContextCreateWithURL()
.CGPDFContextBeginPage()
.CGPDFContextEndPage()
andCGPDFContextClose()
.