Skip to content
ComPDF
DemoSampleAPI ReferenceFAQ

PDF Generation Template Editor

Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.

View on GitHub

Replace Pages

The steps to replace pages are as follows:

  1. Remove the pages in the target file that need to be replaced.
  2. Insert the replacement pages into the location where the original document was deleted.

This example shows how to replace pages:

java
// Remove the first page from the document.
document.removePages(new int[]{0});
CPDFDocument document2 = new CPDFDocument();
document2.open(pdfPath);
// Insert the first page of another document into the original document's first-page position to complete the replacement.
document.importPages(document2, new int[]{0}, 0);