>From where are you copying that screen shot? Can you post an actual PDF that demonstrates the problem?
-----Original Message----- From: jie [mailto:[email protected]] Sent: Monday, August 16, 2010 10:43 AM To: [email protected] Subject: [iText-questions] Allow page extraction Hi, I'm trying to use iText to allow all permissions for my files. However, I didn't manage to allow page extraction: all permissions are allowed except this one. I tried with iText 2 and the last version. Here are the scripts I use: For v5: PdfReader reader = new PdfReader(inputFile); PdfEncryptor.encrypt(reader, new FileOutputStream(outputFile), null, null, PdfWriter.ALLOW_ASSEMBLY | PdfWriter.ALLOW_COPY | PdfWriter.ALLOW_DEGRADED_PRINTING | PdfWriter.ALLOW_FILL_IN | PdfWriter.ALLOW_MODIFY_ANNOTATIONS | PdfWriter.ALLOW_MODIFY_CONTENTS | PdfWriter.ALLOW_PRINTING | PdfWriter.ALLOW_SCREENREADERS, false); For v2: PdfReader reader = new PdfReader(inputFile); PdfEncryptor.encrypt(reader, new FileOutputStream(outputFile), null, null, PdfWriter.ALLOW_ASSEMBLY | PdfWriter.ALLOW_COPY | PdfWriter.ALLOW_DEGRADED_PRINTING | PdfWriter.ALLOW_FILL_IN | PdfWriter.ALLOW_MODIFY_ANNOTATIONS | PdfWriter.ALLOW_MODIFY_CONTENTS | PdfWriter.ALLOW_PRINTING | PdfWriter.ALLOW_SCREENREADERS, false); And here's the result: http://img101.imageshack.us/img101/6862/pdfpb.png How can I solve this issue? Thanks -- View this message in context: http://itext-general.2136553.n4.nabble.com/Allow-page-extraction-tp2326975p2326975.html Sent from the iText - General mailing list archive at Nabble.com. ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.itextpdf.com/book/ Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/ ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.itextpdf.com/book/ Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
