/ Published in: Java

Creates a new document with a single page and adds standard encryption to it
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * @param args the command line arguments * @throws java.io.IOException */ PDDocument document = new PDDocument(); PDPage page = new PDPage(PDRectangle.A4); document.addPage(page); AccessPermission permssion = new AccessPermission(); StandardProtectionPolicy policy = new StandardProtectionPolicy("ownerPassword", "userPassword", permssion); policy.setEncryptionKeyLength(128); policy.setPermissions(permssion); document.protect(policy); document.save(""); document.close(); }
Comments
