Working with Pages in XPS file | Java
Contents
[
Hide
Show
]Add Pages
Aspose.Page for Java offers XpsDocument Class, which exposes setInsertPage() method that can be used to add pages to XPS document. The following code snippet shows complete functionality to add pages to XPS document:
1// Add page to XPS document.
2
3// Create new XPS Document
4XpsDocument doc = new XpsDocument(getDataDir() + "Sample1.xps");
5
6String outputFileName = "AddPages_out.xps";
7
8// Insert an empty page at beginning of pages list
9doc.insertPage(1, true);
10
11// Save resultant XPS document
12doc.save(getOutputDir() + outputFileName);You can download examples and data files from GitHub.