Word Save to Tiff Result Not Good

123654.jpeg (52.0 KB)
123654.png (33.1 KB)
Hi Support,

I am using latest aspose.word dll in .Net and I am saving a word docx file into (tiff, png, jpeg) but in all formats, the images are not very clear; they are blurred.

I want to know is it happening because of trial version? Is there any way I can improve the resolution of the image through aspose.word? For reference I have attached the resultant images files and sharing the link of source file. Source123654.jpeg (52.0 KB)
123654.png (33.1 KB)

@usameh

In your case, we suggest you please use ImageSaveOptions.Resolution property to set both horizontal and vertical resolution for the generated images, in dots per inch. Please check the following code example. Hope this helps you.

Document doc = new Document(MyDir + "in.docx");
ImageSaveOptions imgOptions = new ImageSaveOptions(SaveFormat.Tiff);
imgOptions.Resolution = 300;
doc.Save("out.tiff", imgOptions);

Unfortunately, we are unable to download your DOCX file. If you still face problem, please ZIP and attach your input Word document here for testing. We will investigate the issue and provide you more information on it.