Convert class

Convert class

Represents a group of methods intended to convert Presentation.

The Convert type exposes the following members:

Methods

MethodDescription
to_pdf(pres_path, out_path)Converts Presentation to PDF.
to_pdf(pres_path, out_path, options)Converts Presentation to PDF.
to_pdf(pres, out_path)Converts Presentation to PDF.
to_pdf(pres, out_path, options)Converts Presentation to PDF.
to_svg(pres_path)Converts Presentation to SVG.
to_svg(pres, options)Converts Presentation to SVG.
to_jpeg(pres, output_file_name)Converts the input presentation to a set of JPEG format images.
If the output file name is given as “myPath/myFilename.jpeg”,
the result will be saved as a set of “myPath/myFilename_N.jpeg” files, where N is a slide number.
to_jpeg(pres, output_file_name, image_size)Converts the input presentation to a set of JPEG format images.
If the output file name is given as “myPath/myFilename.jpeg”,
the result will be saved as a set of “myPath/myFilename_N.jpeg” files, where N is a slide number.
to_jpeg(pres, output_file_name, scale, options)Converts the input presentation to a set of JPEG format images.
If the output file name is given as “myPath/myFilename.jpeg”,
the result will be saved as a set of “myPath/myFilename_N.jpeg” files, where N is a slide number.
to_png(pres, output_file_name)Converts the input presentation to a set of PNG format images.
If the output file name is given as “myPath/myFilename.png”,
the result will be saved as a set of “myPath/myFilename_N.png” files, where N is a slide number.
to_png(pres, output_file_name, image_size)Converts the input presentation to a set of PNG format images.
If the output file name is given as “myPath/myFilename.png”,
the result will be saved as a set of “myPath/myFilename_N.png” files, where N is a slide number.
to_png(pres, output_file_name, scale, options)Converts the input presentation to a set of PNG format images.
If the output file name is given as “myPath/myFilename.png”,
the result will be saved as a set of “myPath/myFilename_N.png” files, where N is a slide number.
to_tiff(pres, output_file_name)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.
to_tiff(pres, output_file_name, options, multipage)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.
auto_by_extension(pres_path, out_path)Converts Presentation using the passed output path extension to determine the required export format.

See Also