Skip to content

插入页面

插入空白页面,或插入其他 PDF 页面到目标页面中。

插入空白页面

以下是插入空白页面的示例代码:

java
CPDFDocument document = new CPDFDocument(context);
document.open(pdfPath);
int pageIndex = 1; // 插入到第一页之后。
float pageWidth = 595F;
float pageHeight = 842F;
document.insertBlankPage(pageIndex, pageWidth, pageHeight);
kotlin
val document = CPDFDocument(context)
document.open(pdfPath)
val pageIndex = 1 // 插入到第一页之后。
val pageWidth = 595F
val pageHeight = 842F
document.insertBlankPage(pageIndex, pageWidth, pageHeight)

插入其他 PDF 页面

以下是插入其他 PDF 页面的示例代码:

java
CPDFDocument document2 = new CPDFDocument(context);
document2.open(pdfPath);
document.importPages(document2, new int[]{0}, 1);
kotlin
val document2 = CPDFDocument(context)
document2.open(pdfPath)
document.importPages(newDocument, intArrayOf(0), 1)