Metodo to_tiff
Contenuti
[
Nascondere
]to_tiff
Visualizza l’intero foglio di lavoro come immagine Tiff per lo streaming.
def to_tiff(self, stream):
...
Parametro | Tipo | Descrizione |
---|---|---|
stream | io.RawIOBase | il flusso dell’immagine di output |
to_tiff
Visualizza l’intero foglio di lavoro come immagine Tiff in un file.
def to_tiff(self, filename):
...
Parametro | Tipo | Descrizione |
---|---|---|
filename | str | il nome file dell’immagine di output |
Esempio
Il codice seguente restituisce tutte le pagine del primo foglio all’immagine 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")
Guarda anche
- modulo
aspose.cells.rendering
- classe
SheetRender