Hi Team,
We are facing issue while we convert word document to pdf. When we convert the document , references are not retained in the resultant pdf document. Attaching the documents for reference and code used. If you see on page 4 , there is a reference created (25) which is clickable in word (input) document. But when we open pdf (output) document , text is retained but is not clickable.
Code :
com.aspose.words.PdfSaveOptions pdfSaveOptions = new com.aspose.words.PdfSaveOptions();
pdfSaveOptions.setUpdateFields(false);
pdfSaveOptions.setSaveFormat(SaveFormat.PDF);
document.save(faos, pdfSaveOptions);
Reference_test.zip (1.0 MB)
Thanks