Re: [iText-questions] Write/Append to PDF file from html page

2002-04-11 Thread Bruno Lowagie
Quoting Mehboob Pasha <[EMAIL PROTECTED]>: > Hi Paulo Soares, > > Already I am having the built-in PDF format file with some fields like > name, address, city, state, zip. I want fill these fields. The values of > these fields will be in the html page. Now I want to append/write into > the speci

Re: [iText-questions] PdfGraphics Class

2002-04-11 Thread Bruno Lowagie
Quoting Jeremy Bowman <[EMAIL PROTECTED]>: > Being able to draw something to an image, GUI > panel, PDF file, SVG file, or printed page without writing separate rendering > code for each output is incredibly useful... I agree. It would make iText a very powerful tool and it would also be a nice

Re: [iText-questions] PdfGraphics Class

2002-04-11 Thread Jeremy Bowman
Even though you specifically asked Paulo for an opinion, I'm going to provide mine too. :-) The logic behind having a PdfGraphics2D class is that a wide range of existing applications that are already designed to render content on a Graphics2D context suddenly gain the ability to generate PDF

[iText-questions] PdfGraphics Class

2002-04-11 Thread phillip
Fellows: I cannot agreee that we need a PdfGraphics class since all the operators are already in PDF, i.e drawArc(), drawRect(). To intergrate JFreeChart into iText is basically taking a JFreeChart as input object and use iText as Plot. The problem is how to interpret JFreeChart object and its D

[iText-questions] optimizing formatDouble and append in ByteBuffer

2002-04-11 Thread David Teran
Hi, i played around with the profiling infos from the JVM and it turnes out that formatDouble creates a lot of temporary byte[] and char[] and String and StringBuffer's. I already implemented a simple cache and the overall speed of a 23 page report is 10% better, memory usage without garbage

[iText-questions] Write/Append to PDF file from html page

2002-04-11 Thread Mehboob Pasha
Hi Paulo Soares, Already I am having the built-in PDF format file with some fields like name, address, city, state, zip. I want fill these fields. The values of these fields will be in the html page. Now I want to append/write into the specific position of PDF file from the html page. Please adv

Re: [iText-questions] I have a question ! crucial !

2002-04-11 Thread Bruno Lowagie
Quoting Mathilde Leblanc <[EMAIL PROTECTED]>: > Hi, do anyone know why I get this alert message by Acrobat Reader by opening > > a pdf file: "Illegal operation 'm' inside a text object" > > I know that this error is popup on WindowsNT environment and not on Windows > > 2000 ?? Need help ! I

Re: [iText-questions] tiff-group4 generated by com.sun.media.jai not recognized by Itext

2002-04-11 Thread Frédéric Glorieux
Thank you for fast answer, I found another solution, absolutely not clean but lighter for the server (scaling with JAI is long with big images). I give the JAI-tiff to Image Magick, I don't know how it does that but, IM gain about 15 to 20% length with the same algorithm, and Itext can u

[iText-questions] I have a question ! crucial !

2002-04-11 Thread Mathilde Leblanc
Hi, do anyone know why I get this alert message by Acrobat Reader by opening a pdf file: "Illegal operation 'm' inside a text object" I know that this error is popup on WindowsNT environment and not on Windows 2000 ?? Need help ! mat _

RE: [iText-questions] FTP Printing

2002-04-11 Thread Paulo Soares
Does it print a simple "hello world" itext file? The problem is with text or images? If with images what kind of images (PNG, JPEG, etc)? Best Regards, Paulo Soares > -Original Message- > From: Austin Hatcher [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, April 11, 2002 19:05 > To: [EMAIL

[iText-questions] FTP Printing

2002-04-11 Thread Austin Hatcher
We have massive amounts of documents created with iText that have to be printed out daily. Instead of having a user manually print out each document, I have been working on a way to automate the process. On a Lexmark T620 printer, I have installed an ImageQuick option card. This card will proc

[iText-questions] Re: iText-questions digest, Vol 1 #487 - 4 msgs

2002-04-11 Thread mbhat
Hello, You may try the following, this will put the text in 2 diffrent font sizes in a cell, I am not sure of positioning in a cell. regards, Manu. Cell cell = new Cell(new Phrase("text",getFontAttribute())); cell.add(new Phrase("text2",getFontAttribute())); table.add(cell);

[iText-questions] Form example?

2002-04-11 Thread Birkelbach, Carsten
I am interested in pdf-forms. I know, that this feature is realy new. Are there any small examples for using the PdfFormFields? Mit freundlichem Gruß / kind regards Carsten Birkelbach --- Siemens AG Siemens Business Services GmbH & Co OHG BAP HRS 3, PDB HN Heinz-Nixdorf-Ring 1 33106 Paderb

RE: [iText-questions] PdfGraphics2D class

2002-04-11 Thread Kevin Galligan
I had a slightly off topic idea. We built an iText object type that could be extended to provide G2D support for a variety of uses. We then added a JFreeChart wrapper and MonarchChart wrapper. It was pretty hacky, but I think something like that would work out well. Just my $.02. ===

RE: [iText-questions] PdfGraphics2D class

2002-04-11 Thread Paulo Soares
> -Original Message- > From: jim moore [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, April 11, 2002 16:00 > To: Paulo Soares; [EMAIL PROTECTED] > Subject: Re: [iText-questions] PdfGraphics2D class > > A couple thoughts on this version (graphics2d-02): > > First, I'm not sure if it

Re: [iText-questions] Question?

2002-04-11 Thread Matt Benson
Sorry if that sounded a little overenthusiastic with that exclamation point. It wasn't intended that way. :) -Matt --- Matt Benson <[EMAIL PROTECTED]> wrote: > I like opening HTML files in Excel because users > don't > know they're not XLS files! I think CSV would give > them a bunch of prom

Re: [iText-questions] Question?

2002-04-11 Thread Matt Benson
I like opening HTML files in Excel because users don't know they're not XLS files! I think CSV would give them a bunch of prompts, and I think that would make them nervous. -Matt --- Bruno Lowagie <[EMAIL PROTECTED]> wrote: > Quoting Matt Benson <[EMAIL PROTECTED]>: > > > What about this, thou

Re: [iText-questions] PdfGraphics2D class

2002-04-11 Thread jim moore
A couple thoughts on this version (graphics2d-02): First, I'm not sure if it is a good idea to expand the public interface of the class beyond the standard Graphics2D public interface. This iteration has a finished() method, a getTemplate method, and a static createTemplate method. I don't think

Re: [iText-questions] Question?

2002-04-11 Thread Bruno Lowagie
Quoting Matt Benson <[EMAIL PROTECTED]>: > What about this, though? At some point along the > evolution of iText XML it should be possible to write > an XML document, then create your PDF from that. The > same XML could also be used to create HTML output, > which can be read by Excel. I was un

[iText-questions] Re: Finishing the topic about Doubts with Embedding Fonts

2002-04-11 Thread Bruno Lowagie
Quoting Sergio Lopez Rodriguez <[EMAIL PROTECTED]>: > As we say here, "clearer, water", I mean ur explanation is perfect, so if i > do > > BaseFont helvetica = BaseFont.createFont(BaseFont.HELVETICA, > BaseFont.CP1252, BaseFont.EMBEDDED); > > I'll have to crate the corresponding hel

Re: [iText-questions] Question?

2002-04-11 Thread Matt Benson
What about this, though? At some point along the evolution of iText XML it should be possible to write an XML document, then create your PDF from that. The same XML could also be used to create HTML output, which can be read by Excel. -Matt --- Bruno Lowagie <[EMAIL PROTECTED]> wrote: > Quotin

[iText-questions] PdfGraphics2D class

2002-04-11 Thread Paulo Soares
This time with support for setClip() without templates. http://www.geocities.com/itextpdf/graphics2d-02.zip Best Regards, Paulo Soares ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions

RE: PdfGraphics2D class (RE: [iText-questions] generating graphs )

2002-04-11 Thread Paulo Soares
> -Original Message- > From: Kevin Galligan [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, April 11, 2002 3:52 > To: 'Jeremy Bowman'; [EMAIL PROTECTED] > Subject: RE: PdfGraphics2D class (RE: [iText-questions] generating > graphs ) > > I think you'll have to forget copyArea as well.

RE: [iText-questions] adding button dynamically

2002-04-11 Thread Bezawada Vamseedhar
Hi paulo, Thank you very much for the reply. I am very much new to structure of PDF's. I really got confused with ur packages(b-cos i have no idea about pdf's). I only need to add a button and javascript action to this button. can you please help me regarding this. Can u please m

Re: [iText-questions] Question?

2002-04-11 Thread Bruno Lowagie
Quoting Palmieri Giovanna <[EMAIL PROTECTED]>: > It's possible trasform a file pdf to a file xls e/o xml? > Sorry me for this question, but same clients now wont also modify the > file pdf so > it's need a xls format file. Sorry, but the answer is no. PDF is basicly a READ-ONLY document format.

[iText-questions] Question?

2002-04-11 Thread Palmieri Giovanna
It's possible trasform a file pdf to a file xls e/o xml? Sorry me for this question, but same clients now wont also modify the file pdf so it's need a xls format file. Regards, Giovanna Palmieri ___ iText-questions mailing list [EMAIL PROTECTED] http