1

我正在尝试从一批扫描的文档页面中使用 Ghostscript 9.18 生成 PDF/A-1b 文档。我想在第一页用一层文档内部链接覆盖扫描的目录。但是 Ghostscript 返回一个错误:

GPL Ghostscript 9.18: Annotation set to non-printing,
not permitted in PDF/A, annotation will not be present in output file

在命令行中,我使用:

gs \
-sDEVICE=pdfwrite \
-dBATCH=true \
-dNOPAUSE=true \
-sPAPERSIZE=a4 \
-dSAFER=true \
-sColorConversionStrategy=UseDeviceIndependentColor \
-sOutputFile=out.pdf \
-dEmbedAllFonts=true \
-dPrinted=true \
-dPDFA=true \
-dPDFACompatibilityPolicy=1 \
-sPDFSETTINGS=screen \
-f raw.pdf \
-f meta.ps

每个链接的定义如下:

[ /Rect [ 10 10 100 100 ] /ScrPg 1 /Page 7 /Subtype /Link /ANN pdfmark

我试图在没有任何成功的情况下强制使用/F 3/F 4PDF 标志进行注释和 gs 级别的打印。-dPrinted=true

是否有其他方法可以在 PDF/A 文件中生成内部链接?我是否误解了 PDF/A 标准?

4

1 回答 1

1

无需使您的链接注释不打印。如果您不希望它们具有任何视觉外观,只需给它们一个不绘制任何内容的外观(即空外观流)。

PDF/A-1 标准要求所有可见的注释(在屏幕上)也设置为打印(以确保页面的外观在屏幕上显示和打印输出之间看起来没有区别)。

不幸的是,我无法帮助如何在 GhostScript 中或与 GhostScript 一起使用这些信息。

于 2015-12-12T23:46:04.263 回答