Aspose Cell: Save as TIFF

Hi Team,


We are using Aspose Cell Save as excel sheet as TIFF format options.

ex:
excelDocument.Save(fs, Aspose.Cells.SaveFormat.TIFF);

It saves all sheets in TIFF file series of images.

Is there any way to save active sheet / specified sheet as TIFF?

There could be 3 possibilities :
1) Save active sheet as TIFF.
2) Select a sheet with name and save as TIFF
3) Select named range as TIFF.

Right now for us saving active sheet or selected sheet as TIFF is priority item.

Please look into this. I will log same in priority support forum.

Thanks,
Nakul

Hi,


Sure, you may convert your desired worksheet to TIFF image format. You may use SheetRender APIs, see the document for reference:
http://www.aspose.com/docs/display/cellsnet/Converting+Worksheet+to+Image+using+ImageOrPrint+Options

To get the active worksheet index (zero-based) in the workbook, please use WorksheetCollection.ActiveSheetIndex property, see the sample line of code: e.g
int index = workbook.Worksheets.ActiveSheetIndex;

Thank you.