将多页 PDF 转换为单个图像
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您看过 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).
使用 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.
您很可能需要使用 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.
上查看此开源项目
您可以在代码项目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
您可以查看PDF 转图像
You can look at PDF to Image