Word转pdf时,如何对pdf设置安全权限,不支持编辑pdf

word转pdf时,如何对pdf设置安全权限,不支持编辑pdf防止篡改pdf内容

@craspose 您可以使用 PdfEncryptionDetails:

Document doc = new Document("input.docx");

PdfEncryptionDetails encryptionDetails = new PdfEncryptionDetails("password", "", PdfPermissions.DISALLOW_ALL);

PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setEncryptionDetails(encryptionDetails);

doc.save("output.pdf", saveOptions);