Ghostcript 将图像/表单与文本文件合并
我有一个运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在运行此
pdftk
命令(我假设是 1 页 PDF 文件):<前><代码>pdftk \
masterform.pdf \
印章表格数据.pdf \
输出结果.pdf
pdftk
instead. (pdftk is Open Source and it should be possible to compile + install it on SCO [bah!] Unix).Now run this
pdftk
command (I'm assuming 1-page PDF files):