我需要能够添加此代码...我想修改此代码以从 PDF 中添加/编辑/删除页眉和页脚。
public void onEndPage(PdfWriter writer, Document document)
{
PdfContentByte cb = writer.getDirectContent();
if (document.getPageNumber() > 1)
{
ColumnText.showTextAligned(cb, Element.ALIGN_CENTER, header, (document.right() - document
.left())
/ 2 + document.leftMargin(), document.top() + 10, 0);
}
footer.writeSelectedRows(0, -1, (document.right() - document.left() - 300) / 2
+ document.leftMargin(), document.bottom() - 10, cb);
}
请问有什么建议吗?
此链接显示如何使用 HeaderFooter 类。请分享 Itext2.X.jar 文件