赞
踩
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档
采用自助打印一体机,时时加盖鲜章,盖鲜章是垂直加盖,内容打印是在反面,需要在pdf 文件的每页前面添加空白页。
pdfbox 文档https://iowiki.com/pdfbox/pdfbox_index.html
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>pdfbox</artifactId>
- <version>2.0.1</version>
- </dependency>
- public static boolean addBlankPage(String srcPdf,String targetPdf){
- try {
- File file = new File(srcPdf);
- PDDocument pdDocument = PDDocument.load(file);
- PDDocument document = new PDDocument();
- for (int i=0;i<pdDocument.getNumberOfPages();i++) {
- PDPage page = pdDocument.getPage(i);
- document.addPage(new PDPage());
- document.addPage(page);
- }
- document.save(targetPdf);
- document.close();
- pdDocument.close();
- return true;
- }catch (Exception e){
- e.printStackTrace();
- return false;
- }
- }
先读取到原始pdf文件的总页数,在将每页拆分成单页添加到新的文档
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。