[iText-questions] adding pdf form field

2002-07-24 Thread Neeru . Bhardwaj
I want to open an existing pdf file and add pdfformfield to a particular location and page. Could anyone provide me with an example code for doing this. Thanks -Neeru --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven.

RE: [iText-questions] Error: Helvetica not found as resource.

2002-07-24 Thread Paulo Soares
For reasons that only Bruno knows the required files that are in the fonts directory exist in the compiled jar but not in the source. Best Regards, Paulo Soares -Original Message- From: Pierre-Yves Cloutier [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:32 PM To: [EMAIL

RE: [iText-questions] Line widths in graphics

2002-07-24 Thread Paulo Soares
Try the smooth line art option if you are using Acrobat. Best Regards, Paulo Soares -Original Message- From: Paul Warren [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 10:12 AM To: [EMAIL PROTECTED] Subject: [iText-questions] Line widths in graphics I am having a

[iText-questions] PageNumber ( in footer ) FONT

2002-07-24 Thread Dayanand V
Hello Friends , Using iText for PDF generation, I'm unable to change font of PageNumber displayed by HeaderFooter class. Can anybody help me how to do this? Thanks in advance Dayanand.V __ Do You Yahoo!? Yahoo! Health - Feel better, live better

RE: [iText-questions] PageNumber ( in footer ) FONT

2002-07-24 Thread Arno van der Kolk
Title: RE: [iText-questions] PageNumber ( in footer ) FONT I use this code, which I think does the trick: // BaseFont baseFont = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED) Font

[iText-questions] adding text to exisiting pdf

2002-07-24 Thread Neeru . Bhardwaj
I want to open an existing pdf file and add text as a form field at a particular location and page. Could anyone provide me with an example code for doing this. Thanks -Neeru --- This sf.net email is sponsored by:ThinkGeek Welcome to geek

[iText-questions] (no subject)

2002-07-24 Thread Dietmar Gombotz
hi i have a very annoying problem i have inserted a table into my pdf file and it works proberly, except that i want to make a border and give it another colour - but whatever i change, there is no difference in the design of the table who knows what to do? Regards Dietmar Gombotz, CCNA

RE: [iText-questions] (no subject)

2002-07-24 Thread Paulo Soares
Is it Table or PdfTable? A short code snippet of what you are trying to do might help. Best Regards, Paulo Soares -Original Message- From: Dietmar Gombotz [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 13:18 To: [EMAIL PROTECTED] Subject: [iText-questions] (no

RE: [iText-questions] Error: Helvetica not found as resource.

2002-07-24 Thread Bruno
Quoting Paulo Soares [EMAIL PROTECTED]: For reasons that only Bruno knows the required files that are in the fonts directory exist in the compiled jar but not in the source. Sorry, I'll update this after my holidays. I will follow your earlier suggestion and put the less used fonts in a

[iText-questions] fontfile and fontname

2002-07-24 Thread Zack
how can i make a conection between a fontname get it with String[] fontsname = GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames(); and his phisicaly fontfile from my computer who contain font with name fontnsame[index] ?? Zack

RE: [iText-questions] fontfile and fontname

2002-07-24 Thread Paulo Soares
See the source for DefaultFontMapper for an example on how to do it. Best Regards, Paulo Soares -Original Message- From: Zack [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 13:40 To: [EMAIL PROTECTED] Subject: [iText-questions] fontfile and fontname how can i

RE: [iText-questions] (no subject)

2002-07-24 Thread Paulo Soares
This is a question to Bruno but did you tried it with itext0.93b? Best Regards, Paulo Soares -Original Message- From: Dietmar Gombotz [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 13:41 To: Paulo Soares Subject: RE: [iText-questions] (no subject) okay here it

RE: [iText-questions] (no subject)

2002-07-24 Thread Bruno
Quoting Paulo Soares [EMAIL PROTECTED]: Table TimeTable = new Table(2); TimeTable.setBorderWidth(2); TimeTable.setBorderColor(new Color(0, 255, 255)); TimeTable.setAutoFillEmptyCells(true);

RE: [iText-questions] Linux Box Images

2002-07-24 Thread Miller, Eric
The reason I'm using: Image checked = Image.getInstance(Toolkit.getDefaultToolkit().createImage(path +check.gif), null); is because I get the following error if I don't. com.lowagie.text.DocumentException:

RE: [iText-questions] (no subject)

2002-07-24 Thread Paulo Soares
Follow up in the mailing list please. Best Regards, Paulo Soares -Original Message- From: Dietmar Gombotz [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 15:23 To: Paulo Soares Subject: RE: [iText-questions] (no subject) i don't know the version i have loaded

[iText-questions] DirectContent and Fonts

2002-07-24 Thread Ernst Huber
hi all, here are a few questions from an iText-novice: Q1: is it possible to use PdfContentByte.showText(...) with font-sytles - so that i can write an underlined or strikethru string direct to PdfContentByte without using Chunks co. Q2: does anybody have experience with java

[iText-questions] Better use of Java objects

2002-07-24 Thread Vanja_Jovic
Hi, is it possible to reuse object like phrase or chunk, rather than destroying and creating them all the time. It becomes an performance issue on larger applications. Vanja Copyright 2002 ADC Telecommunications, Inc. This communication is the property of ADC and may

RE: [iText-questions] Better use of Java objects

2002-07-24 Thread Paulo Soares
No. Most of that objects are stored to be used later when rendering to the page. Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 16:22 To: [EMAIL PROTECTED] Subject: [iText-questions] Better use of

RE: [iText-questions] DirectContent and Fonts

2002-07-24 Thread Paulo Soares
-Original Message- From: Ernst Huber [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 16:09 To: [EMAIL PROTECTED] Subject: [iText-questions] DirectContent and Fonts hi all, here are a few questions from an iText-novice: Q1: is it possible to use

RE: [iText-questions] Line widths in graphics

2002-07-24 Thread Paul Warren
On Wed, 2002-07-24 at 10:55, Paulo Soares wrote: Try the smooth line art option if you are using Acrobat. Ah - I was using Acrobat 4 on Linux. I've just tried this option on Acrobat 5. It helps a little, but the lines are still uneven. I'm still a little confused as to why this is only a

RE: [iText-questions] Better use of Java objects

2002-07-24 Thread Matt Benson
Does this not work for most Elements? I'm sure that I have reused Cells in Tables in the past. -Matt --- Paulo Soares [EMAIL PROTECTED] wrote: No. Most of that objects are stored to be used later when rendering to the page. Best Regards, Paulo Soares -Original Message-

Re: [iText-questions] rtf tables and cell borders

2002-07-24 Thread Mark Hall
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Scott Dietrich wrote: | It doesn't look like the rtf classes support setting border widths or | styles individually for each cell border. For example, in a given row, | I'd like to set the width of the left, top, and right borders to 1, and | the

RE: [iText-questions] Better use of Java objects

2002-07-24 Thread Dang Nguyen
Title: RE: [iText-questions] Better use of Java objects I've reused objects (cells, paragraphs, chunks) after I've added them to the document object. Dang Nguyen -Original Message- From: Paulo Soares [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 8:29 AM To: '[EMAIL

RE: [iText-questions] Better use of Java objects

2002-07-24 Thread Paulo Soares
By reuse I mean change the content and not assigning to the same variable. Best Regards, Paulo Soares -Original Message- From: Dang Nguyen [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 18:07 To: [EMAIL PROTECTED] Subject: RE: [iText-questions] Better use of Java

RE: [iText-questions] Better use of Java objects

2002-07-24 Thread Paulo Soares
Yes. Best Regards, Paulo Soares -Original Message- From: Matt Benson [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 18:15 To: Paulo Soares; [EMAIL PROTECTED] Subject: RE: [iText-questions] Better use of Java objects As long as you don't intend to change the

RE: [iText-questions] PageNumber ( in footer ) FONT

2002-07-24 Thread Dang Nguyen
Title: RE: [iText-questions] PageNumber ( in footer ) FONT Now, how can this footer be modified so that it also includes additional text that is LEFT aligned while just the page number is RIGHT aligned. I want to be able to include text regarding the document title, author, etc, but it

[iText-questions] Chart between paragraphs (JFreeChart)

2002-07-24 Thread Francois Gravel
Hi All, I started using JFreeChart today. It seems great for the project I'm working on. But... How can I make the charts be part of the document flow? I started from the sample at the JFreeChart site. It uses absolute positions to draw the chart. That would be fine if we had access to the

Re: [iText-questions] Chart between paragraphs (JFreeChart)

2002-07-24 Thread Francois Gravel
I answered my own question. All I had to do was replace cb.addTemplate(tp, posx, posy); by document.add(new ImgTemplate(tp)); sorry Francois. --- Francois Gravel [EMAIL PROTECTED] wrote: Hi All, I started using JFreeChart today. It seems great for the project I'm

[iText-questions] Problem with splitting tables...

2002-07-24 Thread Amit D J
Hello I have a simple question regarding tables. I am using PdfPTable and the problem is there are several rows in the table. Each row is divided into 2 more rows (each with 4 columns). The first row simply adds the title and the second row holds the data (see e.g. below). This problem

[iText-questions] PDF printing

2002-07-24 Thread Patrick DeZenzio
Hello all, I have a user request to print applet information. As you know, there is no mechanism to print an applet, but I can build on a project I wrote that creates PDF documents to be attached to an email. The problem is the mechanism to actually print anything is difficult and PDFs make it

Re: [iText-questions] PDF printing

2002-07-24 Thread Leonard Rosenthol
At 3:44 PM -0500 7/24/02, Patrick DeZenzio wrote: Is there anything within iText that handles printing? No. The JPEDAL project (http://www.jpedal.org) folks have a PDF rasterizer that might be usuable for printing purposes - I don't know. I have sort of got this to work, but

[iText-questions] 0.92 upgrade to 0.93b has problem with Sections and Chapters

2002-07-24 Thread Dang Nguyen
Title: 0.92 upgrade to 0.93b has problem with Sections and Chapters I just upgraded iText 0.92 to 0.93b, and I am having problems with section and chapter titles not appearing in the Navigation Pane (aka, bookmark pane). I have a servlet that creates the pdf files with data from an Oracle

RE: [iText-questions] Linux Box Images

2002-07-24 Thread Miller, Eric
Paulo, You were right. The X server wasn't running with the correct DISPLAY variable. Thanks for the help! e miller -Original Message- From: Paulo Soares [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:52 AM To: 'Ramakrishna Kuppa'; 'Miller, Eric'; [EMAIL PROTECTED]

Re: [iText-questions] rtf tables and cell borders

2002-07-24 Thread Scott Dietrich
On Wednesday, July 24, 2002, at 01:53 PM, Scott Dietrich wrote: There seems to be a problem with rtf generation in current cvs code (related to tables, I believe). I'm viewing with Word 2001 on Mac OS X...it just hangs and is unable to open the document. I haven't had time yet to

Re: [iText-questions] rtf tables and cell borders

2002-07-24 Thread Bruno
Quoting Scott Dietrich [EMAIL PROTECTED]: I'm a pretty new user of iText...should I clean up the code and post patches back to the list? Any chance of them being added to the cvs repository? Yes, I could add them next week. Bruno ---