Aspose.words- Our images in word are getting cut off

We are having an issue with Aspose.words, Our images in word are getting cut off. see the examples.

Using the Word doc you will see the image covers the whole top then converting to PDF it cuts it off.

We are using Aspose.words 15.6

Hi Robert

Thanks for your inquiry.

While using the latest version of Aspose.Words i.e. 15.7.0, we managed to reproduce this issue on our end. We have logged this issue in our bug tracking system. The issue ID is WORDSNET-12300. Your thread has also been linked to this issue and you will be notified as soon as it is resolved. Sorry for the inconvenience.

Moreover, in this case, you should just call Document.UpdateTableLayout method before rendering to PDF format; only in rare cases where you confirmed that tables appear incorrect in the output document. I hope, calling this method will help to correct the output. Here is how you may use it:

Document doc = new Document("C:\Temp\COMMITTEE MEETING - 20 Aug 2015 - Agenda.docx");
doc.updateTableLayout();
doc.save("C:\Temp\out.pdf");

Best regards,

The issues you have found earlier (filed as WORDSNET-12300) have been fixed in this Aspose.Words for .NET 23.7 update also available on NuGet.