Slip error at the bottom of the page

Hi,
When you want to view the document after it is loaded into the system, there is slippage at the bottom of the page.
I attached the original file and corrupted file. We are using Aspose.Word 19.6 version. Thanks.
YG8960.zip (373.5 KB)

@srmbimser

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-18780. You will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

Hi,
Is there an improvement on this issue?

@srmbimser

We regret to share with you that the implementation of issue (WORDSNET-19173) has been postponed (no estimate is available at the moment). We will inform you via this thread as soon as this issue is resolved.

We apologize for your inconvenience.

Hi, Is there an improvement on WORDSNET-18780 issue?

@srmbimser

Unfortunately, there is no update available on this issue at the moment. We apologize for your inconvenience.

Is there any method you could suggest for this error other than waiting for improvement?

@srmbimser

Unfortunately, there is no workaround available for this issue. However, you can set the text wrapping of table to None for better output but the table position will be incorrect.

Please try the following code example. Hope this helps you.

Document document = new Document(MyDir + "OriginalDocument.docx");
foreach (Table table in document.GetChildNodes(NodeType.Table, true))
{
    table.TextWrapping = TextWrapping.None;
}
document.Save(MyDir + "output.pdf");

The issues you have found earlier (filed as WORDSNET-18780) have been fixed in this Aspose.Words for .NET 21.6 update and this Aspose.Words for Java 21.6 update.