[iText-questions] Adding empty signatures to a table

2010-05-21 Thread QuietRiot
Hi, I'm struggling with this and haven't been able to find an answer online anywhere. I want to add blank signature fields to a table. I know how to create a blank signature like this: PdfFormField field = PdfFormField.createSignature(writer); field.setWidget(new Rectangle(72, 732, 144, 780), P

Re: [iText-questions] Document rotates while merging

2010-05-21 Thread Mark Storer
It's fairly easy to "cheat" with AffineTransform. AffineTransform trans = AffineTransform.getRotateInstance( // I think the 360 - rot is right... not entirely sure Math.toRadians(360 - pagesRotation) ); double matrix[] = double[6]; trans.getMatrix(matrix); content.concatCTM( (float)matrix[0],

Re: [iText-questions] Document rotates while merging

2010-05-21 Thread Kevin Day
Common rotation matrices: 90 degree: 0 1 -1 0 0 180 degree: -1 0 0 -1 270 degree: 0 -1 1 0 0 for page importing, would be the page height and would be the page width. That should do it for you. Please post back the solution that finally works for you. - K -- View this message in cont

Re: [iText-questions] iText-questions Digest, Vol 48, Issue 66

2010-05-21 Thread Cameron Laird
On Fri, May 21, 2010 at 3:19 AM, Victor Badic wrote: > Thank you guys! > > You have been helpful. It's now clearer what my approach should be. > >... > Victor, a particularly meaningful way to show thanks might be to report back on your implementation, once you're successful, so that others m

Re: [iText-questions] [Book]

2010-05-21 Thread William K. Goodbody
Yes, please provide vb.net examplesÂ….. The new book is very helpful and VB.Net examples would be useful - Bill From: Paulo Soares [mailto:psoa...@glintt.com] Sent: Friday, May 21, 2010 10:04 AM To: Post all your questions about iText here Subject: Re: [iText-questions] [Book]

Re: [iText-questions] [Book]

2010-05-21 Thread Glen Hamel
As a C#, C++, C and Java coder, I find they are very close is language structure that it shouldnÂ’t be difficult to understand or convert between the different languages.. Glen Hamel Auric Networks Canada, Inc. 570 Orwell Street, Unit 1 Mississauga, Ontario L5A 3V7 Phone : 905.361.7621 x 204 Fa

Re: [iText-questions] [Book]

2010-05-21 Thread Bruno Lowagie
Zhang, Michelle Y wrote: > Dear Bruno, > > I have some questions about the IText in Action Version 2. > 1. I used to read the free iTextSharp tutorial online and now it's > gone. Will all contents in the tutorial be included in the iText in > Action? That tutorial was hopelessly outdated. T

Re: [iText-questions] [Book]

2010-05-21 Thread Paulo Soares
From: Zhang, Michelle Y [mailto:michelleyzh...@tycoelectronics.com] Sent: Friday, May 21, 2010 2:30 PM To: 'itext-questions@lists.sourceforge.net' Subject: [iText-questions] [Book] Dear Bruno, I have some questions about the IText in Action Version 2. 1. I used

[iText-questions] [Book]

2010-05-21 Thread Zhang, Michelle Y
Dear Bruno, I have some questions about the IText in Action Version 2. 1. I used to read the free iTextSharp tutorial online and now it's gone. Will all contents in the tutorial be included in the iText in Action? 2. I'm coding in C# and I do not know anything about Java. Will the iText in Ac

Re: [iText-questions] URGENT : PDF signature

2010-05-21 Thread 1T3XT info
Julien zitoune wrote: > So please could you help me, http://tinyurl.com/yadjoyo *LOL* Note that the word "URGENT" in your subject in combination with "I want to implement PDF signatures myself" is a "contradictio in terminis". -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http

Re: [iText-questions] URGENT : PDF signature

2010-05-21 Thread TvT
The following page should give you an overview: http://learn.adobe.com/wiki/display/security/Document+Library (especially the second document (Digital Signatures in PDF) should be of interest to you) ToM 2010/5/21 Julien zitoune > Hi, > > I'm new on your forum, I'm currently trying to sign a

Re: [iText-questions] iText 5.0.2 signature bug 2

2010-05-21 Thread Paulo Soares
Works for me. Can you post the PDF causing the exception? Paulo -Original Message- From: Vladimir A. Vorontsov [mailto:d0z...@gmail.com] Sent: Wednesday, May 19, 2010 1:39 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] iText 5.0.2 signature bug 2 Look at line 3

Re: [iText-questions] iText 5.0.2 signature bug

2010-05-21 Thread Paulo Soares
Thank you, it will be fixed. Paulo -Original Message- From: Vladimir A. Vorontsov [mailto:d0z...@gmail.com] Sent: Wednesday, May 19, 2010 1:00 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] iText 5.0.2 signature bug Hello, Look at line 2188 please: if (sub.eq

Re: [iText-questions] iText-questions Digest, Vol 48, Issue 66

2010-05-21 Thread Victor Badic
Thank you guys! You have been helpful. It's now clearer what my approach should be. Have a nice weekend! -- ___ iText-questions mailing list iText-questions@lists.sour

[iText-questions] URGENT : PDF signature

2010-05-21 Thread Julien zitoune
Hi, I'm new on your forum, I'm currently trying to sign a PDF file. I understood that iText library can be used for that but I would like to develop it by myself. I have tried to search documents explaining the principle of the PDF signature but my program does not sign correctly. So please

[iText-questions] Keep things together

2010-05-21 Thread NCS Novazzano
Hello, my task is to keep some things together when printing a PDF, in a recursive way (each child has to be kept with its parent). I have putted the text/images that should be kept together in a PdfPTable so that if there is not enough space in the current page the table is moved to a new one.