file.zip (177.5 KB)
hello,
why there is a layout difference when i convert a doc file to pdf format. I am using version 20.8.0 of Aspose.Words (.NET).
I do a simple conversion without options, I just hide the comments.
Thank you.
Document SignedDoc = new Document(Path.Combine(folder, fileName));
SignedDoc.LayoutOptions.ShowComments = false;
var options = new Aspose.Words.Saving.PdfSaveOptions {
SaveFormat = Aspose.Words.SaveFormat.Pdf
};
SignedDoc.Save(Path.Combine(folderDestination, fileNamePDF), options);