Hi, I am having issue while converting the Word doc to PDF doc. The doc has page break and also references linked. I am using following code
doc = New Aspose.Words.Document(fileName)
inFile = fileName + ".pdf"
doc.Save(inFile, Aspose.Words.SaveFormat.Pdf)
The converted PDF document is missing the references at the bottom. I have attached the word doc and pdf doc too. I have already tried using memorystream but it didnt help. Can you pls test the file and let me know what addition implementation I need to do.
Thanks in advance
Hello
Thank you for reporting this problem to us. I managed to reproduce the problem on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is resolved.
Best regards,
Hi Andrey,
Is this issue resolved by Aspose? We have clients who use page breaks in their documents frequently. I found that document object created for such files does not have pagecount information. Also not able to save the document as pdf. debug info is attached.
Thanks for the help.
Hi
Thanks for your request. I do not think that page breaks causes the problem. Probably the problem occurs because there is something wrong with this particular document you are getting exception with. So, please attach this document here for testing. We will check it and provide you more information.
Best regards,
Hi
I have attached bunch of docs here which can not be converted to pdfs. Can you pls let me know what is the issue with these documents?
Thanks.
Hi
Thank you for additional information. I managed to reproduce the problem on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is resolved.
Best regards,
Thanks Alexey. Can you please tell me what component in the document is causing the problem so that we can remove that part and use the documents.
Also, is there any incident created for this issue and your plans to fix the issue?
Hi
Thanks for your request. Your documents contain a lot of endnotes. It seems some of endnotes cause this problem. If remove all endnotes from your documents, the documents can be rendered without any issues:
Document doc = new Document(@"Test001\104070.doc");
doc.GetChildNodes(NodeType.Footnote, true).Clear();
doc.Save(@"Test001\out.pdf");
best regards,
The issues you have found earlier (filed as WORDSNET-5472) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
The issues you have found earlier (filed as WORDSNET-4747) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.