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

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

pdf文件盖章

發(fā)布時(shí)間:2023/12/16 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 pdf文件盖章 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

場(chǎng)景:

最近寫了一個(gè)項(xiàng)目,需要給pdf蓋章,同時(shí)再加上動(dòng)態(tài)的實(shí)施日期在章的旁邊,下面給到蓋章的工具類

需要提供的是蓋章圖片的路徑,寫入的文字信息,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系統(tǒng)字體(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;// 添加一個(gè)水印for (int i = 1; i < total; i++) {// 在內(nèi)容上方加水印under = stamper.getOverContent(i);//在內(nè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個(gè)參數(shù),x坐標(biāo),y坐標(biāo),角度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();}}

?

總結(jié)

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

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。