笛里谁知壮士心,沙头空照征人骨。这篇文章主要讲述Java 将PDF转为PDF/A相关的知识,希望能为你提供帮助。
通过将PDF格式转换为PDF/A格式,可保护文档布局、格式、字体、大小等不受更改,从而实现文档安全保护的目的,同时又能保证文档可读、可访问。本篇文章,将通过java后端程序代码展示如何将PDF转为符合PDF/A1A, 2A, 3A, 1B, 2B和3B标准的PDF。以下是具体方法及步骤。
Jar包导入
本次程序中导入的是Spire.Pdf.jar。可在??Maven??程序中配置pom.xml如下内容来实现下载导入:
< repositories>
< repository>
< id> com.e-iceblue< /id>
< name> e-iceblue< /name>
< url> https://repo.e-iceblue.cn/repository/maven-public/< /url>
< /repository>
< /repositories>
< dependencies>
< dependency>
< groupId> e-iceblue< /groupId>
< artifactId> spire.pdf< /artifactId>
< version> 5.1.0< /version>
< /dependency>
< /dependencies>
或者,可将??Jar??下载到本地,解压,找到lib文件夹下的jar文件;然后在Java程序中执行如下操作手动导入:
将PDF转为PDF/A
Spire.PDF for Java中的PdfStandardsConverter类下面枚举了可将PDF转为本地PDF/A文件和流文件的多种方法,如下表:
方法 | 解释 |
PdfStandardsConverter.toPdfA1A(StringfilePath) | 保存为PDF/A1A到指定路径 |
PdfStandardsConverter.toPdfA1A(OutputStream stream) | 保存为PDF/A1A到流 |
PdfStandardsConverter.toPdfA1B (StringfilePath) | 保存为PDF/A1B到指定路径 |
PdfStandardsConverter.toPdfA1B(OutputStream stream) | 保存为PDF/A1B到流 |
PdfStandardsConverter.toPdfA2A(StringfilePath) | 【Java 将PDF转为PDF/A】保存为PDF/A2A到指定路径 |
PdfStandardsConverter.toPdfA2A(OutputStream stream) | 保存为PDF/A2A到流 |
PdfStandardsConverter.toPdfA2B(StringfilePath) | 保存为PDF/A2B到指定路径 |
PdfStandardsConverter.toPdfA2B(OutputStream stream) | 保存为PDF/A2B到流 |
PdfStandardsConverter.toPdfA3A(StringfilePath) | 保存为PDF/A3A到指定路径 |
PdfStandardsConverter.toPdfA3A(OutputStream stream) | 保存为PDF/A3A到流 |
PdfStandardsConverter.toPdfA3B(StringfilePath) | 保存为PDF/A3B到指定路径 |
PdfStandardsConverter.toPdfA3B(OutputStream stream) | 保存为PDF/A3B到流 |
- 实例化PdfStandardsConverter类的对象,并加载PDF源文档。
- 通过调用上述表格中的指定方法将PDF转为指定标准格式的PDF/A,并保存。
import com.spire.pdf.conversion.PdfStandardsConverter;
public class PDFtoPDFA
public static void main(String[]args)
//创建PdfStandardsConverter类的对象,传入文档路径
PdfStandardsConverter converter = new PdfStandardsConverter("sample.pdf");
//转换为PdfA1A
converter.toPdfA1A("ToPdfA1A.pdf");
//转换为PdfA1B
converter.toPdfA1B("ToPdfA1B.pdf");
//转换为PdfA2A
converter.toPdfA2A("ToPdfA2A.pdf");
//转换为PdfA2B
converter.toPdfA2B( "ToPdfA2B.pdf");
//转换为PdfA3A
converter.toPdfA3A( "ToPdfA3A.pdf");
//转换为PdfA3B
converter.toPdfA3B( "ToPdfA3B.pdf");
PDF/A格式转换效果,如图:
—End—
推荐阅读
- 实验(Location与nginx rewrite 跳转网页的应用)
- 放弃visio了,这款画图工具才是真的香!
- 实战设计模式之访问者模式
- #展望我的2022Flag#Springboot学习笔记Spring Boot和web组件
- Flutter 专题54 图解基本生命周期 #yyds干货盘点#
- 百度搜索中台新一代内容架构(FaaS化和智能化实战)
- HttpServer: 基于IOCP模型且集成Openssl的轻量级高性能web服务器
- #yyds干活盘点# 1.21 HTML5表单属性
- Kubernetes官方java客户端之四(内部应用)