目前,我正在使用Apache的PDFBox生成pdf。它在纵向模式下工作正常,但是我的要求是第一页和第二页应在横向模式下,然后所有其他页面都应在纵向模式下。
那么任何人都可以帮助我如何在横向创建pdf并实现此功能吗?
注意:我无法从PDFBox切换到其他库
最佳答案
有两种策略:
1)分配一个横向媒体盒(用于A4):
float POINTS_PER_INCH = 72;
float POINTS_PER_MM = 1 / (10 * 2.54f) * POINTS_PER_INCH;
new PDPage(new PDRectangle(297 * POINTS_PER_MM, 210 * POINTS_PER_MM));
2)分配一个纵向媒体盒,旋转页面并旋转CTM as shown in the official example:
PDPage page = new PDPage(PDRectangle.A4);
page.setRotation(90);
doc.addPage(page);
PDRectangle pageSize = page.getMediaBox();
float pageWidth = pageSize.getWidth();
PDPageContentStream contentStream = new PDPageContentStream(doc, page, AppendMode.OVERWRITE, false);
// add the rotation using the current transformation matrix
// including a translation of pageWidth to use the lower left corner as 0,0 reference
contentStream.transform(new Matrix(0, 1, -1, 0, pageWidth, 0));
(...)