简体   繁体   中英

custom page size in pdfbox?

In pdfbox is there a way to set a custom page size for example 6" x 8". This is the size of runner bib card. The only sizes that seem to be available are the following:

 ReportPageSize pageSize = ReportPageSize.AVERY_5160;
 PdfDocInfo doc = new PdfDocInfo(pageSize)

在此处输入图片说明

I appreciate any insights.

pass a mediabox when creating your page:

private static final float POINTS_PER_INCH = 72;

PDPage page = new PDPage(
    new PDRectangle(6 * POINTS_PER_INCH, 8 * POINTS_PER_INCH));

"PdfDocInfo" is not from PDFBox.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM