0

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)

enter image description here

I appreciate any insights.

kofhearts
  • 3,607
  • 8
  • 46
  • 79

1 Answers1

2

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.

Tilman Hausherr
  • 17,731
  • 7
  • 58
  • 97