Re: [iText-questions] stamping a pdf-template with "extended functions" enabled locks further changes to the document

2011-04-06 Thread 1T3XT BVBA
Op 6/04/2011 9:14, christoph.miku...@bgn.de schreef: > how can i stamp such documents without loosing the functionality of being > edit- and saveable in acroread? Please read the FAQ!!! http://itextpdf.com/themes/keyword.php?id=327 Don't post the same question over and over again!

[iText-questions] stamping a pdf-template with "extended functions" enabled locks further changes to the document

2011-04-06 Thread Christoph . Mikusch
hi there, we've created an empty pdf-form as a template for our external staff to fill out. they should be able to edit and save the form fields with acrobat reader so we've added "extended functions" upon saving the template. up to here it woks well. but this template should be stamped with adre

Re: [iText-questions] Stamping out form results in blank output

2010-08-05 Thread Thomas Hauk
Fixed it. There were two problems: 1. The frontend was not sending the backend the correct field name to change, and 2. I wasn't checking the boolean return value of the setField() method in AcroFields. Always check your return values, people! -- Thomas Hauk Shaggy Frog Software www.shaggyf

[iText-questions] Stamping out form results in blank output

2010-08-05 Thread Thomas Hauk
I am working on a Web application with iText as a backend, which combines several PDF files (all of our PDFs have been created using Illustrator) into a single-page PDF. The PDF files are generally AcroForms, but not all. Text is filled into the forms dynamically (if there are fields) and t

Re: [iText-questions] Stamping on my Windows XP box doesn't copy thepdf elements.

2009-08-10 Thread Paulo Soares
This is something that can only be fixed by having access to the machine. It may be a file access problem or a broken Java install or something else. Paulo - Original Message - From: "z flaherty" To: Sent: Monday, August 10, 2009 4:33 PM Subject: [iText-questions] Stam

[iText-questions] Stamping on my Windows XP box doesn't copy the pdf elements.

2009-08-10 Thread z flaherty
Suppose my code looks something like this: PdfReader reader = new Reader("foo.pdf"); ByteArrayOutputStream out = new ByteArrayOutputStream();PdfStamper stamp = new PdfStamper(reader, out);Acrofields form = stamp.getAcroFields(); form.setField("fieldName", "test");form.setField("fieldName2", "tes

Re: [iText-questions] Stamping permission-secured documents

2009-07-27 Thread Cyrille Chenevert
Hey, Thanks it worked perfectly. I was looking at examples similar, but none of them included these options for the stamper. > From: psoa...@glintt.com > To: itext-questions@lists.sourceforge.net > Date: Mon, 27 Jul 2009 15:32:49 +0100 > Subject: Re: [iText-questions] Stampin

Re: [iText-questions] Stamping permission-secured documents

2009-07-27 Thread Paulo Soares
Did you see http://1t3xt.be/?X43? Paulo > -Original Message- > From: cyrille.chenev...@forces.gc.ca > [mailto:cyrille.chenev...@forces.gc.ca] > Sent: Monday, July 27, 2009 3:02 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Stamping

[iText-questions] Stamping permission-secured documents

2009-07-27 Thread Cyrille.Chenevert
Hi! My questions is the following: if I have a document that is permission-secured, is there any way to stamp it without these permissions being affected? Here's the reason for my question: I have a document created with LiveCycle 8.0. It's a form that is used to make logistical purchases. If

Re: [iText-questions] Stamping template to multiple pages

2009-06-25 Thread Jason Berk
FYI: this worked perfectly From: Jason Berk [mailto:jb...@purdueefcu.com] Sent: Wednesday, June 24, 2009 1:47 AM To: Post all your questions about iText here; itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Stamping template to

Re: [iText-questions] Stamping template to multiple pages

2009-06-23 Thread Jason Berk
756 - logo.getHeight()); } s.close(); Paulo - you da' man (assuming the above works ;-)) Jason -Original Message- From: Jason Berk [mailto:jb...@purdueefcu.com] Sent: Tue 6/23/2009 11:35 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Stamping template to

[iText-questions] Stamping template to multiple pages

2009-06-23 Thread Jason Berk
Hello all, I'm really stuck on this one... I need to create two reports for an account: an "e" version and a print version. Each version as some content that's specific to that version. For instance, the print version is printed on preprinted stock that has our logo in the corner already. Ther

Re: [iText-questions] Stamping.

2005-06-28 Thread bruno
Gareth Edwards wrote: Do you know if it is possible to have two versions of itext running on the same J2EE instance? Having two different versions of iText in the same JVM, can lead to different errors that are hard for us to debug. br, Bruno ---

Re: [iText-questions] Stamping.

2005-06-27 Thread Bruno Lowagie
Gareth Edwards wrote: PageEvents in coldfusion? Coldfusion doesn't support events. I'm not 100% with java but in coldfusion you cant attach a function to an event, I think thats what stops me.. unless I'm missing something. As I said I don't know a lot about Coldfusion. But I will tell you s

Re: [iText-questions] Stamping.

2005-06-26 Thread Gareth Edwards
multiple passes? Are you able to make multiple passes through a document without saving it as a pdf document and then re opening it using a the reader? PageEvents in coldfusion? Coldfusion doesn't support events. I'm not 100% with java but in coldfusion you cant attach a function to an event,

Re: [iText-questions] Stamping.

2005-06-24 Thread bruno
Gareth Edwards wrote: I would like to know if it is possible to write stuff to previous pages in PDF document while generating the report. Kinda need something like writer.getDirectContent(pagenumber); I'm aware of stamping a file that has already been created, and templates, That would be

[iText-questions] Stamping.

2005-06-23 Thread Gareth Edwards
I would like to know if it is possible to write stuff to previous pages in PDF document while generating the report. Kinda need something like writer.getDirectContent(pagenumber); I'm aware of stamping a file that has already been created, and templates, but I cant use page events to put in th

Re: [iText-questions] Stamping multiple times ...

2004-02-12 Thread Christer Sandberg
Christer Sandberg *Sent: * Thursday, February 12, 2004 12:25 *To:* [EMAIL PROTECTED] *Subject: * [iText-questions] Stamping multiple times ... Hi, maybe this is a silly question but I can't find the answer in the list. I wan't to have a PD

RE: [iText-questions] Stamping multiple times ...

2004-02-12 Thread Paulo Soares
Title: RE: [iText-questions] Stamping multiple times ... You must do it in two steps: - read the template and populate it to memory - read the memory and add it to PdfCopy You can use the constructor PdfReader(PdfReader) to read the template from disk only once. Best Regards, Paulo

[iText-questions] Stamping multiple times ...

2004-02-12 Thread Christer Sandberg
Hi, maybe this is a silly question but I can't find the answer in the list. I wan't to have a PDF as a template and apply some text to it much like PDFStamper but I need to do it multiple times in one batch (i.e. have the result as several pages), only the text will differ between the pages the

RE: [iText-questions] Stamping with fixe coordonates

2003-10-31 Thread Paulo Soares
, October 30, 2003 21:41 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Stamping with fixe coordonates > > Hi, > > After I generate a PDF document from a concatenation of static PDFs and > dynamic PDFs (created with FOP), > I am stamping text on each page of th

[iText-questions] Stamping with fixe coordonates

2003-10-31 Thread Nadeau, Isabelle
Title: Stamping with fixe coordonates Hi, After I generate a PDF document from a concatenation of static PDFs and dynamic PDFs (created with FOP), I am stamping text on each page of this document (page numbers, always requesting the same X,Y coordinates. Unfortunatly, the position where