使用Aspose PDF可编辑为不可编辑的pdf

时间:2018-01-18 18:17:10

标签: java aspose.pdf

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

1 个答案:

答案 0 :(得分: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一起担任开发者布道者。