When converting a Word document that has footer with images and text to PDF, the document does not get rendered correctly. First few lines of the second page gets rendered on the first page. Below is the sample code used to save word document as PDF.
Document wordDoc = new Document();
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.SaveFormat = SaveFormat.Pdf;
saveOptions.HeaderFooterBookmarksExportMode = HeaderFooterBookmarksExportMode.All;
saveOptions.DownsampleOptions.DownsampleImages = false;
wordDoc.Save(textBoxPDFFile.Text, saveOptions);
Input Word file
AsposeWordTest.docx (197.2 KB)
Output PDF file
AsposeWordToPDFOutput.pdf (149.7 KB)