Re: [iText-questions] Access Permission VS Encryption

2009-08-17 Thread Leonard Rosenthol
You need to use the right parameters/options, since you can most certainly have encryption of the document BUT the metadata in plaintext. From: Mirco Piccin [mailto:pic...@gmail.com] Sent: Monday, August 17, 2009 1:08 PM To: Post all your questions about iText here Subject: [iText-questions] Acce

[iText-questions] Nested Tables - Last line on page appears twice

2009-08-17 Thread Markus Dreseler
Hi, I have a strange problem with nested PdfPTables: Both tables may span over multiple pages. If the content of the inner table scratches on the page boundary, it gets written there, but it also is written on the next page. This does not happen if there is like half a line space left on the p

[iText-questions] Nested Tables - Last line on page appears twice

2009-08-17 Thread M. Dreseler
Hi, I have a strange problem with nested PdfPTables: Both tables may span over multiple pages. If the content of the inner table scratches on the page boundary, it gets written there, but it also is written on the next page. This does not happen if there is like half a line space left on the page.

Re: [iText-questions] How to convert pValue in PdfReader to binarybased on

2009-08-17 Thread Aftab Mahmood
Thank you Paulo for your time to reply my post. I am still not able to match pValue bits with PDF Specs.Consider this pValue (-3904). This is from a document that has disallowed all user privileges. The only thing user can do is open the document. 2s compliment of this value is " 0100 " whi

Re: [iText-questions] Help needed

2009-08-17 Thread Alexis Pigeon
Hi Mahadev, 2009/8/17 Nagarajaiah, Mahadevaiah > Hi, > > I would like to know how to get* XY* coordinates for any string in a PDF > and it does not associated with any tag. > Not possible. Before posting any further question to the list, please have a look previously at the extensive documentat

[iText-questions] Access Permission VS Encryption

2009-08-17 Thread Mirco Piccin
Hi all, i need to change Access Permission of an existent PDF file. I've used the PdfEncryptor as well explained in this example: chapter03/HelloWorldEncryptDecrypt.java I use constant values to set permission (as listed here : http://1t3xt.info/api/constant-values.html#com.lowagie.text.pdf.PdfWri

Re: [iText-questions] itext examples website down?

2009-08-17 Thread Matt Funk
Ok, that was a stupid question on my part. My apologies ... Sorry, ... All the examples are on: http://www.1t3xt.info/examples/itext-in-action.php matt On Monday 17 August 2009, Matt Funk wrote: > Hi, > > not sure if this is the proper place to post this really ... > I am also new to itext (and

[iText-questions] Help needed

2009-08-17 Thread Nagarajaiah, Mahadevaiah
Hi, I would like to know how to get XY coordinates for any string in a PDF and it does not associated with any tag. Thanks in advance. Thanks Mahadev This e-mail and any attachments contain information belonging to the sender which may be confidential, propri

[iText-questions] itext examples website down?

2009-08-17 Thread Matt Funk
Hi, not sure if this is the proper place to post this really ... I am also new to itext (and this mailing list) so i am not sure if i missed an announcement. I was just wondering if there is any other website with the souce code example from Bruno's book 'iText in action'. The link pointed to b

Re: [iText-questions] create barcode as an image

2009-08-17 Thread Ahmet Kilic
Thank you very much. I will try it. Paulo Soares-3 wrote: > > You'll have to add the numbers yourself. If you want to create awt images > of > barcodes you're better served with > http://sourceforge.net/projects/barbecue/. > > Paulo > > - Original Message - > From: "Ahmet Kilic"

Re: [iText-questions] PDF document is password secured

2009-08-17 Thread martijn.list
>If I am using the above code for normal PDF, then I am getting the > boolean value as FALSE but for password secured PDF, I am getting the > below exception: > > Exception in thread "main" java.lang.NoClassDefFoundError: > org/bouncycastle/asn1/ASN1OctetString Did you install the Bouncy

Re: [iText-questions] PDF document is password secured

2009-08-17 Thread Ashok Sahu
Hi, PdfReader pdfReader = new PdfReader("C:\\encrypted.pdf"); boolean test = pdfReader.isEncrypted(); If I am using the above code for normal PDF, then I am getting the boolean value as FALSE but for password secured PDF, I am getting the below exception: Exception in thread "main"