Re: [iText-questions] How?: Drawing typographers marks using Registration Black

2009-11-23 Thread George Bilalis
Excuse me for a rather vague question last time... The point is I am drawing registration marks using PdfContentByte and PdfStamper (overContent) on incoming original artwork in PDF form. This artwork needs some process like applying a clipping path e.tc. The problem comes from the fact this

Re: [iText-questions] How?: Drawing typographers marks using Registration Black

2009-11-23 Thread Leonard Rosenthol
How about the setColorFill() method that takes a PdfSpotColor object? Seems like that is what you want, where you construct the PdfSpotColor object with the name All? Yes? Took me about 2 minutes searching the online docs to find it... Leonard -Original Message- From: George

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread Gylfi Ingvason
Thanks Leonard. Since that is the case, I would suggest that the flatten form code in the PdfStamper be amended to take that into account. Paulo/Bruno would you agree? I'm not familiar with the code that does this, but I'd be happy to try to tackle it and submit the changes for review if that's

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread 1T3XT info
Gylfi Ingvason wrote: Thanks Leonard. Since that is the case, I would suggest that the flatten form code in the PdfStamper be amended to take that into account. Paulo/Bruno would you agree? I'm not familiar with the code that does this, but I'd be happy to try to tackle it and submit

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread Paulo Soares
I'm not sure if I understand all this. It's legal to have fields that only exist as widgets but don't have an entry in the field array in acroforms? The pdf reference says about the /Fields entry in acroforms: (Required) An array of references to the document's root fields (those with no

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread 1T3XT info
Gylfi Ingvason wrote: Thanks Leonard. Since that is the case, I would suggest that the flatten form code in the PdfStamper be amended to take that into account. Found it! But some changes are needed. The comments are in Dutch, and the code assumes that all the annotations in each page are

Re: [iText-questions] How to identify an Adobe Package from a PDF with an attachment?

2009-11-23 Thread Fake Name
Well yes I am replying to my own message. This is my first question, I am wondering if I need more information? Did I miss a page about how to outline a message? Maybe no one is getting my email? Or maybe this question doesn't fit into peoples knowledge base? Let me know thanks! On Thu, Nov 19,

[iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread jthom
We are trying to concatenate PDF pages generated dynamically, and show different data in each page. Each page should have its own unique set of 7 text fields. Using a sample 1 page pdf template, additional pages need to be generated dynamically under certain conditions. In our method logic, as

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread Gylfi Ingvason
Awesome! Thanks a lot Bruno - you guys are the best. Gylfi -Original Message- From: 1T3XT info [mailto:i...@1t3xt.info] Sent: Monday, November 23, 2009 10:06 AM To: Post all your questions about iText here Subject: Re: [iText-questions] AcroForm with empty Fields array Gylfi Ingvason

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread 1T3XT info
jthom wrote: In our method logic, as the rename field to the left of the last dot is not working, Of course not. The dots indicate there's a field hierarchy. If you want to rename a parent, rename the parent; don't rename the child! they are getting added to the wrong place ie. to page 1.

Re: [iText-questions] How to identify an Adobe Package from a PDF with an attachment?

2009-11-23 Thread 1T3XT info
Fake Name wrote: Well yes I am replying to my own message. This is my first question, I am wondering if I need more information? Did I miss a page about how to outline a message? Maybe no one is getting my email? Or maybe this question doesn't fit into peoples knowledge base? It's a

Re: [iText-questions] Decrypt PDF

2009-11-23 Thread Mirco Piccin
Hi all, So i need to decrypt these PDF. I follow chapter 3.3 suggest and also read this: http://1t3xt.info/examples/browse/?page=exampleid=42 but my PDFs, after that, are still encrypted. issue closed: maybe due to application server cache Thanks! Regards M

[iText-questions] [Trouble] A text was printed in twice using PdfPTable by page split.

2009-11-23 Thread Tatsuhiro Okada
Hello I have a trouble about PDF doc creation using PdfPTable object. Please give me adviece. [Summary] The last text line of a Paragraph in the last PdfPRow in the each page can be printed in twice by page split. [Sample] I show a sample code: public static void

Re: [iText-questions] AcroForm with empty Fields array

2009-11-23 Thread Leonard Rosenthol
A Widget annotation does NOT have be an AcroForm field - it can just be an annotation on the page. (granted, that would be strange and probably not very useful - but it's perfectly legal). Leonard -Original Message- From: Paulo Soares [mailto:psoa...@glintt.com] Sent: Monday,

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread jthom
This is my first time using iText: Could you give little more info in how the parent can be renamed? After creating new text fields for each single page, we are combining the pages together. There is only one page that is getting modified at a time, so 1 was passed to addAnnotation method.