[iText-questions] Dynamic PDF forms

2013-07-30 Thread Jordan Thurston
Hi There, I’m currently working on a Wordpress Plugin that takes Names from a database and adds them to a footer along with a company logo to an existing PDF file. My current work is completely successful, except when i tried to stamp a PDF that had Dynamic text form fields incorporated into

Re: [iText-questions] Dynamic PDF forms

2013-07-30 Thread 1T3XT BVBA
On 30/07/2013 6:50, Jordan Thurston wrote: Hi There, I'm currently working on a Wordpress Plugin that takes Names from a database and adds them to a footer along with a company logo to an existing PDF file. My current work is completely successful, except when i tried to stamp a PDF that had

Re: [iText-questions] Dynamic PDF forms

2013-07-30 Thread TvT
2013/7/30 Jordan Thurston jordan.thurs...@esiss.com.au Dynamic text form fields incorporated into it. It depends how you define 'dynamic' There are two different form field technologies out there: 1. AcroForms 2. XFA Which one do you use?

Re: [iText-questions] Dynamic PDF forms

2013-07-30 Thread 1T3XT BVBA
On 30/07/2013 9:35, TvT wrote: It depends how you define 'dynamic' There are two different form field technologies out there: 1. AcroForms 2. XFA Which one do you use? Good question. I always assume people asking questions understand the question they're asking. Double checking if by

[iText-questions] [Some questions about text in PDF]

2013-07-30 Thread Ke Xu
Hi guys: I meet a problem when i try to extract CJK(Chinese, Japanese, Korean)text from PDF. Maybe you have already known what i'm gonna ask.That is, why some CJK text can't be extracted. But could someone tell me: 1) Why adobe reader can display it normally? 2) If i want to extract ALL

Re: [iText-questions] [Some questions about text in PDF]

2013-07-30 Thread Paulo Soares
First, check if Acrobat can extract the text. If it can and iText can't please post the PDF. We'll talk after that. Paulo On Tue, Jul 30, 2013 at 2:05 PM, Ke Xu xu059...@gmail.com wrote: Hi guys: I meet a problem when i try to extract CJK(Chinese, Japanese, Korean)text from PDF. Maybe

Re: [iText-questions] [Some questions about text in PDF]

2013-07-30 Thread Ke Xu
I got it. sorry to bother you, may be i should post my questions on adobe's forum, but thank you anyway. 2013/7/30 Paulo Soares pgpsoa...@gmail.com First, check if Acrobat can extract the text. If it can and iText can't please post the PDF. We'll talk after that. Paulo On Tue, Jul 30, 2013

[iText-questions] How can we extract XML Tree as shown in XFA Demo example?

2013-07-30 Thread nakul manchanda
I wanted to build a XML Tree? What is the best way to do this in Itext. I am thinking on following lines: AcroFields form = pdfReader.AcroFields; foreach (KeyValuePairstring, AcroFields.Item de in form.Fields) { trace(de.Key.ToString()); } It gives me string like -

Re: [iText-questions] How can we extract XML Tree as shown in XFA Demo example?

2013-07-30 Thread 1T3XT BVBA
On 30/07/2013 17:48, nakul manchanda wrote: I wanted to build a XML Tree? What is the best way to do this in Itext. I am thinking on following lines: AcroFields form = pdfReader.AcroFields; foreach (KeyValuePairstring, AcroFields.Item de in form.Fields) { trace(de.Key.ToString());