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: Sent: Wednesday, August 03, 2005 8:56 PM Subject: [iText-questions] PDF Bookmark Issue > > Sorry if this is previously covered, but

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: Sent: We

[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: Inva

[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 PdfStamper.setFormFlattening(

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

2005-08-03 Thread Leonard Rosenthol
At 12:45 PM 8/3/2005, Francisco Carvalho wrote: Can you point me in any direction? Assuming you want a Java library, try either JPEDAL or Multivalent. 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 -

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

[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 pre

[iText-questions] Extract images from a PDF

2005-08-03 Thread Francisco Carvalho
Hi, Is it possible to extract images from a PDF and save them as JGP? - thx --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and

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

2005-08-03 Thread Paulo Soares
Signatures must be done one at a time, that's the way PDFs work. Do the next signatures in append mode (as you did in your code). You can have external signatures or even a full external PKCS#7, see the examples. - Original Message - From: "Juan Sanchez" <[EMAIL PROTECTED]> To: <[EMAIL PR

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

2005-08-03 Thread Paulo Soares
for (int k = 1; k <= reader.getNumberOfPages(); ++k) { PdfContentByte under = stamp.getUnderContent(k); under.addImage(img); } - Original Message - From: "Krishna Kishore .J" <[EMAIL PROTECTED]> To: Sent: Wednesday, August 03, 2005 2:32 PM Subject: [iText-questions] Adding an Ima

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: Sent: Wednesday, August 03, 2005 3:35 PM Subject: [iText-questions] Inserting one page in an existing pdf.

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: Sent: Wednesday, August 03, 2005 3:23 PM Subject: [iText-questions] Large Document very slow Hi, This is my first post here, what i m going to ask may have

[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 e-Ma

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] 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 si

[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);

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] 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] 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 withou

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: Sent: Wednesday, August 03, 2005 9:16 AM Subject: [iText-questions] Merging several PDF-Documents into one PDF document > > > Hello, > > is it possible to merge (copy) several

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: Sent: Wednesday, August 03, 2005 9:38 AM Subject: [iText-questions] Add signatures in a existing

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 PdfStamper.getUnder

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 e

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: Sent: Wednesday, August 03, 2005 8:47 AM Subject: [iText-questions] large image problem Hi, my problem is the following: I have a picture in 72 dpi

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 automati

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

2005-08-03 Thread Juan Sanchez
Hi. I want to insert a signature in a blank signature created previously. Is there some example that it can help me ? Regards. _ Don't just search. Find. Check out the new MSN Search! http://search.msn.com/ ---

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 prov

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

2005-08-03 Thread
Hello, is it possible to merge (copy) several pdf documents into one pdf document? If so, can someone of you provide me a code sample? The problem is: we store a lot of pdf documents as Oracle Blobs in a database. The printer module of our software has to print all the stored pdf documents. Sin

[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 resul