Word images conversion to PDF

We have tried to convert the word document with some images in the table. The pdf came out well , except some of the images placed inside of the table, they got misplaced to the top of the page. I’m attaching the word document and the resulted pdf as well.
Here is the code we have used:

Aspose.Words.Document doc = new Aspose.Words.Document(stream);
Aspose.Words.Saving.PdfSaveOptions options = new Aspose.Words.Saving.PdfSaveOptions();
options.PreserveFormFields = true;
doc.Save(filename, options);

Thanks,
Dan

Hi Dan,

I am unable to reproduces the same problem with latest version of Aspose.Words. It is strongly recommended to use latest version of Aspose.Words 10.5.0
Review the attached output file for your reference.

Regards,
Imran Rafique

Thank you very much. How do I get the latest version? If I get a trial version, will it work with the exisiting license file?

Hi,

You can get the latest version of Aspose.Words assembly from following link.
Aspose.Words for .NET 10.5.0 (DLLs only)

This ZIP file contains only the Aspose.Words for.NET assemblies.

Regards,
Imran Rafique

Thanks. It worked.