Hi,
We have discovered a bug in Aspose.Words.
When we save a .docx document as .pdf Table Width in Footer is changing and the PDF document looks differently than Word one.
See the sample program and the document used to replicate the bug.Aspose.zip (20.2 KB)
var doc = new Document(@"Aspose.docx");
doc.UpdateTableLayout();
doc.UpdatePageLayout();
var pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.SaveFormat = SaveFormat.Pdf;
doc.Save(@"Aspose.pdf", pdfSaveOptions);