本页内容
3.5.2 PDF 权限
PDF 权限模块用于确保 PDF 文档的安全性,提供加密、文档权限、解密、移除密码功能,以保障用户对文档的安全控制和有效管理。
加密
加密功能分为用户密码和所有者密码两部分。用户密码用于打开文档,确保只有授权的用户可以访问文档内容。当设置用户密码时,通常会限制一些诸如修改、复制或打印等文档权限。而所有者密码不仅可以打开文档,还能解锁所有被禁止的权限,使用户能够对文档进行修改、复制或打印等操作。双层密码体系旨在提供更加灵活和安全的文档访问和管理方式。
ComPDFKit 提供多种加密算法和权限设置,根据需求使用合适的算法,设置自定义权限以保护文档。
以下是加密的步骤:
- 设定不同的用户密码和所有者密码。
- 创建权限信息类。
- 使用用户密码和所有者密码,权限信息,算法对文档加密。
- 保存文档
以下是加密 PDF 文档的示例代码:
java
// Open document from file path.
CPDFDocument document = new CPDFDocument();
document.open(pdfPath);
// Set user password.
document.setUserPassword(user_password);
// Set owner password.
document.setOwnerPassword(owner_password);
// Set permission info.
CPDFDocumentPermissionInfo info = document.getPermissionsInfo();
info.setAllowsPrinting(false);
info.setAllowsCopying(true);
document.setPermissionsInfo(info);
// Save document.
document.save(CPDFDocument.PDFDocumentSaveType.PDFDocumentSaveNoIncremental);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
文档权限
PDF 规范中,支持对文档的多种权限进行设置,通过设置这些权限,可以限制用户只能做出符合预期的行为。
PDF 规范定义了如下所示的权限:
- 打印 - 打印文档。
- 高质量打印 - 高保真打印文档。
- 复制 - 复制文档内容。
- 文档更改 - 修改文档内容,但不包括文档属性。
- 文档组合 - 插入、删除和旋转页面。
- 注释 - 创建或修改文档注释,包括表单字段条目。
- 表单字段输入 - 修改表单字段条目,即使不能编辑文档注释。
以下是查看文档权限的步骤:
- 获取文档权限信息。
- 通过文档权限信息查看指定的权限。
以下是查看文档权限的示例代码:
java
// Open document from file path.
CPDFDocument document = new CPDFDocument();
document.open(pdfPath);
// get permission info.
CPDFDocumentPermissionInfo info = document.getPermissionsInfo();
System.out.println("Allows Printing:" + info.isAllowsPrinting());
System.out.println("Allows Copying:" + info.isAllowsCopying());
1
2
3
4
5
6
7
2
3
4
5
6
7
解密
访问具有密码保护的 PDF 文档,需要输入密码。ComPDFKit 提供了两种密码:用户密码和所有者密码。用户密码用于打开文档,确保只有授权的用户可以访问文档内容。而所有者密码不仅打开文档,还解锁所有权限,使用户能够对文档进行修改、打印或复制等操作。双层密码体系旨在提供更加灵活和安全的文档访问和管理方式。
使用不同级别的密码获取不同的权限级别。
解密的步骤如下:
- 打开文档时判断文档是否已被加密。
- 对于已加密的文档,输入用户密码或所有者密码均可打开文档。
以下是解密 PDF 文档的示例代码:
java
// Open document from file path.
CPDFDocument document = new CPDFDocument();
CPDFDocument.PDFDocumentError error = document.open(pdfPath);
if (error == CPDFDocument.PDFDocumentError.PDFDocumentErrorPassword) {
// Password required.
document.open(pdfFath, password);
}
1
2
3
4
5
6
7
2
3
4
5
6
7
删除密码
删除密码是指用户在已经获得了所有者权限的情况下,将文档的所有者密码和用户密码移除并另存为新的文档,新的文档将不再需要密码即可打开且默认可使用所有权限。
删除密码的步骤如下:
- 解锁文档并获取所有权限。
- 将解锁后的文档保存。
以下是删除密码的示例代码:
java
// Open document from file path.
CPDFDocument document = new CPDFDocument();
document.open(pdfPath, password);
// Remove password.
try {
document.save(CPDFDocument.PDFDocumentSaveType.PDFDocumentSaveRemoveSecurity);
} catch (CPDFDocumentException e) {
e.printStackTrace();
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9