RE: [iText-questions] pdf signature, linux problem

2005-10-20 Thread Miguel Domínguez Matos
If this can be usefull for somebody i have solved my problem. I only did an upgrade of jdk and now it works. Maybe your linux jdk doesn't have a decent crypto provider. Use the bouncycastle crypto provider. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: RE : [iText-questions] Turkish Charset problem

2005-10-20 Thread Paulo Soares
Last time I looked cour.ttf has all the Turkish characters, at least the font that comes with windows xp. -Original Message- From: Philippe Couas [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 10:31 AM To: Paulo Soares Subject: RE : [iText-questions] Turkish Charset

[iText-questions] disabling watermark on certain pages

2005-10-20 Thread S G
i'm extending PdfPageEventHelper (as per online example) to display watermarks. is there a way to disable watermarks for certain pages. looks like writer.setPageEvent(watermark); has to be called before the document opens and cannot be set to null for some pages. --- is there way to mark

Re: [iText-questions] Editing PDF Content in Browser

2005-10-20 Thread Leonard Rosenthol
At 01:41 AM 10/20/2005, kapil dhakad wrote: 1. We have to generate N number of documents, so Administrator should have facility to create new templates which will contain static data + dynamic data (from database). OK. So you need to choose a template format that is flexible

[iText-questions] XML Tutorial

2005-10-20 Thread Fireball29
Hi! When will the XML Tutorial (http://itextdocs.lowagie.com/tutorial/#part9) be available? Best regards, Fireball

RE: [iText-questions] New release itext-paulo-155

2005-10-20 Thread Paulo Soares
Just a minor correction to the history file: HTMLWorker doesn't support images. I have support for that and a few other things done in C# but it's not yet published anywhere. Paulo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie

Re: [iText-questions] XML Tutorial

2005-10-20 Thread Bruno Lowagie
Fireball29 wrote: Hi! When will the XML Tutorial (http://itextdocs.lowagie.com/tutorial/#part9) be available? There will be stuff on XML in the book 'iText in Action'. While I am writing this book, the tutorial is 'on hold'. br, Bruno

Re: [iText-questions] New release itext-paulo-155

2005-10-20 Thread Bruno Lowagie
Paulo Soares wrote: Just a minor correction to the history file: HTMLWorker doesn't support images. I have support for that and a few other things done in C# but it's not yet published anywhere. OK, the history file is updated. br, Bruno

[iText-questions] Help needed with iTextSharp

2005-10-20 Thread anees . ansari
Hi We are working on a vb.net Windows based project. Within that we have many PDF templates provided by Central Server. We have to fetch the details from the local DB and write to its corresponding position in PDF template. Hence prepared Reports in the PDF form. and open these report using

Re: [iText-questions] XML Tutorial

2005-10-20 Thread Francisco Carvalho
What's the book release date and publisher? Bruno Lowagie [EMAIL PROTECTED] 10/20/05 7:09 AM Fireball29 wrote: Hi! When will the XML Tutorial (http://itextdocs.lowagie.com/tutorial/#part9) be available? There will be stuff on XML in the book 'iText in Action'. While I am writing this

Re: [iText-questions] XML Tutorial

2005-10-20 Thread Bruno Lowagie
Francisco Carvalho wrote: What's the book release date Probably next summer; see http://www.lowagie.com/ and publisher? http://www.manning.com/ br, Bruno --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free

Re: [iText-questions] Help needed with iTextSharp

2005-10-20 Thread Paulo Soares
Have a look at PdfStamper with flattening if you use fields and PdfCopy. - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, October 20, 2005 3:21 PM Subject: [iText-questions] Help needed with iTextSharp Hi We are working on a

[iText-questions] Re: Invitation to 1/3 review of new iText manuscript

2005-10-20 Thread Mark Hall
Hi Karen, yes, I that would be ok for me. Greetings, Mark On Thursday 20 October 2005 20:27, Karen Tegtmeyer wrote: Mark, As for a time frame - it will be available tomorrow and have a due date of 10/31. (So you have two weekends.) This is the first review, so is approximately 5-6

[iText-questions] adding non-strings to a document

2005-10-20 Thread AJ P
I cannot get anything to add to a document except strings. What is the method to add integers or other data types to a document? __ Yahoo! FareChase: Search multiple travel sites in one click. http://farechase.yahoo.com

[iText-questions] Memory and Concatenating PDFs

2005-10-20 Thread Jason Frank
I've done some searching through this mailing list so I think I know the answer to this question, but I'd like to verify it because it's not totally clear to me and it will make a big difference as to whether I think I can use iText or not. Suppose I am generating a large report (e.g. 3000

RE: [iText-questions] Characters shift up and down in edtiable multi-line textbox

2005-10-20 Thread Alan Zhang
I tried to use afFormFields.SetExtraMargin(1,1); did not see any visual effects either on this problem, or any shift for other textboxes, either multi-line or single line one. Looks like it has absolutely no effects. I change the margin to 10, 100,1000,1. thanks Paulo Soares

[iText-questions] Problem with signing PDF

2005-10-20 Thread Rafael Carvallo
Hello, I'm signing the documents generated following the first example from the How To in http://itextpdf.sourceforge.net/howtosign.html The problem appears when we try to verify the signature in Acrobat Reader, it appears as unknown. We are using a certificate from Verisign, but it's

Re: [iText-questions] Characters shift up and down in edtiable multi-line textbox

2005-10-20 Thread Paulo Soares
afFormFields.SetExtraMargin(10,10); afFormFields.SetField(..., ...); If you don't call SetField() nothing happens. - Original Message - From: Alan Zhang [EMAIL PROTECTED] To: Paulo Soares [EMAIL PROTECTED]; itext-questions@lists.sourceforge.net Sent: Thursday, October 20, 2005 10:59 PM

Re: [iText-questions] Memory and Concatenating PDFs

2005-10-20 Thread Paulo Soares
Only the xref and the references to the page tree are kept in memory. You'll have to call gc before checking memory if you want to get meaningful readings. - Original Message - From: Jason Frank [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, October 20, 2005

Re: [iText-questions] adding non-strings to a document

2005-10-20 Thread Paulo Soares
Convert all to a string, with toString(), for example. - Original Message - From: AJ P [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, October 20, 2005 10:31 PM Subject: [iText-questions] adding non-strings to a document I cannot get anything to add to a

Re: RE : [iText-questions] Turkish Charset problem

2005-10-20 Thread Paulo Soares
An URL will do just fine to get a font. - Original Message - From: Philippe Couas [EMAIL PROTECTED] To: 'Paulo Soares' [EMAIL PROTECTED] Sent: Thursday, October 20, 2005 8:36 PM Subject: RE : RE : [iText-questions] Turkish Charset problem Hi, Just an simple question, It seems

Re: [iText-questions] Problem with signing PDF

2005-10-20 Thread Paulo Soares
Include the full certificate chain. If you are exporting it from windows make sure the box to export the full certificate chain is checked. - Original Message - From: Rafael Carvallo [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, October 20, 2005 11:22 PM