add_from_pdf method

add_from_pdf

Creates slides from the PDF document and adds them to the end of the collection.

Returns

Added slides

def add_from_pdf(self, path):
    ...
ParameterTypeDescription
pathstrA path to the PDF document

add_from_pdf

Creates slides from the PDF document and adds them to the end of the collection.

Returns

Added slides

def add_from_pdf(self, pdf_stream):
    ...
ParameterTypeDescription
pdf_streamio.RawIOBaseA stream which will be used as a source of the PDF document

add_from_pdf

Creates slides from the PDF document and adds them to the end of the collection considering the pdf import options.

Returns

Added slides

def add_from_pdf(self, path, pdf_import_options):
    ...
ParameterTypeDescription
pathstrA path to the PDF document
pdf_import_optionsPdfImportOptionsOptions for pdf import

add_from_pdf

Creates slides from the PDF document and adds them to the end of the collection.

Returns

Added slides

def add_from_pdf(self, pdf_stream, pdf_import_options):
    ...
ParameterTypeDescription
pdf_streamio.RawIOBaseA stream which will be used as a source of the PDF document
pdf_import_optionsPdfImportOptionsOptions for pdf import

See Also