Hi,
I am using PdfFileInfo to update document information; source code is as follows:
PdfFileInfo fileInfo = new PdfFileInfo(pdfFile.getAbsolutePath());
fileInfo.setCreationDate(value);
fileInfo.setAuthor(value);
fileInfo.setTitle(value);
fileInfo.setSubject(value);
fileInfo.setKeywords(value);
fileInfo.setCreator(value);
fileInfo.setModDate(value);
fileInfo.setCreationDate(value);
fileInfo.saveNewInfo(tmpPDF.getAbsolutePath());
where "value" of course is always filled with different content.
After this, most of the links in the document are defective and a click on them does not have any effect anymore.
What causes this?
Regards,
Mathias