Why is one of these two itext 7 signed and validated document is not valid with Adobe DC reader?

This is not an Adobe bug, it’s a feature. (And an iText bug) When Adobe performs the cryptographic validation, it will also perform additional checks to see if a signature was attacked or not. It analyses several suspects and if that analysis turns out negative, Adobe will show you an error message. This is Adobe … Read more

Is it possible to execute JSX scripts from outside ExtendScript?

Are you on a Mac? If so, you can use AppleScript with the osascript tool to execute your JavaScript. Here are some examples: Running JSX and Returning a Value Save this as ~/temp/foo.scpt: tell application “Adobe Illustrator” — ‘do javascript’ runs any arbitrary JS. — We’re using the #include feature to run another — file. … Read more

Security Method is No Security but Page Extraction and Document Assembly is not Allowed

In General Please be aware that the “Document Restrictions Summary” summarizes restrictions that arise from a number of factors, the following ones coming to my mind: Restrictions applied in the course of encryption When encrypting a PDF, permissions for a number of features can be restricted for a regular user. Thus, if the PDF is … Read more

IText merge documents with acrofields

Depending on what you want exactly, different scenarios are possible, but in any case: you are doing it wrong. You should use either PdfCopy or PdfSmartCopy to merge documents. The different scenarios are explained in the following video tutorial. You can find most of the examples in the iText sandbox. Merging different forms (having different … Read more