这很奇怪,我目前正在使用iTextSharp,我想添加一个Header&页脚到我的PDF文件。在所有示例中,它们只是创建一个新的HeaderFooter()对象。但是,我已经导入了所有导入的iTextSharp库,但未定义HeaderFooter。我用过Reflector来看看我是否能找到这个课程的下落和遗漏?!
有谁知道这堂课发生了什么事?
答案 0 :(得分:13)
大多数示例都是指早期版本的iTextSharp。对于iTextSharp的5+版本(我假设您正在使用),HeaderFooter属性/对象已被删除。
请参阅 http://itextpdf.com/history/?branch=50&node=500(最后一行)
要立即添加页眉/页脚,您必须使用PageEvents。以下代码演示了如何在VB中执行此操作。您基本上必须继承PageEventsHelper类并监视OnStartPage事件 - 然后根据需要添加代码。
Imports iTextSharp.text.pdf
Imports iTextSharp.text
Imports System.IO
Module Module1
Sub Main()
Dim pdfDoc As New Document()
Dim pdfWrite As PdfWriter = PdfWriter.GetInstance(pdfDoc, New FileStream("tryme2.pdf", FileMode.Create))
Dim ev As New itsEvents
pdfWrite.PageEvent = ev
pdfDoc.Open()
pdfDoc.Add(New Paragraph("Hello World"))
pdfDoc.NewPage()
pdfDoc.Add(New Paragraph("Hello World Again"))
pdfDoc.Close()
End Sub
End Module
Public Class itsEvents
Inherits PdfPageEventHelper
Public Overrides Sub OnStartPage(ByVal writer As iTextSharp.text.pdf.PdfWriter, ByVal document As iTextSharp.text.Document)
Dim ch As New Chunk("This is my Stack Overflow Header on page " & writer.PageNumber)
document.Add(ch)
End Sub
End Class
它最初看起来更多的工作,但有一个好处,你可以添加更多的页眉/页脚,而不仅仅是纯文本。您现在可以轻松添加Document支持的任何内容。