4

在使用 Aspose PDF 向其中添加一些文本后,如何将可编辑的 pdf 保存为不可编辑?

4

1 回答 1

2

将一些文本添加到 PDF 文件后,您可以使用以下代码段设置文档权限:

    //Open source document
    Document document = new Document(inputFile);        

    //Forbid all privileges on the document
    DocumentPrivilege privilege = DocumentPrivilege.getForbidAll();

    //Set the desired privileges
    PdfFileSecurity fileSecurity = new PdfFileSecurity(document);
    fileSecurity.setPrivilege(privilege);

    //Save resulting PDF document
    document.save(outputFile);

这将禁止所有文档权限,并且 PDF 文件将不再可编辑。我希望这会有所帮助。如果您需要任何进一步的帮助,请告诉我们。

我与 Aspose 一起担任开发人员宣传员。

于 2018-01-18T21:10:28.103 回答