PDFBox サンプルプログラム

目次

ページサイズを指定して空白1ページのPDFを作成する


try {
    //PDFドキュメントを作成
    PDDocument document = new PDDocument();
    
    //サイズ指定
    PDRectangle rec = new PDRectangle();
    rec.setUpperRightX(0);
    rec.setUpperRightY(0);
    rec.setLowerLeftX(1000);
    rec.setLowerLeftY(1000);
    
    //ページを追加(1ページ目)
    document.addPage(new PDPage(rec));
    //作成したPDFを保存
    document.save("hogehoge.pdf");
    document.close();
} catch (IOException e) {
    e.printStackTrace();
} catch (COSVisitorException e) {
    e.printStackTrace();
}