Cell Font Quality Issue

Can you provide any solution to improve the Visibility of the tiff.
Because Without Zoom, The Content looks blurry.
Issue.png (82.6 KB)

Suggestion: Set Your Printing area on less column.

Required File: Cell Font Issue.zip (84.2 KB)

@hemalp,

I did test your scenario/case using your template file and following sample code:
e.g.
Sample code:

Workbook workbook = new Workbook("g:\\test2\\Book1.xlsx");
            
workbook.Worksheets[0].PageSetup.PrintGridlines = true;
workbook.Worksheets[0].PageSetup.PrintHeadings = true;
workbook.Worksheets[0].AutoFitColumns();

ImageOrPrintOptions tiffOptions = new ImageOrPrintOptions();
tiffOptions.HorizontalResolution = 300;
tiffOptions.VerticalResolution = 300;
tiffOptions.PrintingPage = PrintingPageType.IgnoreBlank;
tiffOptions.ImageType = ImageType.Tiff;
tiffOptions.TiffCompression = TiffCompression.CompressionCCITT4;
            
WorkbookRender workbookRender = new WorkbookRender(workbook, tiffOptions);
workbookRender.ToImage("g:\\test2\\out1.tiff");

The resultant TIFF is almost same as yours regarding quality.

I do not think for “CompressionCCITT4” compression, you can get better quality TIFF image than this. Anyways, could you please share your expected output TIFFs with best quality, we can check it further. Alternatively, you may change the compression type or image type.