使用iTextSharp的pdf页脚

时间:2016-09-20 21:00:04

标签: c# pdf itext

我试图在PDF文档的每个页面中添加页脚。我想要一个名字和当前日期。我使用此代码,但它只在最后一页打印。我在每一页都需要它。我在这里缺少什么?

DateTime horario = DateTime.MinValue;
document.Add(new iText.Paragraph(document.BottomMargin, "TEST FOOTER" + horario));

1 个答案:

答案 0 :(得分:2)

我设法解决这个问题。 在我创建pdf的课程中,我添加了这一行。

print

我创建了另一个名为PDFFooter的类。

pdfWriter.PageEvent = new PDFFooter();