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);
Example-AddPageXPS.java hosted with ❤ by GitHub

See working with pages in XPS documents in .NET and C++.


You can download examples and data files from GitHub.

Have any questions about Aspose.Page?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.