我需要将页码添加到pdf中。我遵循本指南: http://itextpdf.com/examples/iia.php?id=104
如果我设置了所有工作:
Document document = new Document(PageSize.A4,36, 36, 54, 36);
但我需要一个风景:
Document document = new Document(PageSize.LETTER.rotate(),36, 36, 54, 36);
使用这种格式我看不到页码。我该如何解决这个问题? 感谢
答案 0 :(得分:2)
在该示例中,您使用
定位标题table.writeSelectedRows(0, -1, 34, 803, writer.getDirectContent());
34, 803
是位置。由于横向网页不是很高,因此您必须减少803
。
您很可能会同时想要增加
中的527
table.setTotalWidth(527);
因为横向页面更宽。