Re: [iText-questions] We are using itext-0.52.jar

2005-08-03 Thread Bruno Lowagie
satish babu wrote: Thanking u sir, Thanking u very much.. for u r idea.. http://sourceforge.net/project/showfiles.php?group_id=15255package_id=12596 link is only giving 0.87 and next versions.. it is giving some table alinment, color problems arising from which developed using 0.52. That's a

[iText-questions] large image problem

2005-08-03 Thread Alex Greif
Hi, my problem is the following: I have a picture in 72 dpi (width=2560px height=1920px) and want to create a scaled result that is larger than the original image and uses interpollation. the original image has a width/height ratio of 4/3, and the PDF document should have the same size as the

Re: [iText-questions] Merging several PDF-Documents into one PDF document

2005-08-03 Thread Alex Greif
Hi, look for the Concatenate samples on the tutorial page http://itextdocs.lowagie.com/tutorial/ cheers, Alex. On 8/3/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, is it possible to merge (copy) several pdf documents into one pdf document? If so, can someone of you provide me a

Re: [iText-questions] Re: Eliminating white space in a table

2005-08-03 Thread Philip Newton
On 8/1/05, Todd Huhman [EMAIL PROTECTED] wrote: I can get it to work at a Phrase level, but I don't want to have to set it for every phrase. Is there a way to get it to work for the entire table? What I did in a similar case was make a subclass -- in my case of PdfPCell (that would

Re: [iText-questions] large image problem

2005-08-03 Thread Paulo Soares
The maximum page size is 14400x14400. This is a PDF implementation limit. - Original Message - From: Alex Greif [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 8:47 AM Subject: [iText-questions] large image problem Hi, my problem is the

Re: [iText-questions] html to pdf

2005-08-03 Thread THOMAS Alexandre
thanks bruno Is there any tutorial, simple example of something for that? Did anybody try to program something like that ? alex Selon Bruno Lowagie [EMAIL PROTECTED]: THOMAS Alexandre wrote: dear user of iText I'm trying to convert a html to pdf document. I've try a simple example at

Re: [iText-questions] Problems copying artwork, form fields, and images

2005-08-03 Thread Paulo Soares
Start by looking at the example stamped.java at http://itextpdf.sf.net. The general idea is: - to get an external PDF page: PdfStamper.getWriter().getImportedPage(reader, page) - to place the objects (page, image, etc) you need a PdfContentByte: PdfStamper.getOverContent() or

Re: [iText-questions] Add signatures in a existing blank signature

2005-08-03 Thread Paulo Soares
See http://itextpdf.sf.net/howtosign.html. To sign an existing field use PdfSignaturaAppearance.setVisibleSignature(String). - Original Message - From: Juan Sanchez [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 9:38 AM Subject:

Re: [iText-questions] Merging several PDF-Documents into one PDF document

2005-08-03 Thread Paulo Soares
The concat_pdf.java in the tools package will do the trick. - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 9:16 AM Subject: [iText-questions] Merging several PDF-Documents into one PDF document Hello, is it

Re: [iText-questions] Add signatures in a existing blank signature

2005-08-03 Thread Juan Sanchez
Hi Paulo. Thanks. In this samples when is used the stp.getSignatureAppearance(); I supose that is a new signature. But if a blank signature exist previously how can I put the value of signature in the blank signature. In the PDF reference the blank signature is present in a sig object

[iText-questions] iText

2005-08-03 Thread Karen Vardanyan
Whether it is possible to add a List to the Table, or not?If it is possible ,please answer, how.

Re: [iText-questions] html to pdf

2005-08-03 Thread Hans-Werner Hilse
Hi, On Wed, 03 Aug 2005 11:46:02 +0200 THOMAS Alexandre [EMAIL PROTECTED] wrote: Is there any tutorial, simple example of something for that? Did anybody try to program something like that ? I recently had a conversation about this on the Gentoo Linux mailing lists. There are two things I

[iText-questions] Adding an Image on all pages in the pdf

2005-08-03 Thread Krishna Kishore .J
Hi All, Is there a way to add an image on all the pages in a pdf. I have a pdf with 3 pages as input. I need to read this pdf then populate the form fields and then put an image on all the three pages. I am using the following code: File fImg = new File(filePath);

[iText-questions] Large Document very slow

2005-08-03 Thread Eryan Yu
Hi, This is my first post here, what i m going to ask may have been asked before, but the mail achieve search system doesn't quite work here. i m using the code to generate a report, with font size 8. if the report is about 50 pages, iText can give me the file with 4-7 sec, but if i double the

Re: [iText-questions] Add signatures in a existing blank signature

2005-08-03 Thread Juan Sanchez
Hi Paulo. After execute the next code , in the pdf document (that contain 3 blank signatures) only appear 1 signed and the others continue empties. What is the problem ? is it necessary to close document everytime ? PdfReader reader = new PdfReader(blank_3.pdf);

[iText-questions] Inserting one page in an existing pdf. But how?

2005-08-03 Thread Stefan . Gritzbach
Hello, I'm facing the problem that I want to insert one page of a pdf in another pdf, not at the end of the document but in the middle. My attempts don't work. Does anybody have an idea and can give me a code example? Thx. Stefan Bitte beachten Sie auch unsere Sicherheitshinweise zum Thema

Re: [iText-questions] Large Document very slow

2005-08-03 Thread Paulo Soares
Place a line at a time. Big Paragraphs in Document.add() are slow. - Original Message - From: Eryan Yu [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 3:23 PM Subject: [iText-questions] Large Document very slow Hi, This is my first post

Re: [iText-questions] Inserting one page in an existing pdf. But how?

2005-08-03 Thread Paulo Soares
See the example concat_pdf.java in the tools package. Add pages from doc1, add page from doc2, add the remaining pages from doc1. - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 3:35 PM Subject: [iText-questions]

[iText-questions] Downloading the tutorial

2005-08-03 Thread Dovlecel Alexandru Ovidiu
Title: Downloading the tutorial Hi all, I am planning to use iText, and it would be extremely helpful if I can download the tutorial. (the one located at http://itextdocs.lowagie.com/tutorial/ ). Or build it somehow (I have seen a build.xml file, but it points to a directory that is not

Re: [iText-questions] Extract images from a PDF

2005-08-03 Thread Leonard Rosenthol
At 12:16 PM 8/3/2005, Francisco Carvalho wrote: Is it possible to extract images from a PDF and save them as JGP? - thx Yes, but not with iText. Leonard --- Leonard Rosenthol

Re: [iText-questions] Extract images from a PDF

2005-08-03 Thread Francisco Carvalho
Can you point me in any direction? Leonard Rosenthol [EMAIL PROTECTED] 08/03/05 9:44 AM At 12:16 PM 8/3/2005, Francisco Carvalho wrote: Is it possible to extract images from a PDF and save them as JGP? - thx Yes, but not with iText. Leonard

[iText-questions] Merging Pages erase fields

2005-08-03 Thread Rafael Afonso
Hello: I have a PDF template with one page. I want generate many pages from this template and save them in a only file, joining them. If I do PdfStamper.setFormFlattening(true) (Fields are NOT editable in final file) when I fill template it is all OK. But if I do

[iText-questions] PDF Bookmark Issue

2005-08-03 Thread jglucky
Sorry if this is previously covered, but when I try to search the mailing list archives I get an error that /search.php can not be found. I am getting the following error when I try to add a bookmark to an existing PDF document. Exception in thread main java.lang.IllegalArgumentException:

Re: [iText-questions] Merging Pages erase fields

2005-08-03 Thread Paulo Soares
This is one of those questions asked without thinking. You can use PdfCopyFields to keep the fields but unless you rename the fields they will echo each other of the same name. Are you sure this is what you want? - Original Message - From: Rafael Afonso [EMAIL PROTECTED] To:

Re: [iText-questions] PDF Bookmark Issue

2005-08-03 Thread Paulo Soares
You can't use PdfOutline with PdfCopy, everything must be done on what's returned from SimpleBookmark. - Original Message - From: [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Wednesday, August 03, 2005 8:56 PM Subject: [iText-questions] PDF Bookmark Issue Sorry