Hi,
Thanks for your inquiry. I’m afraid the feature ( WORDSNET-6765 ), you have requested here, has now been postponed till a later date. We will inform you as soon as there are any further developments. Sorry for the inconvenience.
In the mean time, while you’re waiting for the fix, you can use Aspose.Pdf component to be able to perform this conversion. Please see the following code snippet:
// open document
Document pdfDocument = new Document("d:/pdftest/test2.pdf");
// create conversion log file
pdfDocument.Convert("D:/pdftest/ConversionLog.txt", PdfFormat.v_1_3, ConvertErrorAction.Delete);
// save the updated document
pdfDocument.Save("d:/pdftest/Converted_Document.pdf");