[iText-questions] MetaData

2006-08-02 Thread Zhi Ren
Hi, Using iText we can add metadata into a PDF file. How can we get metadata from a existing PDF file? Thanks! Zhi __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: [iText-questions] can iText create non-editable PDFs;

2006-08-02 Thread Leonard Rosenthol
At 05:06 PM 8/2/2006, Andrew S Moy wrote: >Can iText create PDFs that are not editable? I'm not talking about setting >the resulting file's attribute to read only. I'm talking about the file >shouldn't be editable even with a Acrobat Writer. Yes, you can apply security settings with iTe

[iText-questions] can iText create non-editable PDFs;

2006-08-02 Thread Andrew S Moy
Hi, Can iText create PDFs that are not editable? I'm not talking about setting the resulting file's attribute to read only. I'm talking about the file shouldn't be editable even with a Acrobat Writer. Thanks, Andy CONFIDENTIALITY NOTICE: This communication is confidential, may be privileged

[iText-questions] iText Bug

2006-08-02 Thread Ahmed Arafa
I m using iText "itext-1.4.jar" to generate PDF document, my application is working good over windows. I actually deploy my WAR file on both tomcat and websphere over windows environment when i change the OS environment to CentOS 3.7   java version "1.4.2" Java(TM) 2 Runtime Environment, Stand

Re: [iText-questions] Working with "large" PDF document

2006-08-02 Thread Paulo Soares
Did you call dispose()? Paulo - Original Message - From: "Panurgy" <[EMAIL PROTECTED]> To: Sent: Wednesday, August 02, 2006 9:19 PM Subject: [iText-questions] Working with "large" PDF document >I have an application that uses JGraph to display a "large" amount of > objects - 2000 cell

[iText-questions] Working with "large" PDF document

2006-08-02 Thread Panurgy
I have an application that uses JGraph to display a "large" amount of objects - 2000 cells with a background gradient, 500 lines connecting them, 2500 Strings/text, and about 5000 ImageIcons (16x16 in size). I'm able to paint the JGraph to a PdfGraphics and save it to a file, but Acrobat Reader 7.0

Re: [iText-questions] How to convert HTML into PDF?

2006-08-02 Thread Paul Littlefield
Interesting - though this does not consider any formatting.I don't know iText well enough yet to make recommendations, but there are lots of HTML to PDF converters out there - like PD4ML that will take HTML *and* CSS input to output a formatted PDF.-Paulporcupine <[EMAIL PROTECTED]> wrote

Re: [iText-questions] How to convert HTML into PDF?

2006-08-02 Thread porcupine
in java, something like this: FileReader fr = new FileReader("c:/HelloWorld.html"); ArrayList elementlist = HTMLWorker.parseToList(fr, null); for (int i = 0; i < elementlist.size(); i++) { Element element = (Element)elementlist.get(i); document.add(element); } -- View this message in co

[iText-questions] Acro Forms Autofill

2006-08-02 Thread Jason Harper
Hello,   I am trying to create a PDF report, and at the end add a text area that the user can enter comments into.  My problem is that Adobe keeps filling in the text box with whatever you wrote the last time.  I want to turn this option off so that the user gets a blank text box every time.  Is th

Re: [iText-questions] Stack overflow error using iText

2006-08-02 Thread Webber, David (NIH/OD) [C]
Paulo, OK - thanks for checking that out. We'll have to dig into our code some more then. Clearly it's looping for some reason - PdfDocument.add(PdfDocument) / Phrase.process(Phrase) / PdfDocument.add(PdfDocument) / PdfDocument.initPage(PdfDocument) / PdfDocument.newPage(PdfDocument) / PdfDocum

Re: [iText-questions] Stack overflow error using iText

2006-08-02 Thread Paulo Soares
Works for me. It's better to post standalone code to reproduce the problem rather than a code fragment. Paulo - Original Message - From: "Webber, David (NIH/OD) [C]" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Tuesday, August 01, 2006 4:43 PM Subject: [iTe

[iText-questions] How to convert HTML into PDF?

2006-08-02 Thread Satish
Hello,   I want to create a print friendly page. In order to do this I am planning to send HTML page seen on the browser to the PDF document. Is it possible to do this using Itext, if so how?   Thanks in advance Satish - Take S

[iText-questions] iText-question

2006-08-02 Thread Timo Biedenbender
Hello,   it would be great, if you can help me with the following iText-question.   I want to use iText to generate a pdf-file. It works very good and is simple to use, but i have a problem with tables.   The tables should be generated dynamically. They can have different number of columns

Re: [iText-questions] Web and back/forward buttons

2006-08-02 Thread Webber, David (NIH/OD) [C]
Use javascript event onbutton(back) to trap the action and prevent the standard browser action and instead do a direct action http://homepageaddress/page/# re-direction? From: VLAHANDREAS Dawn J [mailto:[EMAIL PROTECTED] Sent: Tue 8/1/2006 7:33 PM To: itext-

Re: [iText-questions] Changes made in iText 1.4.2 --> Certified PDFs

2006-08-02 Thread bruno
Leonard Rosenthol wrote: > At 11:20 AM 8/1/2006, M.-Leander Reimer wrote: > >> - “Added support for certified PDFs (contributed by Antonio Iacono)” > > > This should say Certified Documents, not Certified PDFs. Thanks, I changed it on the site. br, Bruno -

Re: [iText-questions] Web and back/forward buttons

2006-08-02 Thread bruno
VLAHANDREAS Dawn J wrote: >Has anyone come across this before? > I have had the same problem with J2EE web applications that weren't designed very well. There is no standard answer to this. br, Bruno - Take Surveys. Earn Cash

Re: [iText-questions] PDF Form

2006-08-02 Thread bruno
[EMAIL PROTECTED] wrote: > Hi, > > > > I need to create an editable PDF Form > OK, that's possible with iText. http://itext.ugent.be/library/question.php?id=31 http://itextdocs.lowagie.com/tutorial/forms/ http://itextdocs.lowagie.com/tutorial/forms/create/ > that people can save on their local

[iText-questions] PDF Form

2006-08-02 Thread richard.king
Hi,   I need to create an editable PDF Form that people can save on their local drive.  I read in the project description that iText is great for read only PDF’s, but I have also read that it can be used for creating AcroForms.  Does this mean that it can be used for creating writeable PD