转换后的 tiff 文件中缺少 Pdf 文本框标记 (GhostScript)

发布于 2024-11-28 04:55:24 字数 723 浏览 1 评论 0原文

我正在尝试将 pdf 转换为 tiff。您可以在以下链接中查看 pdf: 原始 pdf

http://bugs.ghostscript.com/attachment.cgi?id=7736

我目前有 Ghostscript 9.02安装在我的系统中。

我正在使用以下命令将 pdf 文件转换为 tiff。

gswin32 -dSAFER -dNOPAUSE -dBATCH -q -sPAPERSIZE=a4 -r300 -sDEVICE=tiffg4
-dPDFFitPage -dGraphicalAlphaBits=1 -dTextAlphaBits=1
-sOutputFile="d:/temp/test/ConvertedPage%06d.tiff"
"d:/temp/test/TextBoxMarkupfile.pdf"

第二页有 3 个标记的文本框。转换后 tiff 文件中缺少这些文本值。

Ghostscript 中是否有任何选项可以包含这些文本值 在转换后的图像中?

如果有任何可用的解决方法,请建议我。

谢谢, 拉杰什

I am trying to convert pdf to tiff. You can view the pdf in the below link:
Original pdf

http://bugs.ghostscript.com/attachment.cgi?id=7736

I currently having Ghostscript 9.02 installed in my system.

I am using the below command to convert the pdf files to tiff.

gswin32 -dSAFER -dNOPAUSE -dBATCH -q -sPAPERSIZE=a4 -r300 -sDEVICE=tiffg4
-dPDFFitPage -dGraphicalAlphaBits=1 -dTextAlphaBits=1
-sOutputFile="d:/temp/test/ConvertedPage%06d.tiff"
"d:/temp/test/TextBoxMarkupfile.pdf"

There are 3 marked up text box available in the second page. After conversion
those text values are missing in the tiff file.

Is there any options available in the ghostscript to include those text values
in the converted image?

If any workarounds available please suggest me.

Thanks,
Rajesh

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

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

发布评论

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

评论(1

半衾梦 2024-12-05 04:55:24

推荐类似问题+答案pdftk。

我使用了 [pdf] >> 的两步过程pdftk>> ImageMagick:

pdftk original_form.pdf output flattened_form.pdf flatten

convert -define quantum:polarity=min-is-white -endian MSB 
        -units PixelsPerInch -density 204x196 -monochrome 
        -compress Fax -sample 1728 
        "flattened_form.pdf" "final.tif"

由于ImageMagick使用GhostScript进行pdf转换,所以应该可以直接使用GS,但我已经得到了ImageMagick 提供更好的质量;也许我不只是使用正确的 GS 设置。

A similar question+answer recommended pdftk.

I used a two-step process of [pdf] >> pdftk >> ImageMagick:

pdftk original_form.pdf output flattened_form.pdf flatten

convert -define quantum:polarity=min-is-white -endian MSB 
        -units PixelsPerInch -density 204x196 -monochrome 
        -compress Fax -sample 1728 
        "flattened_form.pdf" "final.tif"

Since ImageMagick uses GhostScript for pdf conversion it should be possible to use GS directly, but I've gotten better quality from ImageMagick; perhaps I'm not just using the right GS settings.

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