我正在使用PDF-T-Maker将word文件转换为pdf/a。我不得不走这条路来嵌入一些字体,而不是位图。Adobe reader上显示的纯文本文档带有蓝色横幅,指示PDF/A。但是,当我在word文件中包含目录时,蓝色横幅不显示。我使用Ghostscript 9.07作为蒸馏器。当我在不使用-nopause开关的情况下尝试gswin64将pdf转换为PDF/A时,我收到了"annotation set to non- tried“的警告,但即使将-sPDFAcompatibility开关设置为1,我也得不到符合pdf/a的文件。我读到PDFA_def.ps可能需要根据我的环境进行修改。想知道这是不是问题所在,或者是否有其他修复方法。我正在使用Win7。
非常感谢!
PDFA_def.ps
%!
% This is a sample prefix file for creating a PDF/A document.
% Feel free to modify entries marked with "Customize".
% This assumes an ICC profile to reside in the file (ISO Coated sb.icc),
% unless the user modifies the corresponding line below.
% Define entries in the document Info dictionary :
/ICCProfile (ISO Coated sb.icc) % Customize.
def
[ /Title (Title) % Customize.
/DOCINFO pdfmark
% Define an ICC profile :
[/_objdef {icc_PDFA} /type /stream /OBJ pdfmark
[{icc_PDFA} <</N systemdict /ProcessColorModel get /DeviceGray eq {1} {4} ifelse >> /PUT pdfmark
[{icc_PDFA} ICCProfile (r) file /PUT pdfmark
% Define the output intent dictionary :
[/_objdef {OutputIntent_PDFA} /type /dict /OBJ pdfmark
[{OutputIntent_PDFA} <<
/Type /OutputIntent % Must be so (the standard requires).
/S /GTS_PDFA1 % Must be so (the standard requires).
/DestOutputProfile {icc_PDFA} % Must be so (see above).
/OutputConditionIdentifier (CGATS TR001) % Customize
>> /PUT pdfmark
[{Catalog} <</OutputIntents [ {OutputIntent_PDFA} ]>> /PUT pdfmark发布于 2013-10-01 15:11:31
你可能已经发现了一个遗漏的案例,PDFACompatibility开关是在PDF/A输出之后很久才添加的,因为它是一个改进,你可能已经找到了一个避免它的代码路径。
我建议你打开一个bug报告,附加输入文件,命令行,defs文件和任何其他需要重现结果的文件。
https://stackoverflow.com/questions/19106409
复制相似问题