How can detect PDF version by js or IAC?
PDF file has version 1.5,1.6,1.7
I had try get in Info object , but it not exist:
console.println( this.info.toSource());
How can detect PDF version by js or IAC?
Thank you.
PDF file has version 1.5,1.6,1.7
I had try get in Info object , but it not exist:
console.println( this.info.toSource());
How can detect PDF version by js or IAC?
Thank you.
The PDF version is not in the "info" object or the PDF metadata. I don't think it's accessible from the IAC either.
The only place you can find the PDF version is in the first 9 bytes of the PDF file. Fortunately there is an undocumented JS method that provides access to the binary file data.
var stmDoc = Collab.documentToStream(this);
var pdfVer = util.stringFromStream(stmDoc).substr(5,3);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.