imagick 二进制计算 pdf 文件中的页数

发布于 2024-09-16 13:37:41 字数 95 浏览 5 评论 0原文

有人可以建议使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不忘初心 2024-09-23 13:37:41

请记住,ImageMagick 使用 Ghostscript 来读取 pdf 文件,因此这可能是一种非常低效的简单计算页数的方法。

我所做的是使用 pdftk 来爆页,然后计算输出文件的数量。但碰巧我也想处理输出文件。

您还可以使用 pdftk 的数据转储来计算页数。

该命令行在 *nix 上运行良好。

pdftk myfile.pdf dump_data | grep NumberOfPages | cut -d " " -f 2

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.

pdftk myfile.pdf dump_data | grep NumberOfPages | cut -d " " -f 2
野侃 2024-09-23 13:37:41

使用ImageMagick自带的标识:

$pages = exec("/usr/bin/identify -format %n <filename>");

Use identify that comes with ImageMagick:

$pages = exec("/usr/bin/identify -format %n <filename>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文