日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

pdf文件盖章

發布時間:2023/12/16 编程问答 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 pdf文件盖章 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

場景:

最近寫了一個項目,需要給pdf蓋章,同時再加上動態的實施日期在章的旁邊,下面給到蓋章的工具類

需要提供的是蓋章圖片的路徑,寫入的文字信息,pdf文檔路徑,蓋章后的文件路徑

/*** 文件蓋章* @param inputFile* @param outputFile* @param imgPath* @param implementdate*/public void waterMark(String inputFile, String outputFile,URL imgPath, String implementdate) {try {PdfReader reader = new PdfReader(inputFile);PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outputFile));//使用Windows系統字體(TrueType)BaseFont base = BaseFont.createFont();PdfGState gs = new PdfGState();//改透明度gs.setFillOpacity(0.5f);gs.setStrokeOpacity(0.4f);int total = reader.getNumberOfPages() + 1;JLabel label = new JLabel();label.setText(implementdate);PdfContentByte under;// 添加一個水印for (int i = 1; i < total; i++) {// 在內容上方加水印under = stamper.getOverContent(i);//在內容下方加水印//under = stamper.getUnderContent(i);gs.setFillOpacity(0.7f);under.setGState(gs);under.beginText();//改變顏色under.setColorFill(BaseColor.RED);//改水印文字大小under.setFontAndSize(base, 14);under.setTextMatrix(0, 0);//后3個參數,x坐標,y坐標,角度Image image = Image.getInstance(imgPath);Rectangle pageSize = reader.getPageSize(1);float height = pageSize.getHeight();float width = pageSize.getWidth();image.setAbsolutePosition(width / 2 - 20, height - 310); // set the first background// image of the absoluteimage.scaleToFit(450, 380);under.addImage(image);//under.setFontAndSize(base, 30);under.showTextAligned(Element.ALIGN_CENTER, implementdate, width / 2 + 270, height - 215, 0);under.endText();}stamper.close();reader.close();} catch (Exception e) {e.printStackTrace();}}

?

總結

以上是生活随笔為你收集整理的pdf文件盖章的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。