Re: [iText-questions] View a Pdf which uses Helvetica on a Mac

2003-07-22 Thread P . O . -News
> >I've got a problem with opening my Pdf on a Macintosh. > >What version of Mac OS? > >What version of Adobe Acrobat? Mac OS 9.1 Adobe Acrobat 5.0 -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Jetzt ein- oder umsteigen und USB-Speicheruhr als Prämie sichern! -

[iText-questions] setting page to show in pdf-stream

2003-07-22 Thread rk
hello everybody! i have a servlet opening pdf-documents and streaming them. is there a way to set the page to show up in the acrobat reader? (something like pdfdoc.setPageToShow(x)) regards randolph --- di randolph kepplinger,

Re: [iText-questions] continuous line that changes

2003-07-22 Thread phillip
> Please reply to me as well as the list - my spam filter is dropping a lot of the > mail to the list (trying to figure it out). > > Heres my question: > > I have a line that changes width as it goes. But I want Acrobat to know it's one > line so it joins up the corners right. Is there any way

[iText-questions] continuous line that changes

2003-07-22 Thread David Thielen
Hi;   Please reply to me as well as the list - my spam filter is dropping a lot of the mail to the list (trying to figure it out).   Heres my question:   I have a line that changes width as it goes. But I want Acrobat to know it's one line so it joins up the corners right. Is there any way t

[iText-questions] Adding SVG images to table cells

2003-07-22 Thread Chris Farmer
  Hi.  I’m trying to create a table in which each cell in a single column contains an SVG image.  I used Batik and some code from Xiaohong Yin that I found in these archives (thanks!) to get started, and I can get my SVG to render onto my pdf.  I can’t however see how to get started in put

[iText-questions] Can't add images to PDF

2003-07-22 Thread achavero
Hi Can somebody help me? I'm stuck trying to find a way of adding a image to my PDF. I'm creating a VB.net project that create a PDF in MemoryStream and then outputs it to a browser. I had succesfully added tables and paragraphs to the PDF but when I try to put an image the followi

Re: [iText-questions] Re: iText

2003-07-22 Thread Paulo Soares
TIFF flavors supported: Compression - no compression, packbits, lzw, deflate, ccitt Photometric - bw, rgb, separated (cymk), indexed Bit depth - 1, 2, 4, 8 iccprofile is used if present Not supported - planar images and extra sample (masks) Other images types: gif - full support bmp - full supp

Re: [iText-questions] How to set the icon of a icon only button dynamically?

2003-07-22 Thread Paulo Soares
It's possible but only if you have a very good knowledge of the PDF format. There's no direct, single API call to do it. Best Regards, Paulo Soares - Original Message - From: "Durga Prasad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 17:19 Subject: [iText-ques

Re: [iText-questions] multi line footer?

2003-07-22 Thread Paulo Soares
iText cannot guarantee that the text won't overlap existing content. Best Regards, Paulo Soares - Original Message - From: "x x" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 18:26 Subject: [iText-questions] multi line footer? > hi all, > > I have looked all

[iText-questions] multi line footer?

2003-07-22 Thread x x
hi all, I have looked all over the website to find a solution to this but have been fairly unsuccessful so far.. what is the best way to add a multi line text to the end of an existing pdf file? it's important to note that this text should NOT overlap the content of the existing pdf file, nor s

Re: [iText-questions] Clipping to a path

2003-07-22 Thread Paulo Soares
You miss the newPath after clip. Best Regards, Paulo Soares - Original Message - From: "Jaladurgam, Ramana" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 15:56 Subject: [iText-questions] Clipping to a path > I am facing some problem with clipping. Here is the

[iText-questions] Re: iText

2003-07-22 Thread Bruno
Quoting Annu Ittyachen <[EMAIL PROTECTED]>: > Hi Bruno, > > I am a software developer planning to use iText. It is great and I > appreciate that you keep it free. I need to know what kind of image formats > that iText do not support. Specifically, whether uncompressed till files > are > supported

[iText-questions] multi line footer?

2003-07-22 Thread x x
hi all, I have looked all over the website to find a solution to this but have been fairly unsuccessful so far.. what is the best way to add a multi line text to the end of an existing pdf file? it's important to note that this text should NOT overlap the content of the existing pdf file, nor s

[iText-questions] How to set the icon of a icon only button dynamically?

2003-07-22 Thread Durga Prasad
Hi, Does anybody know how to set the icon of a icon only button in a acroform using iText API? ThankYou Durgaprasad __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com

[iText-questions] test

2003-07-22 Thread David Thielen
Hi;   Just checking that I'm still getting mail from the list

[iText-questions] Clipping to a path

2003-07-22 Thread Jaladurgam, Ramana
I am facing some problem with clipping. Here is the following code: mPdfContentByte.moveTo(150, 500); mPdfContentByte.lineTo(250, 600); mPdfContentByte.lineTo(150, 700); mPdfContentByte.closePath(); mPdfContentByte.fill(); //Clipping across the path

Re: [iText-questions] Problems with setting Cell width

2003-07-22 Thread Paulo Soares
That only works for RTF and HTML. For PDF you'll have to make some calculation with Table. It's possible to do it directly with PdfPTable. Best Regards, Paulo Soares - Original Message - From: "Werewolf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 13:55 Subjec

Re: [iText-questions] Minor change for text.DocWriter

2003-07-22 Thread Paulo Soares
Any reason for not using Document? Best Regards, Paulo Soares - Original Message - From: "Leonard Rosenthol" <[EMAIL PROTECTED]> To: "Paulo Soares" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 14:54 Subject: Re: [iText-questions] Minor change for text.DocWriter

Re: [iText-questions] BASE URL

2003-07-22 Thread Paulo Soares
I'm aware of that but it's a feature to facilitate editing not of much use when creating documents. If you really need it: PdfWriter wr = ...; PdfDictionary dic = new PdfDictionary(); dic.put(new PdfName("Base"), new PdfString("my base uri")); PdfDictionary cat = new PdfDictionary(); cat.put(PdfNa

Re: [iText-questions] Writting in a PDF existing file

2003-07-22 Thread Paulo Soares
Create a new document and then use PdfCopy to join both. Best Regards, Paulo Soares - Original Message - From: "Margarita Lïpez del Campo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 12:32 Subject: [iText-questions] Writting in a PDF existing file Hello, I'm

Re: [iText-questions] View a Pdf which uses Helvetica on a Mac

2003-07-22 Thread Leonard Rosenthol
At 03:38 PM 7/22/2003 +0200, [EMAIL PROTECTED] wrote: I've got a problem with opening my Pdf on a Macintosh. What version of Mac OS? What version of Adobe Acrobat? Leonard --- Leonard Rosenthol

Re: [iText-questions] Minor change for text.DocWriter

2003-07-22 Thread Leonard Rosenthol
At 02:00 PM 7/22/2003 +0100, Paulo Soares wrote: I don't know if you've noticed but setting the page size in PdfWriter does nothing. You can use it just as a place holder, of course. Really? It looked like there was code to implement stuff there - but you are right, I never actually test

[iText-questions] Problems with setting Cell width

2003-07-22 Thread Werewolf
Hello! How can I set width of cell in a table? There is a method Cell.setWidth(String). So, what should contain argumebt of this function? For example, I want to set width = 200px. I tried the following variants: cell.setWidth("200px"); cell.setWidth("200"); so, how to solve this problem? Thank

Re: [iText-questions] Minor change for text.DocWriter

2003-07-22 Thread Paulo Soares
I don't know if you've noticed but setting the page size in PdfWriter does nothing. You can use it just as a place holder, of course. Best Regards, Paulo Soares - Original Message - From: "Leonard Rosenthol" <[EMAIL PROTECTED]> To: "Paulo Soares" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> S

[iText-questions] View a Pdf which uses Helvetica on a Mac

2003-07-22 Thread P . O . -News
Hello I've got a problem with opening my Pdf on a Macintosh. I filled it with text in a Helvetica font and each time I try to open it, this message comes up: "Unable to find or create the font 'Helvetica'. Some characters may not display or print correctly." If I open the document in MS-Window

Re: [iText-questions] Minor change for text.DocWriter

2003-07-22 Thread Leonard Rosenthol
At 11:58 AM +0100 7/22/03, Paulo Soares wrote: I don't know if it makes sense to do it. It's only used with HtmlWriter for setting the background color. All the page sizing is done in Document. I suppose that it's in DocWriter as a side effect of DocListener. I am using it with the PdfWriter as pa

[iText-questions] Writting in a PDF existing file

2003-07-22 Thread Margarita Lïpez del Campo
Hello, I'm new programming with iText and I have problems to writting in a PDF existing file. I want to write at the end of an existing PDF file and to success this, I use "PdfWriter.getInstance(document, new FileOutputStream("fichero.pdf", true));" but this doesn't work. I've tried creating a Fi

Re: [iText-questions] Minor change for text.DocWriter

2003-07-22 Thread Paulo Soares
I don't know if it makes sense to do it. It's only used with HtmlWriter for setting the background color. All the page sizing is done in Document. I suppose that it's in DocWriter as a side effect of DocListener. Best Regards, Paulo Soares - Original Message - From: "Leonard Rosenthol" <[

RE: [iText-questions] Print document

2003-07-22 Thread SIMON Pascal
Hi gurus, So, it's a very simple example. You just have to open the html file and...surprise The pdf also show you that's possible to print several pdf as an answer to a single HTTP request (just have a look at the numerotation, I've got my own PdfPageEventHelper if you need). Do you think (B

Re: [iText-questions] Watermark problem

2003-07-22 Thread Paulo Soares
public void onEndPage(PdfWriter writer, Document document) { writer.getDirectContentUnder().addImage(...); } - Original Message - From: "MK Lee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 5:20 Subject: [iText-questions] Watermark problem > Hi, > >

Re: [iText-questions] chunk background

2003-07-22 Thread Paulo Soares
It's at www.geocities.com/itextpdf - Original Message - From: "siapa" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 4:07 Subject: RE: [iText-questions] chunk background > Could you please let me know if you have upload the new release on the > website? > > Ma

Re: [iText-questions] Create and mandage PDF files in ASP

2003-07-22 Thread Paulo Soares
Use the J# port. There's also a C# port but it's not up to date. Best Regards, Paulo Soares - Original Message - From: "Cezar FLOROIU" <[EMAIL PROTECTED]> To: "EDS Ruvalcaba Jorge Arturo" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 8:25 Subject: RE: [iText-questi

[iText-questions] XML & TTF Fonts - FINAL

2003-07-22 Thread Robert Oracle
Finaly succeded! Magic is done by finding right TTF FONTS, that has special characters and also finding right ENCODING to view this characters (yes Paulo, now I can see more than 256 chars ;). This is the way I am doing it: Document documentA = new Document(PageSize.A4, 40, 25, 15, 32); FontFac

RE: [iText-questions] Create and mandage PDF files in ASP

2003-07-22 Thread Cezar FLOROIU
Normally you can't. You'll need a Java - ASP bridge. If you were using ASP.NET you could try JNBridge. Best, Cezar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of EDS Ruvalcaba Jorge Arturo Sent: Tuesday, July 22, 2003 2:34 AM To: [EMAIL PROTECTED] Subject:

[iText-questions] Create and mandage PDF files in ASP

2003-07-22 Thread EDS Ruvalcaba Jorge Arturo
In your site said that I can use your iText library in ASPs. How can I use your iText library in ASPs. What do I have to install in mi IIS server??? thanks --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple op

[iText-questions] Watermark problem

2003-07-22 Thread MK Lee
Hi, I tried to insert a watermark with : public void onEndPage(PdfWriter writer, Document document) { System.out.println("end added" + doc.add(page.waterMark) + ":" + page.waterMark.offsetX() + " x " + page.waterMark.offsetY()); } The watermark only appear from the 2nd page onward thou

RE: [iText-questions] chunk background

2003-07-22 Thread siapa
Could you please let me know if you have upload the new release on the website? Many thanks, -- - Original Message - DATE: Mon, 7 Jul 2003 15:04:19 From: Paulo Soares <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] Cc: >It's either next we