如何在 IOS 中以编程方式将 PDF 转换为 PNG
我正在开发一个 iPhone 应用程序来显示大图像和 PDF。 PDF 和图像可通过网络下载或通过 iTunes 导入。
我使用的是平铺方法,在下载/导入后,以编程方式生成一组 PNG/JPEG 平铺并将其保存到 iPhone。
查看之前的问题,我找到了一种对大图像进行平铺的方法,但它不适用于 PDF 文件?
我想知道是否可以在运行平铺例程之前将 PDF 文件转换为 PNG/JPEG,或者是否有更好的方法来执行此操作。
I am developing an iPhone application to display large image(s) and PDF(s). The PDF and images are available for web downloading or through iTunes importing.
I am using a tiling approach where after the download/import a set of PNG/JPEG tiles are programmatically generated and saved to the iPhone.
Looking previous questions I found a way to do tiling for large images, but it does not work with PDF files?
I wonder if it is possible to convert the PDF file into a PNG/JPEG before running the tiling routine, or if there are better approaches to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建图像对象,为图像创建图形上下文,在图像的图形上下文中渲染 PDF 页面,然后保存图像。
You can create an image object, create a graphic context for the image, render the PDF page in the image's graphic context and then save the image.