[iText-questions] PDF Flattening

2005-06-02 Thread Bill Sanders
I've written this application using Jython to take multiple TIFF's in a source directory and create a PDF document and then apply a TIFF as a watermark. The assembled PDF looks fine within Acrobat Pro, but when printing from Acrobat under Windows to a file, the message "Flattening" apears and caus

[iText-questions] Re: printing a pdf document

2005-06-02 Thread Carsten Hammer
David Graf wrote: Is it possible to print a pdf document directly from java using itext? I most of the time use a lpr client that is implemented in java. That way you can even adjust printer settings if your printer allows it. Of course not all printers allow to be feed with pdf but many m

Re: [iText-questions] Is it possible to deep lists in word

2005-06-02 Thread Mark Hall
On Thursday 02 June 2005 14:58, Chirdeep Sharma wrote: > This kind of list creation works in PDF but the same code does not work in > word. > Is there a way to create this kind of list in word using itext? No. The RtfWriter2 only supports bulleted lists and lists with arabic numbers. Greetings, Ma

[iText-questions] font file .lst

2005-06-02 Thread Franck JACOB
Hello, I have to embed font in my pdf, I have a font file named 'AdobeFnt.lst' ; is this file format supported by iText ? --- This SF.Net email is sponsored by Yahoo. Introducing Yahoo! Search Developer Network - Create apps using Yahoo!

Re: [iText-questions] font file .lst

2005-06-02 Thread Franck JACOB
yes, but font files associated with this list doesn't work... FontFactory.register("/fonts/GOTHIC.TTF"); Font font = FontFactory.getFont("Century Gothic", BaseFont.CP1252, BaseFont.EMBEDDED, 12); --> ok FontFactory.register("/fonts/Eurostile/._Eurostile"); Font font = FontFactory.getFont("Eur

RE: [iText-questions] font file .lst

2005-06-02 Thread Paulo Soares
You need files that end in .pfb, .ttf or .otf. > -Original Message- > From: Franck JACOB [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 02, 2005 4:01 PM > To: Paulo Soares; itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] font file .lst > > > yes, but font files

RE: [iText-questions] font file .lst

2005-06-02 Thread Paulo Soares
That's a list of Acrobat fonts, not a font. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Franck JACOB > Sent: Thursday, June 02, 2005 3:10 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] font file .lst > > > Hell

RE: [iText-questions] Custom Properties

2005-06-02 Thread Paulo Soares
That can be found in the info HashMap in the case of PdfReader and PdfStamper and in the Meta class in the case of PdfWriter. Those names live in same place as Producer or CreationDate. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]

[iText-questions] adding an image to a push button field

2005-06-02 Thread John . Sanda
I have looked at several similar posts, but I have been unable to add an image to a push button field. I have a PDF template with a push button field called labelField. I have been unsuccessful in several attempts at adding an image to the button. Here is latest code that I have tried: // start c

[iText-questions] Is it possible to deep lists in word

2005-06-02 Thread Chirdeep Sharma
This kind of list creation works in PDF but the same code does not work in word. 1.1 (Section number) A. 1. a. 2. B. 1. a. b. i. ii. 2. 1.2 (Section number). Is there a way to create this kind of list in word using

[iText-questions] Custom Properties

2005-06-02 Thread Roger Misteli
Hi My applicatioon would like to have access (reading and writing) to Adobe Acrobat's "Custom Properties" (that is, "Document Properties -> Custom tab -> Custom properties"). It looks like a hash map with key value pairs. Is it possible to read/write to and from these values? And to iterate them

[iText-questions] font file .lst

2005-06-02 Thread Franck JACOB
Hello, I have to embed font in my pdf, I have a font file named 'AdobeFnt.lst' ; is this file format supported by iText ? --- This SF.Net email is sponsored by Yahoo. Introducing Yahoo! Search Developer Network - Create apps using Yahoo!

Re: [iText-questions] Problem with mixing Portait and Landscape in PDF

2005-06-02 Thread Frank Peters
hi. Bruno Lowagie wrote: Frank Peters wrote: Hi. I came accross a problem mixing ortrait and landscape pages. Given a list of, let's call it MediaObjects. Each MediaObjects has an image-URL and an orientation-flag. I add these images to a document (first page of the document is portrait), each

[iText-questions] fonts are being embedded even though I don't want that.

2005-06-02 Thread David Thielen
Hi; I get the fonts for my PDF doc using: Font font = FontFactory.getFont(fontName, BaseFont.IDENTITY_H, false, fontSize, style); And when that doesn't work I do: Font font = FontFactory.getFont(fontName, BaseFont.CP1252, false, fontSize, style); But the fonts are embedded in the documen

Re: [iText-questions] Problem with mixing Portait and Landscape in PDF

2005-06-02 Thread Bruno Lowagie
Frank Peters wrote: Hi. I came accross a problem mixing ortrait and landscape pages. Given a list of, let's call it MediaObjects. Each MediaObjects has an image-URL and an orientation-flag. I add these images to a document (first page of the document is portrait), each one scaled to fit onto th

Re: [iText-questions] problem in merging rows

2005-06-02 Thread Bruno Lowagie
mungara kumar raja wrote: hi Sir/Madam, i am using itext1.1.jar to generate a pdf document. my requirement needs to merge 2 rows in a table.i could not find in api. You need something like the 'nested tables' example? http://itextdocs.lowagie.com/tutorial/objects/tables/index.html#addin

[iText-questions] problem in merging rows

2005-06-02 Thread mungara kumar raja
  hi Sir/Madam,   i am using itext1.1.jar to generate a pdf document. my requirement needs to merge 2 rows in a table.i could not find in api. please help me for this problem. if there is any solution pls reply ASAP. My problem looks some thing like this, considering below is the table. ___

[iText-questions] Problem with mixing Portait and Landscape in PDF

2005-06-02 Thread Frank Peters
Hi. I came accross a problem mixing ortrait and landscape pages. Given a list of, let's call it MediaObjects. Each MediaObjects has an image-URL and an orientation-flag. I add these images to a document (first page of the document is portrait), each one scaled to fit onto the page, like: for (I

Re: [iText-questions] It is posible to create a pdf using ms word text?

2005-06-02 Thread bruno
Lorenzo Jiménez wrote: Hi. I have another question. In my web application I have to create a pdf with a) ms word content b) tables generated from a database and displayed in a webpage. Can I add them using IText? a) No, iText doesn't know about the MS Word format b) You mean HTML Tables?

Re: [iText-questions] Graphics2D, JFreeChart and fonts

2005-06-02 Thread Bruno Lowagie
Adriaan Joubert wrote: Hi, I've managed to solve this. For others that have the same problem: JFreeChart has a workaround for a Java bug, and there is a flag to switch this workaround off: org.jfree.text.TextUtilities.setUseDrawRotatedStringWorkaround(false); and then all the text is tr

Re: [iText-questions] how to embed some text in an existing pdf

2005-06-02 Thread Bruno Lowagie
nitesh wrote: Hi, I have a pdf which is not created using itext. Now I want to add some text on page number 2 of this pdf. Can any one help on how to add this ? Use PdfStamper: http://itextdocs.lowagie.com/tutorial/general/copystamp/index.html#pdfstamper br, Bruno ---

[iText-questions] how to embed some text in an existing pdf

2005-06-02 Thread nitesh
Hi, I have a pdf which is not created using itext. Now I want to add some text on page number 2 of this pdf. Can any one help on how to add this ? Any kind of help would be great !! Best Regards, Nitesh --- This SF.Net email is sponsored by

Re: [iText-questions] Graphics2D, JFreeChart and fonts

2005-06-02 Thread Adriaan Joubert
Hi, I've managed to solve this. For others that have the same problem: JFreeChart has a workaround for a Java bug, and there is a flag to switch this workaround off: org.jfree.text.TextUtilities.setUseDrawRotatedStringWorkaround(false); and then all the text is translated correctly by iTe