Text of Image is not Clear after Zoom Out in MS Paint | MSG to TIFF Conversion using .NET

Hi Aspose Team,

i) I have converted MSG to tiff file.
ii) After converted TIFF file i have opened in paint and i zoom out the Image but the thing is image clarity not good and not clear.could you please help me to resolve this issue.
I have attached screen shots for your reference. Font_issues.JPG (67.2 KB)

Thank you.

@Vicky2001

Could you please ZIP and attach the MSG and MHTML files here for testing? We will investigate the issue and provide you more information on it.

@tahir.manzoor

I have attached sample input MSG file and Converted TIFF output file for your reference could you please review and Help me.

i) when i open Converted TIFF file in paint and i Zoom out the image the TIFF Image and font was not clear.MSG and Converted_OutFile.zip (55.1 KB)
MSG and Converted_OutFile.zip (55.1 KB)

Thank you

@Vicky2001

Please use ImageSaveOptions.Resolution property as shown below to avoid the shared issue. Hope this helps you.

var message = Aspose.Email.MailMessage.Load(MyDir + "Sample_File.msg");
message.Save(MyDir + "output.mhtml", Aspose.Email.SaveOptions.DefaultMhtml);

ImageSaveOptions options = new ImageSaveOptions(SaveFormat.Tiff);
options.Resolution = 300;
var document = new Document(MyDir + "output.mhtml");
document.Save(MyDir + "output.tiff", options);

@tahir.manzoor

Sure It is working thank you