to_tiff方法
to_tiff
将整个工作表渲染为 Tiff 图像以进行流式传输。
def to_tiff(self, stream):
...
范围 | 类型 | 描述 |
---|---|---|
stream | io.RawIOBase | 输出图像的流 |
to_tiff
将整个工作表作为 Tiff 图像渲染到文件中。
def to_tiff(self, filename):
...
范围 | 类型 | 描述 |
---|---|---|
filename | str | 输出图像的文件名 |
例子
以下代码将第一张纸的所有页面输出为 Tiff 图像。
from aspose.cells import SaveFormat, Workbook
from aspose.cells.rendering import ImageOrPrintOptions, SheetRender
# load the source file with images.
wb = Workbook("Book1.xlsx")
imgOpt = ImageOrPrintOptions()
# set output image type.
imgOpt.save_format = SaveFormat.TIFF
# render the first sheet.
sr = SheetRender(wb.worksheets[0], imgOpt)
# output all the pages of the sheet to Tiff image.
sr.to_tiff("output.tiff")