Footer Overlay when converting to PDF

Hello we have an issue when documents have a footer and a table, when they are converted to pdf the footer is applied over the top of the table.

We are using the latest .net Aspose.Words 19.5.0 here is our code:

using (FileStream inputStream = File.Open(“test.docx”, FileMode.Open, FileAccess.Read))
using (FileStream outputStream = File.Open(“test.pdf”, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.Delete | FileShare.Read))
{
var docToSave = new Aspose.Words.Document(inputStream);

        var saveOptions = new Aspose.Words.Saving.PdfSaveOptions()
        {
           SaveFormat = Aspose.Words.SaveFormat.Pdf,
           FontEmbeddingMode = Aspose.Words.Saving.PdfFontEmbeddingMode.EmbedNone,
           UseAntiAliasing = false
        };

        docToSave.Save(outputStream, saveOptions);
     }

here is our test files and outputfooteroveralign.zip (33.7 KB)

@karrimrabi

We have tested the scenario and have managed to reproduce the same issue at our side. For the sake of correction, we have logged this problem in our issue tracking system as WORDSNET-18568. You will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.