Re: [iText-questions] Can't save PDF after filling in form fields with iTextSharp

2009-10-27 Thread claud108
Hi, Fredrik, The example http://www.1t3xt.info/examples/browse/?page=example&id=348 will save you, as it can be used to prefill a PDF and preserve the usage rights (namely, further filling and saving by the user). But you have to pay attention to address the fields to set values to. I used the

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread Leonard Rosenthol
Because one uses AcroForms and one uses XFA... Leonard -Original Message- From: claud108 [mailto:claud...@yahoo.com] Sent: Tuesday, October 27, 2009 2:28 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Example FillDynamicXfa2 I wonder why with this example h

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread claud108
I wonder why with this example http://www.1t3xt.info/examples/browse/?page=example&id=348 (which uses AcroFields), is possible to maintain the usage rights, while by using this example http://1t3xt.info/examples/browse/?page=example&id=441 (which uses XfaForm), this is not possible. Thank you, Cl

Re: [iText-questions] Image.GetInstance hangs after a few iterations

2009-10-27 Thread Afshan Raees
Afshan Raees metametrix.com> writes: > First I thought that was the issue but I confirmed that as not being the issue. I suspect it is a resource issue when it tries to instantiate an image object perhaps... > > > I have a queue of 76 documents that I am processing using iText. This means th

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread 1T3XT info
claud108 wrote: > Thank you very much for your answer. > > I missed that subtlety of stamper ;) > > But I want to keep the Usage Rights AND update the XFA of the PDF document. > > Is this possible? Only if you throw some work at it. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread claud108
Thank you very much for your answer. I missed that subtlety of stamper ;) But I want to keep the Usage Rights AND update the XFA of the PDF document. Is this possible? Claudius -- View this message in context: http://www.nabble.com/Example-FillDynamicXfa2-tp26077058p26081801.html Sent from t

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread 1T3XT info
claud108 wrote: > Hi, > > After using this example > (http://1t3xt.info/examples/browse/?page=example&id=441) on a form that was > possible to be filled and saved by user, it is not possible to fill it > again. > > It appears the message: > "This document contained certain rights to enable specia

Re: [iText-questions] Example FillDynamicXfa2

2009-10-27 Thread 1T3XT info
claud108 wrote: > Hi, > > After using this example > (http://1t3xt.info/examples/browse/?page=example&id=441) on a form that was > possible to be filled and saved by user, it is not possible to fill it > again. > > It appears the message: > "This document contained certain rights to enable specia

Re: [iText-questions] Image.GetInstance hangs after a few iterations

2009-10-27 Thread Paulo Soares
A timeout while reading from disk? Paulo > -Original Message- > From: Afshan Raees [mailto:ara...@metametrix.com] > Sent: Tuesday, October 27, 2009 1:37 PM > To: Afshan Raees; itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] Image.GetInstance hangs after > a few it

Re: [iText-questions] Image.GetInstance hangs after a few iterations

2009-10-27 Thread Afshan Raees
The problem is also happening with AddImage. Here are the contents of the some of the variables: cb(PdfContentByte acquired from a PdfStamper), chkbox is the Image that is added to each document: cb {q 10 0 0 10 30 275 cm} [iTextSharp.text.pdf.StampContent]: {q 10 0 0 10 30 275 cm} Charac

[iText-questions] Image.GetInstance hangs after a few iterations

2009-10-27 Thread Afshan Raees
I have a queue of 76 documents that I am processing using iText. This means that I add a number of images to each one of the documents. This works fine for the first 4 of them and then the GetInstance times out. What could be causing this problem? Thanks. Afshan __

[iText-questions] Can't save PDF after filling in form fields with iTextSharp

2009-10-27 Thread Fredrik Holgersson
Hi! Working on a project using itextsharp and vb.net where I want to produce a partially filled out PDF with editable forms and the option to sign with a digital signature. I had it working just fine until last week when I started getting an error when trying to save the final document in Adobe Rea

Re: [iText-questions] Annotations Modified?

2009-10-27 Thread mkl
Roger, Adobe Preflight states that there are syntax errors in the annotations of both the original pdf and the signed pdf: http://www.nabble.com/file/p26077572/document_original_mit_annotations_report.pdf document_original_mit_annotations_report.pdf http://www.nabble.com/file/p26077572/documen

Re: [iText-questions] Creating the same PDFSignatureAppearance twice....

2009-10-27 Thread mkl
Hi! Javadoc wrote: > I am in a situation where I need to create the PDFSignatureAppearance for > a PDF I am signing twice. Your problem has been discussed here quite often, e.g. in http://www.nabble.com/Pdf-signature-Issues-to23059531.html or http://www.nabble.com/Hash-computation-problem-t

[iText-questions] Example FillDynamicXfa2

2009-10-27 Thread claud108
Hi, After using this example (http://1t3xt.info/examples/browse/?page=example&id=441) on a form that was possible to be filled and saved by user, it is not possible to fill it again. It appears the message: "This document contained certain rights to enable special features in Adobe Reader. The d

[iText-questions] query,please give me the solution

2009-10-27 Thread santosh kumar
hi , This is santosh here.Actually i have to merge the pdf docs into one pdf.before this i have to get the content from the database and inseerted respective content into respective pdf dynamically by using pdfstamper class and then i save that into one temprary folder.i repeat the same process

Re: [iText-questions] Creating the same PDFSignatureAppearance twice....

2009-10-27 Thread Leonard Rosenthol
You can't sign the same byte range more than once in a PDF. The concept of "parallel signatures" is not supported. Instead, PDF uses a "serial signature" model instead. Leonard -Original Message- From: Javadoc [mailto:tacobellja...@gmail.com] Sent: Monday, October 26, 2009 8:16 PM To

[iText-questions] Creating the same PDFSignatureAppearance twice....

2009-10-27 Thread Javadoc
Hello all, I am in a situation where I need to create the PDFSignatureAppearance for a PDF I am signing twice. This is because I am having to read the actual PDF file twice. I need the signature to have the same getRangeStream somehow. The only thing I can see that would be difference when creati