write_as_svg method

write_as_svg

Saves the slide content as an SVG file.

def write_as_svg(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseTarget stream

Examples

The following code example demonstrates how to convert the first slide from a PowerPoint presentation into an SVG file.

write_as_svg

Saves the slide content as an SVG file.

def write_as_svg(self, stream, svg_options):
    ...
ParameterTypeDescription
streamio.RawIOBaseTarget stream
svg_optionsISVGOptionsSVG generation options

Examples

The following code example demonstrates how to convert the first slide from a PowerPoint presentation into an SVG file with options.

See Also