to_image method
Contents
[
Hide
]to_image
Render whole workbook as Tiff Image to stream.
def to_image(self, stream):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | the stream of the output image |
to_image
Render whole workbook as Tiff Image to a file.
def to_image(self, filename):
...
Parameter | Type | Description |
---|---|---|
filename | str | the filename of the output image |
to_image
Render certain page to a file.
def to_image(self, page_index, file_name):
...
Parameter | Type | Description |
---|---|---|
page_index | int | indicate which page is to be converted |
file_name | str | filename of the output image |
to_image
Render certain page to a stream.
def to_image(self, page_index, stream):
...
Parameter | Type | Description |
---|---|---|
page_index | int | indicate which page is to be converted |
stream | io.RawIOBase | the stream of the output image |
See Also
- module
aspose.cells.rendering
- class
WorkbookRender