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