Ghostcript 将图像/表单与文本文件合并

发布于 2024-11-09 13:21:03 字数 305 浏览 0 评论 0原文

我有一个运行 SCO Unix 5.0.7 的依赖于应用程序的旧环境,可以在其上安装 Ghostscrip。

使用我存储为图像的扫描表单(线条、方框、徽标等)(如果有帮助,可以将其存储为 PDF),我需要能够(1)在“顶部”放置一个 unix 文本文件”该表单,并且 (2) 将合并结果输出为 PDF。

我对此完全是个菜鸟,一直在搜索和阅读直到感到困惑。我确信我已经看到了解决方案的部分内容,但无法将(可能)非常简单的点连接起来。

谁能用流程的 1、2、3 以及适当的 Ghostscript 语法为我指出正确的方向?

谢谢, 大卫

I have an app dependent legacy environment running SCO Unix 5.0.7 that I can install Ghostscrip on.

Using a scanned form (lines, boxes, logo, etc) that I've stored as an image (could store it as PDF instead if that helps), I need to be able to (1) lay a unix text file "on top of" that form and (2) output the merged results as a PDF.

I'm a total noob with this and have searched and read till confusion. I'm sure I've seen parts of the solution, but can't connect the dots for what's (probably) pretty simple.

Can anyone please point me in the right direction with a 1, 2, 3 of the flow and maybe the apropriate ghostscript syntax?

Thanks,
David

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

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

发布评论

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

评论(1

乖乖哒 2024-11-16 13:21:03
  1. 不要为此使用 Ghostscript。使用 pdftk 代替。 (pdftk 是开源的,应该可以在 SCO [bah!] Unix 上编译和安装它)。
  2. 将扫描的表单存储为 PDF,而不是图像。我们称之为masterform.pdf
  3. 将您的 Unix 文本文件转换为 PDF。确保它有透明的背景。如果您需要这方面的帮助(尤其是关于正确的字符间距以使文本与表单字段匹配:只需在此网站上提出另一个问题...)。我们将其称为formdata.pdf
  4. 现在运行此 pdftk 命令(我假设是 1 页 PDF 文件):

    <前><代码>pdftk \
    masterform.pdf \
    印章表格数据.pdf \
    输出结果.pdf

  1. Don't use Ghostscript for this. Use pdftk instead. (pdftk is Open Source and it should be possible to compile + install it on SCO [bah!] Unix).
  2. Store your scanned form as PDF, not as an image. Let's call this the masterform.pdf.
  3. Convert your unix text file to PDF. Make sure it has a transparent background. If you need help with that (esp. as far as hitting the correct spacing of characters is concerned so that the text matches the form fields: just ask another question on this website...). Let's call this the formdata.pdf.
  4. Now run this pdftk command (I'm assuming 1-page PDF files):

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