java 如何给pdf文件加水印

java 如何给pdf文件加水印,第1张

Java生成PDF 加密 水印

1、iText简介

iText是一个开放源码的Java类库,可以用来方便地生成PDF文件。大家通过访问http://sourceforge.net/project/showfiles.php?group_id=15255&release_id=167948

下载最新版本的类库,下载完成之后会得到一个.jar包,把这个包加入JDK的classpath即可使用。

如果生成的PDF文件中需要出现中文、日文、韩文字符,则还需要通过访问http://itext.sourceforge.net/downloads/iTextAsian.jar

下载iTextAsian.jar包。

关于iText类库的使用,http://www.lowagie.com/iText/tutorial/index.html

有比较详细的教程。该教程从入门开始,比较系统地介绍了在PDF文件中放入文字、图片、表格等的方法和技巧。

读完这片教程,大致就可以做一些从简单到复杂的PDF文件了。不过,试图通过教程解决在生成PDF文件过程中遇到的所有困难无疑是一种奢望。所以,阅读iText的api文档显得非常重要。读者在下载类库的同时,也可以下载类库的文档。

注:如果以上两个下载链接无法下载而且通过网络也找不到这个jar包的同志可以留下邮箱地址,我会在两个工作日之内发邮件过去。

以下部分我是我调试通过的源代码,提供大家参考:

import java.awt.*

import java.io.*

import com.lowagie.text.*

import com.lowagie.text.Font

import

com.lowagie.text.Rectangle

import com.lowagie.text.pdf.*

/**

* 最近的项目中使用Itext将txt文件转换为PDF文件, 并且实现对文件的一些权限控制。

现实对pdf文件加

*密,添加水印等。

*/

public class PDFConvertBL

{

//

txt原始文件的路径

private static final String txtFilePath = "d:/11.txt"

// 生成的pdf文件路径

private static final String pdfFilePath =

"d:/22.pdf"

// 添加水印图片路径

// private static final String

imageFilePath = "D:/33.jpg"

// 生成临时文件前缀

private static final

String prefix = "tempFile"

// 所有者密码

private static final String

OWNERPASSWORD = "12345678"

/**

* txt文件转换为pdf文件

*

* @param txtFile

txt文件路径

* @param pdfFile pdf文件路径

* @param userPassWord

用户密码

* @param waterMarkName 水印内容

* @param permission

*** 作权限

*/

public static void generatePDFWithTxt(String txtFile,

String pdfFile, String userPassWord, String

waterMarkName,

int permission)

{

try

{

// 生成临时文件

File file =

File.createTempFile(prefix, ".pdf")

//

创建pdf文件到临时文件

if (createPDFFile(txtFile, file))

{

// 增加水印和加密

waterMark(file.getPath(),

pdfFile, userPassWord, OWNERPASSWORD, waterMarkName, permission)

}

}

catch (Exception e)

{

e.printStackTrace()

}

}

/**

* 创建PDF文档

*

* @param txtFilePath

txt文件路径(源文件)

* @param pdfFilePath pdf文件路径(新文件)

*/

private

static boolean createPDFFile(String txtFilePath, File file)

{

// 设置纸张

Rectangle rect = new Rectangle(PageSize.A4)

//

设置页码

HeaderFooter footer = new HeaderFooter(new Phrase("页码:",

setChineseFont()), true)

footer.setBorder(Rectangle.NO_BORDER)

// step1

Document

doc = new Document(rect, 50, 50, 50, 50)

doc.setFooter(footer)

try

{

FileReader

fileRead = new FileReader(txtFilePath)

BufferedReader read = new

BufferedReader(fileRead)

// 设置pdf文件生成路径 step2

PdfWriter.getInstance(doc, new FileOutputStream(file))

//

打开pdf文件 step3

doc.open()

// 实例化Paragraph

获取写入pdf文件的内容,调用支持中文的方法. step4

while (read.ready())

{

// 添加内容到pdf(这里将会按照txt文件的原始样式输出)

doc.add(new Paragraph(read.readLine(), setChineseFont()))

}

// 关闭pdf文件 step5

doc.close()

return true

}

catch (Exception e)

{

e.printStackTrace()

return false

}

}

/**

* 在pdf文件中添加水印

*

* @param inputFile

原始文件

* @param outputFile 水印输出文件

* @param waterMarkName

水印名字

*/

private static void waterMark(String inputFile, String

outputFile, String userPassWord, String ownerPassWord,

String waterMarkName, int permission)

{

try

{

PdfReader reader = new PdfReader(inputFile)

PdfStamper stamper = new PdfStamper(reader, new

FileOutputStream(outputFile))

// 设置密码

stamper.setEncryption(userPassWord.getBytes(), ownerPassWord.getBytes(),

permission, false)

BaseFont base =

BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",

BaseFont.NOT_EMBEDDED)

int total = reader.getNumberOfPages() +

1

// Image image =

Image.getInstance(imageFilePath)

//

image.setAbsolutePosition(200, 400)

PdfContentByte

under

int j = waterMarkName.length()

char c =

0

int rise = 0

for (int i = 1i <total

i++)

{

rise = 500

under =

stamper.getUnderContent(i)

// 添加图片

//

under.addImage(image)

under.beginText()

under.setColorFill(Color.CYAN)

under.setFontAndSize(base,

30)

// 设置水印文字字体倾斜 开始

if (j >=

15)

{

under.setTextMatrix(200,

120)

for (int k = 0k <j

k++)

{

under.setTextRise(rise)

c =

waterMarkName.charAt(k)

under.showText(c +

"")

rise -= 20

}

}

else

{

under.setTextMatrix(180, 100)

for (int k = 0k <jk++)

{

under.setTextRise(rise)

c = waterMarkName.charAt(k)

under.showText(c +

"")

rise -= 18

}

}

// 字体设置结束

under.endText()

// 画一个圆

//

under.ellipse(250, 450, 350, 550)

//

under.setLineWidth(1f)

// under.stroke()

}

stamper.close()

}

catch (Exception

e)

{

e.printStackTrace()

}

}

/**

* 设置中文

*

* @return Font

*/

private static Font setChineseFont()

{

BaseFont base =

null

Font fontChinese = null

try

{

base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",

BaseFont.EMBEDDED)

fontChinese = new Font(base, 12,

Font.NORMAL)

}

catch (DocumentException e)

{

e.printStackTrace()

}

catch (IOException

e)

{

e.printStackTrace()

}

return fontChinese

}

public static void main(String[] args)

{

generatePDFWithTxt(txtFilePath, pdfFilePath, "123", "水印文字", 16)

}

}

文章参考一些网络博客稍加修改调试,特此申明

http://hi.baidu.com/sx_python/item/15081531ad7d1bc21b96965e

用过滤器,等我上线给你,不要结问题哦

package com.jc.ts.services

import java.awt.Color

import java.awt.Graphics

import java.awt.Image

import java.awt.image.BufferedImage

import java.io.FileInputStream

import java.io.FileNotFoundException

import java.io.IOException

import javax.imageio.ImageIO

import javax.servlet.http.HttpServletRequest

import javax.servlet.http.HttpServletResponse

import com.sun.image.codec.jpeg.ImageFormatException

import com.sun.image.codec.jpeg.JPEGCodec

import com.sun.image.codec.jpeg.JPEGImageEncoder

/**

*添加图片水印的服务类

* */

public class WaterMark {

/**

* @param sizeContext添加水印文字

* @param request 请求流对象

* @param request 响应流对象

* */

@SuppressWarnings("deprecation")

public static void createMarkSize(String sizeContext,HttpServletRequest request,HttpServletResponse response) {

try {

String path=request.getRealPath(request.getServletPath())

FileInputStream in=new FileInputStream(path)

Image src=ImageIO.read(in)

int w=src.getWidth(null)

int h=src.getHeight(null)

BufferedImage img=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB)//构建画板

Graphics g=img.getGraphics()//得到画笔

g.drawImage(src,0,0,w,h,null)//把源图片写入画板

g.setColor(Color.red)

g.drawString(sizeContext,10,5) // 添加文字

g.dispose()//生成图片

JPEGImageEncoder e=JPEGCodec.createJPEGEncoder(response.getOutputStream())

e.encode(img)

response.getOutputStream().close()

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (ImageFormatException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

/**

* @param localPath 添加水印LOGO路径

* @param request 请求流对象

* @param request 响应流对象

**/

@SuppressWarnings("deprecation")

public static void createMarkLogo(String localPath,HttpServletRequest request,HttpServletResponse response) {

try {

FileInputStream file=new FileInputStream(localPath)

Image fimg=ImageIO.read(file)

int fw=fimg.getWidth(null)

int fh=fimg.getHeight(null)

String path=request.getRealPath(request.getServletPath())

FileInputStream in=new FileInputStream(path)

Image src=ImageIO.read(in)

int w=src.getWidth(null)

int h=src.getHeight(null)

BufferedImage img=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB)//构建画板

Graphics g=img.getGraphics()//得到画笔

g.drawImage(src,0,0,w,h,null)//把原图片写入画板

g.drawImage(fimg,w-20,h-15,fw,fh,null)//把水印图片写入画板

g.dispose()//生成图片

JPEGImageEncoder e=JPEGCodec.createJPEGEncoder(response.getOutputStream())

e.encode(img)

response.getOutputStream().close()

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (ImageFormatException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

}

/**

* @param localPath 添加水印图片路径

* @param request 请求流对象

* @param request 响应流对象

* @param width 水印图片的宽度

* @param height 水印图片的长度

**/

@SuppressWarnings("deprecation")

public static void createMarkLogo(String localPath,HttpServletRequest request,HttpServletResponse response,int width,int height) {

try {

FileInputStream file=new FileInputStream(localPath)

Image fimg=ImageIO.read(file)

int fw=fimg.getWidth(null)

int fh=fimg.getHeight(null)

String path=request.getRealPath(request.getServletPath())

FileInputStream in=new FileInputStream(path)

Image src=ImageIO.read(in)

int w=src.getWidth(null)//w为你过滤图片的宽度

int h=src.getHeight(null)//h为你过滤图片的长度

BufferedImage img=new BufferedImage(w+width,h+height,BufferedImage.TYPE_INT_RGB)//构建画板(画板的宽度为两个图片之和)

Graphics g=img.getGraphics()//得到画笔

g.drawImage(src,0,0,w,h,null)//把原图片写入画板

g.drawImage(fimg,width,height,fw,fh,null)//把水印图片写入画板

g.dispose()//生成图片

JPEGImageEncoder e=JPEGCodec.createJPEGEncoder(response.getOutputStream())

e.encode(img)

response.getOutputStream().close()

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (ImageFormatException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

}

注意第三个方法的注释地方g.drawImage(fimg,width,height,fw,fh,null)根据参数你在调调(放原图下面的)

过滤器调用

package com.jc.ts.filter

import java.io.IOException

import javax.servlet.Filter

import javax.servlet.FilterChain

import javax.servlet.FilterConfig

import javax.servlet.ServletException

import javax.servlet.ServletRequest

import javax.servlet.ServletResponse

import javax.servlet.http.HttpServletRequest

import javax.servlet.http.HttpServletResponse

import com.jc.ts.services.WaterMark

public class WaterFilter implements Filter {

public void destroy() {

// TODO Auto-generated method stub

}

public void doFilter(ServletRequest arg0, ServletResponse arg1,

FilterChain arg2) throws IOException, ServletException {

HttpServletRequest request=(HttpServletRequest)arg0

HttpServletResponse response=(HttpServletResponse)arg1

//WaterMark.createMarkSize("南京ts", request, response)

//WaterMark.createMarkLogo("D:\\workspace\\mybook\\WebRoot\\images\\logo\\book.jpg", request, response)

WaterMark.createMarkLogo("D:\\workspace\\mybook\\WebRoot\\images\\logo\\book.jpg", request, response,20,30)

//注意路径为绝对路径且三个效果不能同时执行

}

public void init(FilterConfig arg0) throws ServletException {

// TODO Auto-generated method stub

}

}

web.xml配置(写在servlet上面)

<filter>

<description>This is the description of my J2EE component</description>

<display-name>This is the display name of my J2EE component</display-name>

<filter-name>WaterFilter</filter-name>

<filter-class>com.jc.ts.filter.WaterFilter</filter-class>

</filter>

希望你能满意。。。。。。

首先,图片上的水印图片只能使用当前存储空间内的图片,如果没有,需要先传到当前空间内。

其次,水印图片的格式仅支持png,jpg,webp三种。

java里面上传水印,可以使用提供的sdk里面的watermark方法,这个函数有5个参数,分别是t,g,x,y,voffset.其中第一个参数表示透明度,其它参数表示位置。

当然了,它还可以指定水印文字,具体可以参考阿里云官方提供的文档,代码示例可以去github上找到对应 *** 作的代码。

具体代码如下

// add watermark into the image

style = "image/watermark,text_SGVsbG8g5Zu-54mH5pyN5YqhIQ"

request = new GetObjectRequest(bucketName, key)

request.setProcess(style)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11645490.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存