merge method
Contents
[
Hide
]merge
Merging several XPS files to one XPS document.
def merge(self, files_for_merge, out_xps_file_path):
...
| Parameter | Type | Description |
|---|---|---|
| files_for_merge | list | XPS files for merging with this document. |
| out_xps_file_path | str | An output Xps file path. |
merge
Merging several XPS files to one XPS document.
def merge(self, files_for_merge, out_stream):
...
| Parameter | Type | Description |
|---|---|---|
| files_for_merge | list | XPS files for merging with this document. |
| out_stream | io.RawIOBase | The 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):
...
| Parameter | Type | Description |
|---|---|---|
| files_for_merge | list | XPS files for merging with this document to an output device. |
| device | Device | The Device instance. |
| options | SaveOptions | Document saving options. |
See Also
- module
aspose.page.xps - class
Device - class
XpsDocument