1.給pdf文件新增頁碼,可以通過以下**實現,但是要注意一點,這些**必須寫在doc.open()之前,否則第一頁是不能顯示頁尾的。
2.直接增加頁尾的方式預設只能顯示第幾頁,可以先計算出總頁數,然後變相的實現當前頁和總頁數的顯示。
headerfooter footer = new headerfooter(new phrase("page no. ",tablefont),
new phrase(" of "+totalpages,tablefont));
footer.setborder(rectangle.no_border);
footer.setalignment(element.align_right);
doc.setfooter(footer);
顯示效果:
使用iText操作pdf檔案
itext建立pdf檔案是十分簡單的,為了演示其極其簡單性,我們做乙個helloworld吧,讓大家體驗一下。在這個pdf檔案中,我們只顯示一句話 hello world 實現方式如下 建立乙個文件物件 document doc new document try catch filenotfound...
使用iText生成pdf文件
一 建立乙個新pdf文件 1.首先建立乙個文件document document doc new document 也可以設定文件背景,大小等 文件的背景色 rectangle psize new rectangle 144,90 psize.setbackgroundcolor color.blu...
iText匯出PDF使用小結
新建一pdf頁面,設定輸出流 document document new document pagesize.a4,20,20,20,20 上下左右的頁面邊距 bytearrayoutputstream buffer new bytearrayoutputstream pdfwriter write...