iPhone 从一组图像创建 pdf
我的项目的文档目录中有一些图像。我想要在我的 iPhone 应用程序中的文档目录中根据这些图像创建一个 pdf 文件。我的意思是带有多个图像的pdf。 我能够找到为单个图像创建 pdf,但无法找到任何参考代码来创建多个图像的 pdf 文件。
谢谢。
I have set of few images in documents directory of my project. I want a pdf file created in my iPhone app in documents directory itself from those images. I mean pdf with multiple images.
I am able to find create a pdf for a single image but not able to find any reference code to create pdf file of multiple images.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将每个图像加载到离屏
UIWebView
中。然后对每个图像执行以下操作 -这样,每个图像最终都会出现在 PDF 的一页上。
Load each image in an off-screen
UIWebView
. Then do the following for each image-This way, each image will end up on one page of the PDF.