跳至主要內容

页面

xsx小于 1 分钟页面

说明

  1. 默认页面尺寸为A4。
  2. 默认页面边距为0pt。
  3. 默认背景颜色为白色。

示例

// 创建文档
Document document = PdfHandler.getDocumentHandler().create();

// 创建页面
Page page = new Page(document);

// 自定义尺寸
Page page2 = new Page(document, PageSize.B2);
// 设置上下左右边距
page2.setMargin(10F);
// 设置背景颜色
page2.setBackgroundColor(Color.GRAY);

// 添加页面
document.appendPage(page, page2);
// 保存文档
document.save("E:\\PDF\\pdfbox\\page\\test.pdf");
// 关闭文档
document.close();