ConverterOptions class #
Provides options that control how a presentation/slide is rendered.
The ConverterOptions type exposes the following members:
Constructors #
Constructor | Description |
---|---|
__init__ |
Properties #
Property | Description |
---|---|
slides_view_options |
Gets or sets the mode in which slides are placed on the page when converting a presentation. Read-write ConverterOptions.slides_view_options . |
default_regular_font |
Returns or sets font used in case source font is not found. Read-write str. |
Examples #
options = slidize.ImageConverterOptions()
options.default_regular_font = "Calibri"
slides_view_options = slidize.HandoutViewOptions()
slides_view_options.handout = slidize.HandoutViewType.HANDOUTS_4_HORIZONTAL
options.slides_view_options = slides_view_options
slidize.PresentationToPngConverter.process("pres.pptx", "pres.png", options)