Welcome to the ASP.NET Web Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Web Forms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hi

I've found a bug.

Steps to reproduce:

Create a word documents. Add a TOC. Add some footnotes. Update the TOC, and then convert the document to a pdf.

The problem: in the pdf all footnotes are messed up, or even gone.

Here a snippet of code to test it:

            WordDocument docx = new WordDocument();

            docx.Open("test.docx");

            docx.UpdateTableOfContents();

            docx.Save("testres.docx");


            DocToPDFConverter converter = new DocToPDFConverter();

            PdfDocument pdfDocument = converter.ConvertToPDF(docx);

            pdfDocument.PageSettings.Size = PdfPageSize.A4;
            pdfDocument.Save("Test.pdf");


testres.docx is fine. Even if I manually convert it to pdf the resulting pdf is fine. But test.pdf usually misses all the notes.

I've updated to the latest version (20.4.0.38) but this problem is still there. Tried with documents created with different word versions (2010 and 2016) but results it's always the same.