Hi,
The following issue occurs when using Aspose.Words 14.10.0.0 to convert a document that has a footer, to PDF. The footer is being rendered beneath the header and above the document body, in the converted PDF.
I’ve attached the original document and the converted PDF. This behaviour is visible on pages 2 to 9.
The code used to do this is very straightforward:
~
Document doc;
using (var inputStream = new MemoryStream(sourceData))
{
doc = new Document(inputStream);
inputStream.Close();
}
using (var outputStream = new MemoryStream())
{
doc.Save(outputStream, SaveFormat.Pdf);
return outputStream.ToArray();
}
~
Could you please have a look at this and let me know why this is the case?
Thanks.