convert_to method

convert_to

Save converted document as file.

def convert_to(self, file_name):
    ...
Parameter Type Description
file_name str Converted document.

Returns: Options or handler setup interface to continue conversion building.

convert_to

Saves converted document as a stream.

def convert_to(self, converted_stream_provider):
    ...
Parameter Type Description
converted_stream_provider Func[SaveContext, io.RawIOBase] Converted document stream provider converted_stream_provider arg1arg1: The save context

Returns: Options or handler setup interface to continue conversion building

See Also