您的位置:首页 > 其它

pdf添加图片及而文字水印

2017-03-31 17:54 381 查看
package com.pdf;

import java.awt.Color;

import java.io.FileOutputStream;

import com.lowagie.text.Element;

import com.lowagie.text.Image;

import com.lowagie.text.pdf.BaseFont;

import com.lowagie.text.pdf.PdfContentByte;

import com.lowagie.text.pdf.PdfReader;

import com.lowagie.text.pdf.PdfStamper;

public class Test2 {
/** 
   * 给pdf文件添加水印 
   * @param InPdfFile 要加水印的原pdf文件路径 
   * @param outPdfFile 加了水印后要输出的路径 
   * @param markImagePath 水印图片路径 
   * @param pageSize 原pdf文件的总页数(该方法是我当初将数据导入excel中然后再转换成pdf所以我这里的值是用excel的行数计算出来的,如果不是我这种可以 直接用reader.getNumberOfPages()获取pdf的总页数) 
   * @throws Exception 
   */  
  public static void addPdfMark(String InPdfFile, String outPdfFile, String markImagePath) throws Exception {  
     
   PdfReader reader = new PdfReader(InPdfFile, "PDF".getBytes());  
      
   PdfStamper stamp = new PdfStamper(reader, new FileOutputStream(outPdfFile));  
    
   Image img = Image.getInstance(markImagePath);// 插入水印     
  
   img.setAbsolutePosition(0, 0);  

        BaseFont base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",BaseFont.EMBEDDED);
   int pageSize = reader.getNumberOfPages();
   for(int i = 1; i <= pageSize; i++) {  
      
    PdfContentByte under = stamp.getUnderContent(i);  
    under.beginText();  
    under.setColorFill(Color.LIGHT_GRAY);  
    under.setFontAndSize(base, 50);  
    under.setTextMatrix(70, 200);  
    under.showTextAligned(Element.ALIGN_CENTER, "www.google.com!", 300,450, 55); 
    under.addImage(img);  
        
   }  
     
   stamp.close();// 关闭   
     
  /* File tempfile = new File(InPdfFile);  
     
   if(tempfile.exists()) {  
      
    tempfile.delete();  
   }  */
     
  }  
  public static void main(String[] args) {
  try {
addPdfMark("d:\\pdf\\111.pdf","d:\\pdf\\222.pdf","d:\\pdf\\logo1.jpg");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
  }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  pdf水印 pdf