我正在使用 GhostScript 将 PDF 文件呈现为 PNG 图像。但是,我发现某些 PDF 的表单字段包含我不希望出现在输出图像中的数据(在本例中为今天的日期)。是否可以在 GhostScript 中禁用字段值的呈现?
问问题
1877 次
1 回答
2
我相信默认情况下 Ghostscript 不会呈现 PDF 表单字段,请参阅: http: //ghostscript.com/doc/current/Use.htm#PDF_switches
-dShowAcroForm
Show annotations referred from the Interactive Form Dictionary (AcroForm dictionary).
By default, AcroForm is not enumerated because Adobe Acrobat doesn't do this. This
option may be useful for debugging or recovery of incorrect PDF files that don't
associate all annotations with the page objects.
您可能需要确定开关-dShowAcroForm=false
。
如果您指的是注释(默认显示),您可能还希望设置 switch -dShowAnnots=false
。
于 2012-02-01T00:01:28.797 回答