将多页 PDF 转换为单个图像

发布于 2024-07-16 05:32:43 字数 445 浏览 5 评论 0原文

我正在尝试使用 GhostScript 将 PDF 转换为单个图像。

仅转换第一页,而我的目的是生成一个非常高的 PNG/JPG 图像,并将所有页面连接在一起。

这些是我当前传递给 GhostScript DLL 的参数(通过 .NET 应用程序):

pdf2img \
  -dNOPAUSE \
  -dBATCH \
  -dSAFER \
  -sDEVICE=png256 \
  -dGraphicsAlphaBits=4 \
  -dTextAlphaBits=4 \
  -dDOINTERPOLATE \
  -dAlignToPixels=1 \
  -r300x300 \
  -sOutputFile=GLOSS.png \
   GLOSS.pdf

是否可以通过 GhostScript 将所有页面连接在一起? 或者我应该求助于外部方法?

I'm attempting to convert a PDF into a single image using GhostScript.

Only the first page is converted, while my intention is to generate a horrendously tall PNG/JPG image with all the pages concatenated together.

These are the parameters I'm currently passing to the GhostScript DLL (via a .NET application):

pdf2img \
  -dNOPAUSE \
  -dBATCH \
  -dSAFER \
  -sDEVICE=png256 \
  -dGraphicsAlphaBits=4 \
  -dTextAlphaBits=4 \
  -dDOINTERPOLATE \
  -dAlignToPixels=1 \
  -r300x300 \
  -sOutputFile=GLOSS.png \
   GLOSS.pdf

Is it possible to concatenate all the pages together via GhostScript? Or should I resort to an external method?

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

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

发布评论

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

评论(5

不必你懂 2024-07-23 05:32:43

您看过 ImageMagick 吗? 这个免费库可能有一个选项可以从 PDF 创建单个图像(它实际上使用 Ghostscript,但添加了许多图形编辑功能,例如合并图像)。

Did you have a look at ImageMagick? This free library might have an option to create a single image from a PDF (It actually uses Ghostscript but adds a lot of graphical editing capabilities such as merging images).

锦爱 2024-07-23 05:32:43

使用 GS 将多页 PDF 转换为图像(PNG、JPEG、TIFF 等)后,您需要进一步将输出图像合并为多页 TIFF 图像。

看一下 VietOCR.NET 的源代码,它具有该功能,但分两个单独的步骤完成。 您可以修改它以连续调用这两个函数。

After converting multi-page PDF to images (PNG, JPEG, TIFF, etc.) using GS, you'll need to take one step further to merge the output images into a multi-page TIFF image.

Take a look at the source code of VietOCR.NET, which has the functionality but does it in two separate steps. You can modify it to call the two functions back to back.

夜无邪 2024-07-23 05:32:43

您很可能需要使用 GS 渲染单个页面,然后使用某种脚本语言将它们组合成单个 PNG/JPG。

You will most likely need to render the single pages using GS and then combine them to a single PNG/JPG using some scripting language.

不甘平庸 2024-07-23 05:32:43

上查看此开源项目

您可以在代码项目http://www.codeproject.com/KB /cs/GhostScriptUseWithCSharp.aspx

展示如何调用 Ghostscript 以及如何传递参数

You can check this open source project on Code Project

http://www.codeproject.com/KB/cs/GhostScriptUseWithCSharp.aspx

That show how to call Ghostscript and how to pass the parameters

轮廓§ 2024-07-23 05:32:43

您可以查看PDF 转图像

You can look at PDF to Image

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