Hi, Leonard!
Thanks for your hints.
Intarsys really had a problem with embedded font recognition. It will be fixed 
in the next version of their online validation tool this week.

BTW: The minimal requirements for PDF/A-1a concerning MarkInfo and 
StructTreeRoot entries can be done with the following iText snippet:
                  // Structure Tree Root
                  PdfDictionary structureTreeRoot = new PdfDictionary();
                  structureTreeRoot.put(PdfName.TYPE, PdfName.STRUCTTREEROOT);
                  pdfWriter.getExtraCatalog().put(PdfName.STRUCTTREEROOT, 
structureTreeRoot);
                  // MarkInfo
                  PdfDictionary markInfo = new PdfDictionary();
                  markInfo.put(PdfName.MARKED, new PdfBoolean(true));
                  pdfWriter.getExtraCatalog().put(PdfName.MARKINFO, markInfo);

But this is just to be conform to the spec, it doesn't make sense to have an 
empty StructTreeRoot. It should be filled with "useful" information.
Elmar


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php

Reply via email to