文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>解密pdf-7(为pdf插入页码,页眉,页脚)

解密pdf-7(为pdf插入页码,页眉,页脚)

时间:2010-10-11  来源:xue2

 

关键字: pdf itext 页码 页脚 页眉 首先我们先来认识一个类 com.lowagie.text.HeaderFooter,
使用了改类可以自动计算当前页的页码,并插入页眉或页脚中。
该类有两个构造方法如下:
1.HeaderFooter(Phrase before, boolean flag);
2.HeaderFooter(Phrase before, Phrase after);
使用1中的flag参数是表示是否进行页号的显示,
before和after参数是用于显示在页码前后的说明文字,如 page:1,第 1 页 等。
其中的setAlignment(int alignment)方法是用于设定相应对齐方式,如:居中,居右等。
默认的HeaderFooter会在显示一个带有边框的样式,
当然我们可以进行设置,
可以通过setBorder()方法将其隐藏或只显示某侧边框。
最后需要告诉Document将使用HeaderFooter,可以使用document.setHeader()和document.setFooter()
下面是一个例子:
import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Element;
import com.lowagie.text.Font;
import com.lowagie.text.HeaderFooter;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.BaseFont;
import com.lowagie.text.pdf.PdfWriter;

/**
 * 页码
 * 
 */
public class Simple7 {
        @SuppressWarnings("deprecation")
        public static void main(String[] args) throws DocumentException,
                        IOException {

                Document doc = new Document(PageSize.B5);
                BaseFont bfChinese = BaseFont.createFont("STSongStd-Light",
                                "UniGB-UCS2-H", false);
                Font fontChinese = new Font(bfChinese, 12, Font.NORMAL, Color.GREEN);

                PdfWriter writer = PdfWriter.getInstance(doc, new FileOutputStream(
                                "E:/HelloWorld.pdf"));
                // HeaderFooter footer = new HeaderFooter(new Phrase(" 第", fontChinese),
                // new Phrase(" 页", fontChinese));
                
                HeaderFooter footer = new HeaderFooter(new Phrase("页码:", fontChinese),
                                true);
                footer.setBorder(Rectangle.NO_BORDER);
                footer.setAlignment(Element.ALIGN_CENTER);
                doc.setFooter(footer);
                doc.open();
                for (int i = 0; i < 20; i++) {
                        doc.add(new Paragraph("Test......."));
                        doc.add(new Paragraph("Test......."));
                        doc.add(new Paragraph("Test......."));
                }
                doc.close();
        }
}



对了不要忘记相关的设置需要在Document.open()之前完成。
不然可能会出现文档的页眉页脚只从第2页才显示,第1页并没有显示我们所需要显示的页眉页脚。
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载