método to_tiff
Contenido
[
Ocultar
]to_tiff
Renderice toda la hoja de trabajo como imagen Tiff para transmitirla.
def to_tiff(self, stream):
...
Parámetro | Tipo | Descripción |
---|---|---|
stream | io.RawIOBase | el flujo de la imagen de salida |
to_tiff
Renderice toda la hoja de trabajo como imagen Tiff en un archivo.
def to_tiff(self, filename):
...
Parámetro | Tipo | Descripción |
---|---|---|
filename | str | el nombre de archivo de la imagen de salida |
Ejemplo
El siguiente código genera todas las páginas de la primera hoja en una imagen 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")
Ver también
- módulo
aspose.cells.rendering
- clase
SheetRender