admin管理员组文章数量:1394185
I have a PDF/UA-2 file, but when I validate it on /, it reports the following error:
All destinations whose target lies within the current document shall be structure destinations Failed 1 occurrences PDDestination isStructDestination == true root/document[0]/Outlines[0](outline 7 0)/Dest[0]
I’ve tried using the Datalogics PDF .NET Toolkit to fix this issue. If I remove all bookmark destinations (Dest) with the following code:
PDFDict bookmarkDict = bookmark.PDFDict;
bookmarkDict.Remove("Dest");
the file passes the veraPDF validation. However, this breaks the bookmark structure, making it unusable.
My questions are:
How can I modify my code to resolve the PDF/UA-2 Clause 8.8 error using the Datalogics PDF .NET Toolkit without breaking the bookmark functionality?
Could someone provide detailed insights into the standard structure of a PDF/UA-2 file, particularly regarding StructTreeRoot and how bookmarks should be linked to it? Additionally, if anyone has a sample PDF/UA-2 file with bookmarks, I’d greatly appreciate it if you could share it for reference.
本文标签:
版权声明:本文标题:validation - How to Fix "All destinations shall be structure destinations" Error in PDFUA-2 Using Datalogics P 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744674712a2619039.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论