to_tiff method
to_tiff
Converts the input presentation to a set of TIFF format images.
If the output file name is given as “myPath/myFilename.tiff”,
the result will be saved as a set of “myPath/myFilename_N.tiff” files, where N is a slide number.
@staticmethod
def to_tiff(pres, output_file_name):
...
| Parameter | Type | Description |
|---|
| pres | Presentation | The input presentation. |
| output_file_name | str | The output file name. |
Exceptions
| Exception | Description |
|---|
| RuntimeError(Proxy error(ArgumentException)) | |
to_tiff
Converts the input presentation to TIFF format with custom options.
If the output file name is given as “myPath/myFilename.tiff” and multipage is false,
the result will be saved as a set of “myPath/myFilename_N.tiff” files, where N is a slide number.
Otherwise, if multipage is true, the result will be a multi-page “myPath/myFilename.tiff” document.
@staticmethod
def to_tiff(pres, output_file_name, options, multipage):
...
| Parameter | Type | Description |
|---|
| pres | Presentation | The input presentation. |
| output_file_name | str | The output file name. |
| options | ITiffOptions | The TIFF saving options. |
| multipage | bool | Specifies whether the generated TIFF document should be a multi-page. |
Exceptions
| Exception | Description |
|---|
| RuntimeError(Proxy error(ArgumentException)) | |
See Also