| Hi 
 No, but ImageEn's native PDF support uses the widely supported 1.4 format (as with PDF/A-1) and does not use any font or object linking (as with all PDF/A types).
 
 You can convert the PDF file to PDF/A using a command-line tool like GhostScript:
 
 gs -dPDFA=2 -dBATCH -dNOPAUSE -dNOOUTERSAVE -sProcessColorModel=DeviceCMYK \
 -sDEVICE=pdfwrite -sOutputFile=output_PDFA.pdf PDFA_def.ps input.pdf
 
 
 Note: PDFA_def.ps is a configuration file that defines the output intent (ICC color profile, metadata, etc.). You can find example definition files in the Ghostscript distribution under /lib.
 
 
 
 
 Nigel
 Xequte Software
 www.xequte.com
 nigel@xequte.com
 
 |