[iText-questions] Font Color

2005-09-15 Thread Ramu
Hi   How to set font for a given line of text in PDF (color, fon-size etc)   Regards Ramu Yahoo! for Good Click here to donate to the Hurricane Katrina relief effort.

[iText-questions] iText.net - why not java.util.Iterator?

2005-09-15 Thread David Thielen
Hi; First off the iText.net code is a thing of beauty. Anyone who is going to port java code to J# should look at it - just for the Junit port if nothing else. I have one question though. It defines jp.ujihara.java.util.Iterator and uses that instead of java.util.Iterator. Any idea why?

Re: [iText-questions] Changing links in a PDF document

2005-09-15 Thread Paulo Soares
Look at the source code of AcroFiels.fill() for the logic. You won't use PdfStamper to write the the action, you'll do a low level modification of the action itself. - Original Message - From: "Tomas Hansson" <[EMAIL PROTECTED]> To: "'Paulo Soares'" <[EMAIL PROTECTED]>; Sent: Thursday, S

RE: [iText-questions] Still having trouble with image borders showing up

2005-09-15 Thread Charlie Solomon
You are correct Paulo, it works in my example (below). I will go back to the drawing board in my app and see what I am missing. Thanks, -Charlie using System; using System.IO; using iTextSharp.text; using iTextSharp.text.pdf; namespace BizcraftPDFTest { /// /// Summary descript

[iText-questions] Cannot open PDF document created through iText

2005-09-15 Thread Chatterjee, Dipankar
Title: Cannot open PDF document created through iText Hi, I am creating PDF document through iText using JSP page. While clicking on a button it invokes another JSP page which should create the PDF file. But I am getting an error saying "Acrobat could not open [filename].pdf because it

RE: [iText-questions] Changing links in a PDF document

2005-09-15 Thread Tomas Hansson
Thanks for the quick reply. I figured that I would have to go through the PdfReader->Annotations->Stamper to get the work done but I cannot figure out the call to get the annotations from the reader. Or do I have to get the page first? In which case, what is the call? If I then use PdfStamper t

Re: [iText-questions] Changing links in a PDF document

2005-09-15 Thread Paulo Soares
That's quite easy. With PdfReader get the page/annots and go through each annotation looking for the action. Output the pdf with PdfStamper. - Original Message - From: "Tomas Hansson" <[EMAIL PROTECTED]> To: Sent: Thursday, September 15, 2005 7:38 PM Subject: [iText-questions] Changing

[iText-questions] Changing links in a PDF document

2005-09-15 Thread Tomas Hansson
Hi there, I am looking for a way to read in a PDF file, changed all absolute links (aka Actions) in the file to point to a different folder location, and to write a copy of the PDF file to a different location. Basically, I am looking at a copy utility that will copy over a bunch of PDF files tha

Re: [iText-questions] How can one balance columns in a PDF using itext?

2005-09-15 Thread Paulo Soares
ColumnText ct = ...; ct.setSimpleColumn(0, 0, 400, -10); ct.setYLine(0); ... ... ct.go(true); float height = -ct.getYLine(); - Original Message - From: "Isabelle Ulfsdotter Netus" <[EMAIL PROTECTED]> To: "'Paulo Soares'" <[EMAIL PROTECTED]>; Sent: Thursday, September 15, 2005 6:32 PM

RE: [iText-questions] How can one balance columns in a PDF using itext?

2005-09-15 Thread Isabelle Ulfsdotter Netus
How do I get the effective height? I tried counting the lines written and multiplying by the leading (height of each line), but this does not seem to really work out. Is there a more obvious way of getting the effective height of a column? Thank you for the tip! Isabelle -Original Message

RE: [iText-questions] Create Itext PDF from Java Stored Procedure

2005-09-15 Thread Paulo Soares
You'd better follow up in the mailing list, I've no idea what you are talking about. > -Original Message- > From: Sujatha Bharathan [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 15, 2005 1:40 PM > To: Paulo Soares > Subject: RE: [iText-questions] Create Itext PDF from Java > Stor

Re: [iText-questions] Re: PDF - Character replaced with Question mark

2005-09-15 Thread bruno
Sujatha Bharathan wrote: Ok is it possible to access iText from Java source?? I have no idea what you mean. Has anybody tried that before Has anybody tried doing something else? If so...can i have some examples...if u have. As for your Oracle Stored Procedure question: I haven'

[iText-questions] Re: PDF - Character replaced with Question mark

2005-09-15 Thread Sujatha Bharathan
Ok is it possible to access iText from Java source?? Has anybody tried that before If so...can i have some examples...if u have. Paulo Soares <[EMAIL PROTECTED]> wrote: I've no idea. That's specific to your app server. > -Original Message-> From: Sujatha Bharathan [mailto:[EMAIL P

RE: [iText-questions] Create Itext PDF from Java Stored Procedure

2005-09-15 Thread Paulo Soares
I've no idea. That's specific to your app server. > -Original Message- > From: Sujatha Bharathan [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 15, 2005 12:01 PM > To: Paulo Soares > Subject: RE: [iText-questions] Create Itext PDF from Java > Stored Procedure > > Is it possible

[iText-questions] Re: PDF - Character replaced with Question mark

2005-09-15 Thread bruno
Sujatha Bharathan wrote: Hi, In my PDF document created using iText the following character - ’ is getting replaced with question mark. How can we handle that or avoid it?? Chances are it was replaced BEFORE you added it to the PDF. Where does that character come from? Is it from a databas

[iText-questions] PDF - Character replaced with Question mark

2005-09-15 Thread Sujatha Bharathan
Hi,   In my PDF document created using iText the following character - ’ is getting replaced with question mark. How can we handle that or avoid it?? Thanks   Yahoo! for Good Click here to donate to the Hurricane Katrina relief effort.

Re: [iText-questions] Ref:How to Convert the HTMT to PDF

2005-09-15 Thread bruno
srinivas nara wrote: Hi, I have a HTML page,need to embeded this HTML page to PDF. please could you help me.I have been using ITEXT API. Please could you help me on this. As Paulo has just answered in response to another question: HtmlWorker may be able to help you. For the moment I am al

[iText-questions] Ref:How to Convert the HTMT to PDF

2005-09-15 Thread srinivas nara
Hi, I have a HTML page,need to embeded this HTML page to PDF. please could you help me.I have been using ITEXT API. Please could you help me on this. Thanks in advance. Thanks & Rgds, Sreenivas.N __ Yahoo! Mail - PC Magazine Editors' Choice

RE: [iText-questions] Still having trouble with image borders showing up

2005-09-15 Thread Paulo Soares
It sould work everywhere. Post a small complete example. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Charlie Solomon > Sent: Thursday, September 15, 2005 6:36 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Still

RE: [iText-questions] iText java sources, .net 2.0, & J#

2005-09-15 Thread Paulo Soares
Most of itext.net is not converted and what is converted really needs to be converted. There's no way to go directly from Java to J#. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of David Thielen > Sent: Thursday, September 15, 2005 2:01 AM > To

RE: [iText-questions] Create Itext PDF from Java Stored Procedure

2005-09-15 Thread Paulo Soares
You may have to recompile iText with the JDK version Oracle is using. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Sujatha Bharathan > Sent: Thursday, September 15, 2005 6:09 AM > To: Bruno Lowagie > Cc: itext-questions@lists.sourceforge.net

RE: [iText-questions] iText PDF

2005-09-15 Thread Paulo Soares
Each cell can have a different alignment, you can even have different alignments inside the same cell. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Karen Vardanyan > Sent: Thursday, September 15, 2005 8:13 AM > To: Itext-Questions@Lists.Sourc

[iText-questions] Re: iText# Video embedding

2005-09-15 Thread bruno
Axl wrote: Message body follows: Hello, I'd like to embed video clips into a table or into the text. Is this possible? I've found the PdfAction.Rendition method that seems to be my best choice, but it is not documented... is there any help available? The table would have to be a PdfPTable.

[iText-questions] Table expand along page...

2005-09-15 Thread Luis Felipe
Hello, I have a table, this table is fill whit 16 regs on page but the last page dont have 16 regs... and the table expand along the page. What i can make the table dont expand along the page?. Thanks and sorry for my bad english. Luis Felipe. --

RE: [iText-questions] footer in form of 'Page X of Y' ?

2005-09-15 Thread Paulo Soares
There's an example in the tutorial. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Anand Wadekar > Sent: Wednesday, September 14, 2005 2:13 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] footer in form of 'Page X of

RE: [iText-questions] SuperScript inside a table cell

2005-09-15 Thread Paulo Soares
Use PdfPCell.addElement() the keep the formating. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Pradosh > Sent: Wednesday, September 14, 2005 6:17 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] SuperScript inside a

RE: [iText-questions] How can one balance columns in a PDF using itext?

2005-09-15 Thread Paulo Soares
There's a simple way to do it. Simulate the column with ColumnText with a very big height. Get the effective height used and divide by the number of columns. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Isabelle Ulfsdotter > Sent: Wednesday,

[iText-questions] iText PDF

2005-09-15 Thread Karen Vardanyan
Whether is possible to set the alignment for each row of the PdfPCell content or not.If it is possible please tell me how it can be done.

[iText-questions] Still having trouble with image borders showing up

2005-09-15 Thread Charlie Solomon
I know that v3.05 added the capability to show the image border using "PdfContentByte.AddImage()" (according to the release notes). But I am still not able to get it to work in my application, where I add an image to a chunk, add the chunk to a phrase, then add the phrase to a cell in a table. Am

[iText-questions] Create Itext PDF from Java Stored Procedure

2005-09-15 Thread Sujatha Bharathan
Hi Bruno,    I want to create PDF file using iText through Java stored procedures. As it is similar to java code i tried but it is not able to read the jar files though i gave an import statement like this import com.lowagie.text.*;import com.lowagie.text.pdf.PdfWriter; The iText jar files are set