[iText-questions] pdf attachment problem

2004-12-29 Thread swami
how can I attach a pdf document that is dynamically generated in a jsp page to a local mail client (outlook express) , the client machine uses adobe reader 5.0.5 and doesn't have a sendMail plug-in. The pdf is generated in the server as a byte array stream and populated in a jsp page. the pdf docu

Re: [iText-questions] reg setHeaderRows

2004-12-29 Thread Paulo Soares
You need two tables, one for heading and other for the header/content. - Original Message - From: "Shivakumar Paramasivam" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 29, 2004 11:16 PM Subject: [iText-questions] reg setHeaderRows > Hi, >I have a table in which there is a

Re: [iText-questions] Insert Line Breaks into a Phrase

2004-12-29 Thread Paulo Soares
Works for me. Check that what is really compiled is not \\r\\n. - Original Message - From: "Gregory Geller" <[EMAIL PROTECTED]> To: "Gregory Geller" <[EMAIL PROTECTED]>; Sent: Wednesday, December 29, 2004 10:21 PM Subject: RE: [iText-questions] Insert Line Breaks into a Phrase I have t

Re: [iText-questions] Re: type1 font and unicode

2004-12-29 Thread Paulo Soares
It works for 256 chars at a time, that's why there's an encoding. - Original Message - From: "bodo teichmann" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 29, 2004 8:34 PM Subject: [iText-questions] Re: type1 font and unicode > Hi, > i don't understand how that should work. after

[iText-questions] Re: type1 font and unicode

2004-12-29 Thread bodo teichmann
Hi, i don't understand how that should work. after all, java uses unicode, my text that contains those special chars are therefore encoded in unicode, but MACRoman is a different encoding i suppose, so how does the transcoding from java/unicode to MacRoman work? and if yes, does is work for all

[iText-questions] reg setHeaderRows

2004-12-29 Thread Shivakumar Paramasivam
Hi,    I have a table in which there is a heading for the table and then table header and table contents. I need to start the table along with the heading of the table when it does not fit the page. PdfPTable and fitsPage works fine. I added the table heading to the PdfPTable, but I m getting t

RE: [iText-questions] Insert Line Breaks into a Phrase

2004-12-29 Thread Gregory Geller
I have tried to use the below sample code, but the \r\n appears in the text. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gregory Geller Sent: Wednesday, December 29, 2004 2:09 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Insert

[iText-questions] Insert Line Breaks into a Phrase

2004-12-29 Thread Gregory Geller
Hi all, Is there a way to insert newline character into the middle of the text that is used to create a Phrase object. This object is then inserted into a Cell object. This is an example of what we would like to do: String text = "this is an example\r\n of some text"; Phrase phrase = new Phras

Re: [iText-questions] find the exact position of a word and insert a form field

2004-12-29 Thread Leonard Rosenthol
At 12:43 PM 12/29/2004, [EMAIL PROTECTED] wrote: I have a pdf document, in which, there are a few specific words, like "signedBy".. I need to find the exact postion of these words in the pdf and insert formfields in those positions. You'll want to look at libraries such as pdfBox or Multiv

[iText-questions] find the exact position of a word and insert a form field

2004-12-29 Thread anitha . d . chandran
Hi, I have a pdf document, in which, there are a few specific words, like "signedBy".. I need to find the exact postion of these words in the pdf and insert formfields in those positions. Is there a way I can find exact coordinate position of specific words in the pdf? Thanks, Anitha.

Re: [iText-questions] Watermark is added to document as background

2004-12-29 Thread Bruno
Quoting Robert Crank <[EMAIL PROTECTED]>: > I am using the watermark feature of iText and am noticing that the image > is not actually being added to the PDF as a watermark, but as > background. You shouldn't use the Watermark object, but PageEvents. http://www.lowagie.com/iText/tutorial/ch12.htm

[iText-questions] Watermark is added to document as background

2004-12-29 Thread Robert Crank
I am using the watermark feature of iText and am noticing that the image is not actually being added to the PDF as a watermark, but as background.  That is, everything draws on top to the watermark image, instead of the watermark image drawing on top of everything.  This renders the waterma

RE: [iText-questions] Finding the real size of imported page

2004-12-29 Thread Paulo Soares
iText can't do any of that. You'll have to look elsewhere. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, December 29, 2004 4:53 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Fi

[iText-questions] Finding the real size of imported page

2004-12-29 Thread Paul . Krasucki
I am creating a new pdf document from existing ones: concatenate documents and insert some new stuff on the bottom of some pages. I want to be able to find out what is the real size of the page, so if added text will go over existing text I could shrink existing text and move it up. I want to av

[iText-questions] New release itext-paulo-147

2004-12-29 Thread Paulo Soares
Changes in itext-paulo-147 (2004-12-29) - added full support for Optional Content Groups (OCG) also known as layers. This covers not only the content streams but also annotations and XObjects. See the examples. - added PdfAction.setOCGstate(). - fixed ColumnText.showTextA

RE: [iText-questions] Sending form from pdf problem

2004-12-29 Thread Paulo Soares
Can't you read? Your problem is the server that doesn't support POST. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of vadim zabejinsky > Sent: Wednesday, December 29, 2004 3:15 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-que

[iText-questions] Sending form from pdf problem

2004-12-29 Thread vadim zabejinsky
I'm trying to send form from pdf acroForm.addCheckBox ("CB1","ch",false,200,700,220,720); acroForm.addHtmlPostButton("submit","send","noValue", "servlet/Check",helv,12,100,650,180,670); But I get an error message: 405 Method not allowed HTTP method POST is not supported by this URL. What is my

RE: [iText-questions] type1 font and unicode

2004-12-29 Thread Paulo Soares
You don't need unicode and can't have in T1 fonts. If you use BaseFont.MACROMAN you have access to those charactres. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of bodo teichmann > Sent: Tuesday, December 28, 2004 8:58 PM > To: itext-questions@

RE: [iText-questions] PdfFormField

2004-12-29 Thread Paulo Soares
That's what a form action does. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of vadim zabejinsky > Sent: Wednesday, December 29, 2004 2:06 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PdfFormField > > Is there any

[iText-questions] PdfFormField

2004-12-29 Thread vadim zabejinsky
Is there any possibility to send back via pdfAction values of PdfFormFields (like form action with post method) ? __ Do you Yahoo!? Jazz up your holiday email with celebrity designs. Learn more. http://celebrity.mail.yahoo.com ---

RE: [iText-questions] inverse of BaseFont.convertToBytes()?

2004-12-29 Thread Paulo Soares
PdfEncodings.convertToString() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of David Thielen > Sent: Wednesday, December 29, 2004 2:09 AM > To: itext > Subject: [iText-questions] inverse of BaseFont.convertToBytes()? > > Hi; > > > > Is ther

RE: [iText-questions] inverse of BaseFont.convertToBytes()?

2004-12-29 Thread Paulo Soares
There's always a mapping for T1 and TT fonts. Only fonts with cmaps have no mapping (that's not really true as the mapping is in the cmap). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of David Thielen > Sent: Wednesday, December 29, 2004 2:16 AM

[iText-questions] =?Windows-1252?Q?RE=3A_=5BiText-questions=5D_Bookmarks_don=B4t_open_anymo?= =?Windows-1252?Q?re?=

2004-12-29 Thread Paulo Soares
PdfWriter.setViewerPreferences(PdfWriter.PageModeUseOutlines) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thorsten SchüleinSent: Wednesday, December 29, 2004 10:24 AMTo: itext-questions@lists.sourceforge.netSubject: [iText-questions] Bookmarks don´t ope

RE: [iText-questions] Altering Text in PDF made by FOP with iText

2004-12-29 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Robert Durant > Sent: Tuesday, December 28, 2004 11:49 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Altering Text in PDF made by FOP with iText > > Hi, > > I dont

[iText-questions] =?iso-8859-1?Q?Bookmarks_don=B4t_open_anymore?=

2004-12-29 Thread =?iso-8859-1?Q?Thorsten_Sch=FClein?=
Hi,   we´re creating a pdf document with bookmarks. With the iText version we were using up to now, the reader perfectly opened the bookmarks view. But this week we switched to the latest iText version 1.1, the creation of the document was unchanged but the reader now doesn´t open the bookmarks

[iText-questions] Ref : RTF table header are not repeated

2004-12-29 Thread tmargenstern
Hello Sorry and forgot my previous mail. It works with iText 1.1.4 based on itext-paulo-146. Sorry again. Regards. TM

[iText-questions] type1 font and unicode

2004-12-29 Thread bodo teichmann
hi, is there any possiblity to use unicode with type1 fonts ? the thing is: we only have type1 fonts but need to encode special unicode characters such as german ligatures "fl" and "fi" and others that are available only with unicode encoding. bodo --