[iText-questions] iText encryption keys

2007-07-17 Thread Manoj
Dear All, Currently iText uses its own standard key to encrypt the pdf files. I would like to know if this can be replaced by our own keys. Thanks in advance. -- Regards, Manoj - This SF.net email is sponsored by DB2 Expres

[iText-questions] Re :Re: Bookmark

2007-07-17 Thread Animesh Mondal
On Tue, 17 Jul 2007 18:23:56 +0200 Post all your questions about iText here wroteAnimesh Mondal wrote:> Hi,> I\'m trying two concatenate some pdf files into a single file and trying > to create a bookmark to the section of each(constituent) pdf\'s starting > portion. The source pdfs have no boo

[iText-questions] Adding monochrome image as gray

2007-07-17 Thread Allen Ziegenfus
We are looking at moving a bunch printing code from Postscript to PDF. We have a large set of monochrome CCITT TIFF images that are used on various documents. Some of these images need to be screened to appear gray. In Postscript I was able to accomplish this by adding a Decode to the image attribu

[iText-questions] Problem in creating pdf file

2007-07-17 Thread Kuchadi, Srinivas
Hi, I created one html form and converting into pdf file using ITEXT-1.3 library. When I uploaded par file into QA system its generating pdf file perfectly. But Same par file uploaded into production system its generating pdf file without any content. When we refresh IT displaying all the content

Re: [iText-questions] Newbie help: adding "line" numbers

2007-07-17 Thread Bruno Lowagie
Richard Michael wrote: >> If the pages all have the same size, >> and the extra content you're adding looks >> exactly the same for each page, you might >> want to create the 'line numbers' as a >> separate PDF (with Acrobat or iText or...), >> then superimpose this PDF on the existing PDF. > > Th

Re: [iText-questions] onCloseDocument with itextsharp

2007-07-17 Thread Bruno Lowagie
Satyajeet Hattangadi wrote: > Could some one please provide me a code snippet that will display a > javascript alert when the document is closed. Search for "AdditionalAction" and PdfWriter.DOCUMENT_CLOSE. > Also im sure its possible to open the browser to a url of choice using > pdfstamper, bu

Re: [iText-questions] Bookmark

2007-07-17 Thread Bruno Lowagie
Animesh Mondal wrote: > Hi, > I'm trying two concatenate some pdf files into a single file and trying > to create a bookmark to the section of each(constituent) pdf's starting > portion. The source pdfs have no bookmark. I'm using PdfCopy writer > object. I used concat_pdf.java from iText tutori

Re: [iText-questions] error while compiling HelloWorld.java

2007-07-17 Thread Bruno Lowagie
The exception with message: > class file has wrong version 48.0, should be 47.0 is in contradiction with: > the java version on my unix machine is 1.4.2_05 You compiled (javac) your source code with a version that was newer than the JVM (java) used to execute it. So you made a mistake if you think

Re: [iText-questions] RC4 - RSA license restrictions to be applied ?

2007-07-17 Thread Bruno Lowagie
Martin Schwiesow wrote: > I would like to password protect existing PDF-Forms using itext + RC4, as RC4 > works with older versions of Acrobat. > I alraedy know how to do that, but reading that note in the PDF-Reference > book makes me wondering if i need a licence in order to do that? RC4 is (o

[iText-questions] onCloseDocument with itextsharp

2007-07-17 Thread Satyajeet Hattangadi
Hi, Im using itextsharp with vb.net. Could some one please provide me a code snippet that will display a javascript alert when the document is closed. I was able to use the pdfstamper to add javascript to display an alert when the document is opened. I'm trying to achieve the same when the do

[iText-questions] error while compiling HelloWorld.java

2007-07-17 Thread Milan Pandya
Hello, This question was posted before by me and thanks for replying it. I did manage to solve most of the issues. This is what I did, I downloaded the source files from svn repository. I performed "ant jar" and it build successfully. It created itext.jar and build folder inside which there is a

[iText-questions] RC4 - RSA license restrictions to be applied ?

2007-07-17 Thread Martin Schwiesow
Hi mailing-list readers, i have read the archives but could not find an answer to this question: In the PDF-Reference Third Edition version 1.4, First printing December 2001 on page 73, Section 3.5 "General Encryption Algorithm" can be found the following note: RC4 is a copyrighted, proprietary

Re: [iText-questions] Newbie help: adding "line" numbers

2007-07-17 Thread Richard Michael
> If the pages all have the same size, > and the extra content you're adding looks > exactly the same for each page, you might > want to create the 'line numbers' as a > separate PDF (with Acrobat or iText or...), > then superimpose this PDF on the existing PDF. Thanks. Will it be easy to constru

Re: [iText-questions] (no subject)

2007-07-17 Thread Leonard Rosenthol
In 2001, RC4 was still a "trade secret" and licenses were required. If you look at newer versions of the PDF Reference, no such statement exists as the algorithm became public knowledge. Leonard On Jul 17, 2007, at 8:01 AM, Martin Schwiesow wrote: > Hi mailing-list readers, > > i have read

[iText-questions] Bookmark

2007-07-17 Thread Animesh Mondal
Hi, I\'m trying two concatenate some pdf files into a single file and trying to create a bookmark to the section of each(constituent) pdf\'s starting portion. The source pdfs have no bookmark. I\'m using PdfCopy writer object. I used concat_pdf.java from iText tutorial. The files being concatena

[iText-questions] (no subject)

2007-07-17 Thread Martin Schwiesow
Hi mailing-list readers, i have read the archives but could not find an answer to this question: In the PDF-Reference Third Edition version 1.4, First printing December 2001 on page 73, Section 3.5 "General Encryption Algorithm" can be found the following note: RC4 is a copyrighted, proprietary

Re: [iText-questions] XFA PDF Document level javascript

2007-07-17 Thread Bruno Lowagie
Jon Radon wrote: > FYI - I was able to fix this by using the stamper.getWriter() function > and then using the returned writer to add an open action w/JavaScript. Thanks for sharing this solution with us. br, Bruno - This SF

Re: [iText-questions] Newbie help: adding "line" numbers

2007-07-17 Thread Bruno Lowagie
Richard Michael wrote: > Are there any suggestions to do this in a faster or easier way If the pages all have the same size, and the extra content you're adding looks exactly the same for each page, you might want to create the 'line numbers' as a separate PDF (with Acrobat or iText or...), then s

Re: [iText-questions] Populate forms that do not use Acro Fields

2007-07-17 Thread Bruno Lowagie
Michael Schierl wrote: > You > will need a tool to get coordinates for that, GSView (from > http://www.cs.wisc.edu/~ghost/) does the job well for me (it shows > coordinates of the mouse pointer in the status bar). I think there's an example on the JPedal site on how to add form fields to an existi

Re: [iText-questions] unable to compile itext source files

2007-07-17 Thread Bruno Lowagie
Milan Pandya wrote: > Hello, > I downloaded itext source files from the website. I extracted the files > in my home directory and it created a folder itext-src-2.0.4 > I had to rename the folder to src. This is all explained from A to Z on these pages: http://lowagie.com/iText/svn.html http://l

Re: [iText-questions] Re Get a Blank page after submit a form.

2007-07-17 Thread Bruno Lowagie
Arshak, Arshak wrote: > I get a blank page after I submit an AcroForm by using a submit button. Honestly, this is completely off topic here. You submit data, the server gets the data, then sends a response to the browser. It's up to you to decide what the response looks like. If you want the for

[iText-questions] Re Get a Blank page after submit a form.

2007-07-17 Thread Arshak, Arshak
Hi, I get a blank page after I submit an AcroForm by using a submit button. This occurs when the pdf is opened in a browser window (and not in standalone Acrobat Reader). The HTML POST action is carried out correctly, but then I get the blank page instead of the pdf document being re-displa