在 iText7 中管理 PDF 使用权限
Managing PDF usage rights in iText7
我在 iTextSharp v5 中使用 PdfReader.HasUsageRights()
和 PdfReader.RemoveUsageRights()
。在 iText7 中似乎找不到类似的功能?
可能没有直接的替代方法,但很容易自己实现这些方法:
public boolean hasUsageRights(PdfDocument pdfDocument) {
PdfDictionary perms = pdfDocument.getCatalog().getPdfObject().getAsDictionary(PdfName.Perms);
if (perms == null) {
return false;
}
return perms.containsKey(new PdfName("UR")) || perms.containsKey(PdfName.UR3);
}
public void removeUsageRights(PdfDocument pdfDocument) {
PdfDictionary perms = pdfDocument.getCatalog().getPdfObject().getAsDictionary(PdfName.Perms);
if (perms == null) {
return;
}
perms.remove(new PdfName("UR"));
perms.remove(PdfName.UR3);
if (perms.size() == 0) {
pdfDocument.getCatalog().remove(PdfName.Perms);
}
}
如果您需要第一种方法,那么您可以传递使用 PdfDocument(PdfReader, PdfWriter)
构造函数或 PdfDocument(PdfReader)
构造函数创建的文档。如果您需要第二种方法,那么您需要传递一个在冲压模式下创建的文档,即使用 PdfDocument(PdfReader, PdfWriter)
constructor
我在 iTextSharp v5 中使用 PdfReader.HasUsageRights()
和 PdfReader.RemoveUsageRights()
。在 iText7 中似乎找不到类似的功能?
可能没有直接的替代方法,但很容易自己实现这些方法:
public boolean hasUsageRights(PdfDocument pdfDocument) {
PdfDictionary perms = pdfDocument.getCatalog().getPdfObject().getAsDictionary(PdfName.Perms);
if (perms == null) {
return false;
}
return perms.containsKey(new PdfName("UR")) || perms.containsKey(PdfName.UR3);
}
public void removeUsageRights(PdfDocument pdfDocument) {
PdfDictionary perms = pdfDocument.getCatalog().getPdfObject().getAsDictionary(PdfName.Perms);
if (perms == null) {
return;
}
perms.remove(new PdfName("UR"));
perms.remove(PdfName.UR3);
if (perms.size() == 0) {
pdfDocument.getCatalog().remove(PdfName.Perms);
}
}
如果您需要第一种方法,那么您可以传递使用 PdfDocument(PdfReader, PdfWriter)
构造函数或 PdfDocument(PdfReader)
构造函数创建的文档。如果您需要第二种方法,那么您需要传递一个在冲压模式下创建的文档,即使用 PdfDocument(PdfReader, PdfWriter)
constructor