imagick 二进制计算 pdf 文件中的页数
有人可以建议使用 exec() 函数的 php 代码来执行 imagick 的二进制文件来计算 pdf 文件中的页面数。 任何建议都会很棒。谢谢!
问候 拉胡尔
Could someone suggest the php code using exec() function to execute a binary of imagick to count the pages in a pdf file.
Any suggestions would be great. Thanks!
Regards
Rahul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,ImageMagick 使用 Ghostscript 来读取 pdf 文件,因此这可能是一种非常低效的简单计算页数的方法。
我所做的是使用 pdftk 来爆页,然后计算输出文件的数量。但碰巧我也想处理输出文件。
您还可以使用 pdftk 的数据转储来计算页数。
该命令行在 *nix 上运行良好。
Please keep in mind that ImageMagick uses ghostscript to slurp pdf files, so this may be a grossly inefficient way to simply count pages.
What I do is use pdftk to burst the pages, then count the number of output files. But it happens that I also want to process the output files.
You can also use pdftk's data dump to count the pages.
This command line works nicely on *nix.
使用ImageMagick自带的标识:
Use identify that comes with ImageMagick: