Re: [iText-questions] Javadoc API

2011-07-12 Thread 1T3XT BVBA
On 12/07/2011 14:36, Tatkamon Iemaramsri wrote: Can I download the Javadoc API(core) to see this later(offline)? If I can.Where? How? Go to http://sourceforge.net/projects/itext/ and click the "Download iText 5.1.1" button. You'll get a ZIP containing the API docs in the form of a JAR. If you

[iText-questions] Rotate barcode

2011-07-12 Thread bobsyouruncle
Hello, I have a pdf template that I want to stamp with some data as well as a barcode. I generate the barcode and add it like: Image image = buildBarcode(getBarcode()); PdfContentByte content = stamper.getOverContent(1); image.setAbsolutePosition(600f, 1100f); content.addImage(image)

[iText-questions] Javadoc API

2011-07-12 Thread Tatkamon Iemaramsri
Can I download the Javadoc API(core) to see this later(offline)? If I can.Where? How? http://api.itextpdf.com/itext/index.html?overview-summary.html <-- AppSumo Presents a FREE Video for the SourceForge Community by Eri

Re: [iText-questions] Xfa signature

2011-07-12 Thread Leonard Rosenthol
>From the XFA spec: The presence of a manifest child further indicates that this is an MDP+ signature. I suspect that you are trying to use this signature field as a standard signature instead of an MDP+ signature. Just remove that setting. Leonard On 7/12/11 5:54 PM, "Emmanuel Coste"

Re: [iText-questions] Xfa signature

2011-07-12 Thread Emmanuel Coste
Here is my signature field:

Re: [iText-questions] Xfa signature

2011-07-12 Thread Leonard Rosenthol
Is the signature field defined as a file signature or a data signature? Did you create it? Do you have control over it? On 7/12/11 5:30 PM, "Emmanuel Coste" wrote: >I need to sign the entire PDF from an empty signature field contained in a >XFA form. > > > >-- >View this message in context:

Re: [iText-questions] Xfa signature

2011-07-12 Thread Emmanuel Coste
I need to sign the entire PDF from an empty signature field contained in a XFA form. -- View this message in context: http://itext-general.2136553.n4.nabble.com/Xfa-signature-tp2172306p3662622.html Sent from the iText - General mailing list archive at Nabble.com. -

Re: [iText-questions] Xfa signature

2011-07-12 Thread Leonard Rosenthol
Do you want to sign the entire PDF, using the methodology defined in ISO 32000-1 (and/or ETSI TS 102778) OR Do you want to sign the XFA only, using the methodology defined in the XFA specification? On 7/12/11 4:17 PM, "Emmanuel Coste" wrote: >Hello, > >Thanks for your help Balder. > >I am tr

Re: [iText-questions] Xfa signature

2011-07-12 Thread Emmanuel Coste
Hello, Thanks for your help Balder. I am trying again to explain the problem I encounter: I need to apply a PDF Signature to the XFA form itself: - when the PDF file is a static PDF, I get a VALID signature and I can see through acrobat Reader that everything is correct. - when the PDF file is a

Re: [iText-questions] Unable to read the new line char from the pdf file.

2011-07-12 Thread Balder
On 12/07/2011 15:06, Spandana V wrote: Thanks for your update but where can I read this book ? You can buy it: http://affiliate.manning.com/idevaffiliate.php?id=223_212 or view some chapters http://www.itextpdf.com/book/ where to download the chapter 6 ? On Tue, Jul 12, 2011 at 5:39 PM, 1T3X

Re: [iText-questions] Unable to read the new line char from the pdf file.

2011-07-12 Thread Spandana V
Thanks for your update but where can I read this book ? where to download the chapter 6 ? On Tue, Jul 12, 2011 at 5:39 PM, 1T3XT BVBA wrote: > On 12/07/2011 13:52, Spandana V wrote: > > Please let me know how to achieve it, if you know. Any help is greatly > > appreciated. > Either you didn't re

Re: [iText-questions] iText issue: text is invisible after calling fillRect() using transparent white color

2011-07-12 Thread 1T3XT BVBA
On 12/07/2011 12:13, Andrey Sapozhenko wrote: > Any thoughts? I don't know if using the alpha in the Color class is supported in Graphics2D. We've tried to implement as many Graphics2D methods as possible in PdfGraphics2D, but we don't claim we've implemented every possible aspect of it. This sh

Re: [iText-questions] rtf to pdf conversion problem

2011-07-12 Thread 1T3XT BVBA
On 11/07/2011 18:15, alex_2292 wrote: > I have used itext-rtf to convert an rtf file to pdf. That's no longer supported in iText. The classes you're mentioning have been removed two years ago. -- All of the data generated

Re: [iText-questions] BIRT pdf Report with digital signature

2011-07-12 Thread 1T3XT BVBA
On 12/07/2011 2:08, Greg wrote: > Just starting to understand and if I have it right I can accomplish > this by including the itext library in eclipse and adding java code in > the BIRT report. Oh and the 2nd edition of the iText book will get me > started. You can sign a PDF with iText and you can

Re: [iText-questions] Document Properties dialog

2011-07-12 Thread 1T3XT BVBA
On 12/07/2011 12:12, William Bell wrote: > 1. Can all of the settings on each of the 6 Tabs be retrieved within > iText? Whatever you want to retrieve, you can retrieve it with iText because iText gives you the low level functionality to inspect every object in the PDF file. > 2. If so, where c

Re: [iText-questions] Unable to read the new line char from the pdf file.

2011-07-12 Thread 1T3XT BVBA
On another note: you say you're unable to read the new line char from a PDF file. You're making the wrong assumption: you can't read the new line char, because it isn't there! Without seeing your sample PDF, I can tell you with 100% certainty that there's no new line char in the PDF after the (

Re: [iText-questions] Unable to read the new line char from the pdf file.

2011-07-12 Thread 1T3XT BVBA
On 12/07/2011 13:52, Spandana V wrote: > Please let me know how to achieve it, if you know. Any help is greatly > appreciated. Either you didn't read the book, or you stopped reading right before the part you needed. You're using an example that is shown on page 515, but you didn't read why you

[iText-questions] Unable to read the new line char from the pdf file.

2011-07-12 Thread Spandana V
Hi All, I am getting a text from the pdf using itext5.1.1.jar , using following source code : import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.

[iText-questions] iText issue: text is invisible after calling fillRect() using transparent white color

2011-07-12 Thread Andrey Sapozhenko
Hi, We have an issue with rendering text in PDF when using the specific sequence of Graphics2D methods. First, we are calling fillRect() using transparent white color, then createGraphics(), setClip() and draw the text within rectangle. The text is not visible in PDF. private static void drawG

Re: [iText-questions] Retrive flatten field with Itext

2011-07-12 Thread sudhakarnv
Hi Tom Can you a provide a sample code snippet to extract the text and parse to get a required field ? Thanks Sudhakar -- View this message in context: http://itext-general.2136553.n4.nabble.com/Retrive-flatten-field-with-Itext-tp3651314p3661871.html Sent from the iText - General mailing list