从命令行将 PDF 打印为图像?

发布于 2024-11-17 14:54:01 字数 1459 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

丘比特射中我 2024-11-24 14:54:01

请注意,Ghostscript 可以将 PDF 转换为图像,您可以从命令行使用它(对于脚本编写很有用)。

例如,在 unix 上要将 PDF 转换为 90 dpi 的 JPEG 页面,请使用:

gs -r90 -sDEVICE=jpeg -o out-%d.jpg in.pdf

将创建单独的页面,如 out-1.jpg、out-2.jpg 等。

Note that Ghostscript can convert PDF's to image and you can use this from command line (useful for scripting).

For instance, on unix to convert a PDF to JPEG pages at 90 dpi, use:

gs -r90 -sDEVICE=jpeg -o out-%d.jpg in.pdf

will create individual pages as out-1.jpg, out-2.jpg, etc.

以歌曲疗慰 2024-11-24 14:54:01

对您来说不幸的是,答案是“不!”。仅可通过 Acrobat Reader 中的 GUI 将 PDF 页面打印为图像。

要查看包含所有可用选项的列表,请运行此命令:

acroread -help

要查看所有可用选项的说明,请运行此命令:(

man acroread

我假设您在 Linux 或 Unix 上使用 acroread。因为在 Windows 上,您' d 的 CLI 选项甚至更少...并且一些不完整的文档是 此处。)

Unfortunately for you, the answer is "No!". Printing PDF pages as an image is only available through the GUI in Acrobat Reader.

To see a list with all available options, run this:

acroread -help

To see an explanation for all the available options, run this:

man acroread

(I assume you are using acroread on Linux or Unix. Because on Windows, you'd have even less CLI options for it... and some incomplete documentation of which is here.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文