玄月二十八 2019-12-04 17:35 采纳率: 0%
浏览 687

pdf文件加水印并返回输出

## # 这是轮子地址https://www.cnblogs.com/qlqwjy/p/9326468.html

/**
*
* @param bos
* 输出文件的位置
* @param input
* 原PDF位置
* @param waterMarkName
* 页脚添加水印
* @param permission
* 权限码
* @throws DocumentException
* @throws IOException
/
public static void setWatermark(BufferedOutputStream bos, String input, String waterMarkName, int permission)
throws DocumentException, IOException {
PdfReader reader = new PdfReader(input);
PdfStamper stamper = new PdfStamper(reader, bos);
int total = reader.getNumberOfPages() + 1;
PdfContentByte content;
BaseFont base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.EMBEDDED);
PdfGState gs = new PdfGState();
for (int i = 1; i < total; i++) {
content = stamper.getOverContent(i);// 在内容上方加水印
// content = stamper.getUnderContent(i);//在内容下方加水印
gs.setFillOpacity(0.2f);
// content.setGState(gs);
content.beginText();
content.setColorFill(Color.LIGHT_GRAY);
content.setFontAndSize(base, 50);
content.setTextMatrix(70, 200);
content.showTextAligned(Element.ALIGN_CENTER, "公司内部文件,请注意保密!", 300, 350, 55);
Image image = Image.getInstance("D:/2.jpeg");
/

img.setAlignment(Image.LEFT | Image.TEXTWRAP);
img.setBorder(Image.BOX); img.setBorderWidth(10);
img.setBorderColor(BaseColor.WHITE); img.scaleToFit(100072);//大小
img.setRotationDegrees(-30);//旋转
*/
image.setAbsolutePosition(200, 206); // set the first background
// image of the absolute
image.scaleToFit(200, 200);
content.addImage(image);
content.setColorFill(Color.BLACK);
content.setFontAndSize(base, 8);
content.showTextAligned(Element.ALIGN_CENTER, "下载时间:" + waterMarkName + "", 300, 10, 0);
content.endText();

    }
    stamper.close();
}

我自己调用方法

        public HttpResult waterMark(@RequestParam String path) throws IOException, DocumentException {
    // 要输出的pdf文件
    BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(new File(path)));
    Calendar cal = Calendar.getInstance();
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    // 将pdf文件先加水印然后输出
    PDFWaterMarkUtils.setWatermark(bos, "D:/abc.pdf", format.format(cal.getTime()) + "  下载使用人:" + "测试user", 16);
    return HttpResult.ok();
}

报错信息

{
"timestamp": "2019-12-04T09:16:33.044+0000",
"status": 500,
"error": "Internal Server Error",
"message": "D:/abc.pdf not found as file or resource.",
"path": "/img/image"
}

有没有大佬指点迷津

  • 写回答

1条回答 默认 最新

  • CSDN-Ada助手 CSDN-AI 官方账号 2022-09-20 23:58
    关注
    不知道你这个问题是否已经解决, 如果还没有解决的话:
    • 给你找了一篇非常好的博客,你可以看看是否有帮助,链接:pdf 加多列水印

    如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^
    评论

报告相同问题?

悬赏问题

  • ¥20 iqoo11 如何下载安装工程模式
  • ¥15 本题的答案是不是有问题
  • ¥15 关于#r语言#的问题:(svydesign)为什么在一个大的数据集中抽取了一个小数据集
  • ¥15 C++使用Gunplot
  • ¥15 这个电路是如何实现路灯控制器的,原理是什么,怎么求解灯亮起后熄灭的时间如图?
  • ¥15 matlab数字图像处理频率域滤波
  • ¥15 在abaqus做了二维正交切削模型,给刀具添加了超声振动条件后输出切削力为什么比普通切削增大这么多
  • ¥15 ELGamal和paillier计算效率谁快?
  • ¥15 蓝桥杯单片机第十三届第一场,整点继电器吸合,5s后断开出现了问题
  • ¥15 file converter 转换格式失败 报错 Error marking filters as finished,如何解决?