[iText-questions] [SPAM] Encoding

2011-02-01 Thread dante
Halo! I have a german pdf with ä,ö...€. Iread the whole text form the pdf document: PdfReader reader = new PdfReader(path); byte[] myContent = reader.GetPageContent(1); How I can "translate" myContent to german language? Thanks for help! Dante D. -- View this message in context: http://it

Re: [iText-questions] How to create a digital signed pdf

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 23:10, Jiangpeng Shi schreef: Dear all, I am working on a web application project which is used to create pdf document. I need to create pdf document with digital signature, Start by reading this presentation: http://www.slideshare.net/blowagie/pdf-digital-signatures which means

[iText-questions] How to create a digital signed pdf

2011-02-01 Thread Jiangpeng Shi
Dear all, I am working on a web application project which is used to create pdf document. I need to create pdf document with digital signature, which means by a button click, I should get a signed pdf, instead of doing that under acrobat. I did some pdf generation before but never work on digi

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 17:23, Leonard Rosenthol schreef: As Bruno said, you need to identify the Hebrew as being RTL inside the PDF so that Acrobat knows to use RTL-based reflow. Be sure to set the document’s language, tag the text accordingly, etc. as defined in the PDF Standard (ISO 32000). So t

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread Leonard Rosenthol
As Bruno said, you need to identify the Hebrew as being RTL inside the PDF so that Acrobat knows to use RTL-based reflow. Be sure to set the document’s language, tag the text accordingly, etc. as defined in the PDF Standard (ISO 32000). Leonard From: top of the line [mailto:topoftheline...@h

Re: [iText-questions] Acro Fields

2011-02-01 Thread Leonard Rosenthol
And in the case where there is no explicitly defined tab order, then it's the order of the items in the Annots array on the page. From: 1T3XT BVBA [mailto:i...@1t3xt.info] Sent: Tuesday, February 01, 2011 7:05 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Acro Fields

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread top of the line
Hi I didn't mean for you to waste your time, all I aim for is make the right REFLOW for Hebrew. I checked the samples you gave. you can try too. they wont reflow. I checked the tags too. they don't contain any reflow action. all my software are in the RTL direction. if you would know PDF REFL

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 16:33, top of the line schreef: I didn't use itext yet. all the pdf reflow I created ended up not doing the correct direction for Hebrew. Your use of the word reflow is confusing. If you want to create a PDF from a text source in Hebrew, you need to tell the software that the run

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread top of the line
Hi Thanks for your reply. basically, its from scratch. I edit via MS word. I didn't use itext yet. all the pdf reflow I created ended up not doing the correct direction for Hebrew. when I select (adobe reader) view-zoom-reflow, I have the reflow, but, when zooming the text folds down from the

Re: [iText-questions] PDF REFLOW

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 15:32, top of the line schreef: Hi I would like to know if itext support Real PDF Reflow with Hebrew support. What do you mean by "reflow"? Are we talking about existing PDFs? Or are we talking about PDFs created from scratch? If we're talking about PDFs created from scratch: isn't

Re: [iText-questions] Acro Fields

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 12:21, John Renfrew schreef: I have an Acro form from which I have successfully extracted the field names using the book examples, except they are being returned NOT in the order they are on the page nor the tab order. Nor is it in reverse order as the example in the book.. Is

Re: [iText-questions] file attachment annotatoins description

2011-02-01 Thread Paulo Soares
PdfAnnotation.CreateFileAttachment(). The parameter 'content' has the description. Paulo From: a.de...@steigauf.de [mailto:a.de...@steigauf.de] Sent: Monday, January 31, 2011 7:46 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] file attach

Re: [iText-questions] Reading value from DB

2011-02-01 Thread 1T3XT BVBA
Op 1/02/2011 14:38, karthick schreef: > I already have a pdf and I want to get a pdf from db blob column and attach > to the existing one. I have a concat method that would produce both the docs > (from list of input stream) as a single pdf. As said before: don't just add the bytes of PDF2 to the b

[iText-questions] PDF REFLOW

2011-02-01 Thread top of the line
Hi I would like to know if itext support Real PDF Reflow with Hebrew support. thanks avi-- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even be

Re: [iText-questions] Reading value from DB

2011-02-01 Thread karthick
I already have a pdf and I want to get a pdf from db blob column and attach to the existing one. I have a concat method that would produce both the docs (from list of input stream) as a single pdf. -- View this message in context: http://itext-general.2136553.n4.nabble.com/Reading-value-from-DB-

[iText-questions] Acro Fields

2011-02-01 Thread John Renfrew
I have an Acro form from which I have successfully extracted the field names using the book examples, except they are being returned NOT in the order they are on the page nor the tab order. Nor is it in reverse order as the example in the book.. Is there something I need to achieve this?? A