如何在 GhostScript 中禁用表单字段的渲染
我正在使用 GhostScript 将 PDF 文件渲染为 PNG 图像。但是,我发现某些 PDF 的表单字段包含我不希望出现在输出图像中的数据(在本例中为今天的日期)。是否可以在 GhostScript 中禁用字段值的渲染?
I am using GhostScript to render PDF files to PNG images. However, I have discovered that some PDF's have form fields that contain data (in this case todays date) that I would not like to be present in the output image. Is it possible to disable rendering of field values in GhostScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信默认情况下 Ghostscript 不会渲染 PDF 表单字段,请参阅:
http://ghostscript.com/doc/current/Use.htm#PDF_switches
您可能需要设置开关
-dShowAcroForm=false
来确定。如果您引用注释(默认情况下显示),您可能还希望设置开关
-dShowAnnots=false
。I believe that by default Ghostscript won't render PDF form fields, see:
http://ghostscript.com/doc/current/Use.htm#PDF_switches
You may want to set the switch
-dShowAcroForm=false
to be sure.If you're referring to annotations (which are shown by default), you may wish to also set the switch
-dShowAnnots=false
.