merge method

merge

Merging several XPS files to one XPS document.

def merge(self, files_for_merge, out_xps_file_path):
    ...
ParameterTypeDescription
files_for_mergelistXPS files for merging with this document.
out_xps_file_pathstrAn output Xps file path.

merge

Merging several XPS files to one XPS document.

def merge(self, files_for_merge, out_stream):
    ...
ParameterTypeDescription
files_for_mergelistXPS files for merging with this document.
out_streamio.RawIOBaseThe output stream where to save merged XPS documents.

merge

Merging XPS documents to PDF using the Device instance.

def merge(self, files_for_merge, device, options):
    ...
ParameterTypeDescription
files_for_mergelistXPS files for merging with this document to an output device.
deviceDeviceThe Device instance.
optionsSaveOptionsDocument saving options.

See Also