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):
    ...
ParameterTypeDescription
presPresentationThe input presentation.
output_file_namestrThe output file name.

Exceptions

ExceptionDescription
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):
    ...
ParameterTypeDescription
presPresentationThe input presentation.
output_file_namestrThe output file name.
optionsITiffOptionsThe TIFF saving options.
multipageboolSpecifies whether the generated TIFF document should be a multi-page.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))

See Also