本文介绍了如何使用itextsharp在pdf中添加页眉和页脚的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 您好, 我正在使用itextsharp创建一个pdf文件。我想在pdf文档中为每个页面添加页眉和页脚。谁能告诉我怎么能这样做? 我使用的是itext 5.0.4.1。在这里,我无法找到使用HeadeFooter类的选项,该类在早期版本中可用。 提前感谢。Hello,I am creating a pdf file using itextsharp. I want to add header and footer for each page in the pdf document. Can anyone tell me how can I do this?I am using itext 5.0.4.1. In this, I am unable to find the option to use HeadeFooter class, which is available in the earlier versions.Thanks in advance.推荐答案PdfTemplate footerTmpl = writer.getDirectContent().createTemplate( 0, 0, pageWidth, footerHeight );footerTmpl.setFontAndSize( someFont, someSize );footerTmpl.setTextMatrix( x, y );footer.showText("blah"); 这里,pdftemplate是itextcharp类。这样你就可以为你的pdf文件的每一页提供页脚。 尝试这个希望它对你有用.... !!Here, pdftemplate is the itextcharp class.with this you can give footer to each page of your pdf file.try this hope it will work for you....!! 这篇关于如何使用itextsharp在pdf中添加页眉和页脚的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
05-28 08:09
查看更多