Compression is not apply on tiff

tiff Compression is not applied on tiff, Please see Attached Issue.PNG

Sample code

Workbook book = new Workbook(@“D:\Book1.xlsx”);
Worksheet sheet = book.Worksheets[0];
Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.TiffCompression = Aspose.Cells.Rendering.TiffCompression.CompressionCCITT4;
options.HorizontalResolution = 300;
options.VerticalResolution = 300;
SheetRender sr = new SheetRender(sheet, options);
int pageIndex = 0;
sr.ToImage(pageIndex, @“D:\EmbededExtractorOutput\New folder\Output” + (pageIndex + 1) + “.tiff”);

Excel Compression not apply.zip (27.2 KB)

@hemalp
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CELLSNET-53150

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@hemalp

Please set ImageType option to Tiff:

options.ImageType = ImageType.Tiff;

Thanks,
It working.

@hemalp,
You are welcome.