[iText-questions] Fwd: How to Draw a Horizontal Line in PDF

2004-07-07 Thread Vishal Singal
Hello, This issue is also fixed now :-p May i was just impatient, but I figured this out as well..!! Regards Vishal Vishal Singal 07/07/04 03:26pm Hello, I need to draw a horizontal line in the PDF document. (as achieved by HR in HTML) I would appreciate if anyone here can tell me how to

[iText-questions] How to Draw a Horizontal Line in PDF

2004-07-07 Thread Vishal Singal
Hello, I need to draw a horizontal line in the PDF document. (as achieved by HR in HTML) I would appreciate if anyone here can tell me how to do that. Thanks and Regards Vishal --- This SF.Net email sponsored by Black Hat Briefings

[iText-questions] Strange Problem ....

2004-07-07 Thread jaysheel
Hi All, Iam facing a Strange Problem.Iam using Struts framework and in one of my Action class iam calling database stored procedure which populates the data into a temp table From where I retrieve the data and create a PDF using itext api. The Strange thing is Suppose User A has made a request

[iText-questions] Question re: iText

2004-07-07 Thread Marvin Shapiro
I am trying the first example in your tutorial: Chap0101.java. I have a folder named PDF, and in that folder I have com (your com folder, containing lowagie) and Chap0101.java I created a Code Warrior project, Chap0101.mcp, in that folder, and when I try to compile it with

[iText-questions] Leading Issue

2004-07-07 Thread Trevor Linton
Hi, Im having a issue with leading in paragraphs. Ive been working with them and havent been able to figure out how to adjust the leading for just one line of text with in a paragraph that has an image inline with the text. The image overlaps the text on the line above, if I set the

[iText-questions] checkbox character

2004-07-07 Thread PLOYAERT Thierry (WYNIWYG)
Title: checkbox character Hi, How can i represent a checkbox (unchecked) in text mode (more precisely not absolute positionning). I have tried \u02610 character with Helvetica font without success ... Thanks Thierry

[iText-questions] Images and PDF File Size

2004-07-07 Thread Youssef Eldakar
I am writing PDF documents in iText where each page is originally a TIFF. Each TIFF is either a bilevel or RGB image. PDF file size being a priority, I am interested in learning what is the most optimal method for storing these images into the PDF documents as far as file size is concerned.

[iText-questions] Question about iText

2004-07-07 Thread pmprograms
Hi I'm using iText in my Java program. I think it's a good product. But I have a problem. I don't know how can I set bold, italic and underline for an absolute-positioned text. I mean: cb = writer.getDirectContent(); page1 = writer.getImportedPage(reader, 1) cb.addTemplate(page1, 0, 0);

RE: [iText-questions] Get portion of PDF using ITEXTSHARP

2004-07-07 Thread Paulo Soares
iTextSharp doesn't support alpha. Best Regards, Paulo Soares -Original Message- From: Kalpesh Raval [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 6:47 PM To: Paulo Soares; [EMAIL PROTECTED] Subject: RE: [iText-questions] Get portion of PDF using ITEXTSHARP also, i

RE: [iText-questions] Question about iText

2004-07-07 Thread Mohamed Ramadan
you can refer to ch9 (Fonts) to find the answer if you use ttf fonts you can use the(bold ,italic,..) versions of the font as follows to write with arial italic use the font ariali instead of arial as follows BaseFont arialItalic = BaseFont.createFont(ariali.ttf, BaseFont.WINANSI,

RE: [iText-questions] Question re: iText

2004-07-07 Thread Mohamed Ramadan
I think you need to add the path to iText.jar to you CLASSPATH enviroment variable thank you -Original Message- From: Marvin Shapiro [mailto:[EMAIL PROTECTED] Sent: 20/05/1425 12:14 To: iText Cc: Subject: [iText-questions]

RE: [iText-questions] checkbox character

2004-07-07 Thread Paulo Soares
Title: checkbox character Try "\u006f" from the font ZapfDingbats. Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of PLOYAERT Thierry (WYNIWYG)Sent: Wednesday, July 07, 2004 8:59 AMTo: '[EMAIL PROTECTED]'Subject:

RE: [iText-questions] Images and PDF File Size

2004-07-07 Thread Paulo Soares
For bilevel images JBIG2 is the best but is not supported by iText. iText uses the CCITT G4 compression that is not that bad. For RGB pictures JPEG2000 is the best but is not supported by iText, plain jpeg is the alternative. For RGB technical images use PNG that is supported by iText. iText

RE: [iText-questions] Question about iText

2004-07-07 Thread Paulo Soares
See ColumnText.showTextAligned(). Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 10:01 AM To: [EMAIL PROTECTED] Subject: [iText-questions] Question about iText Hi

Re: [iText-questions] Images and PDF File Size

2004-07-07 Thread Leonard Rosenthol
At 04:48 AM 7/7/2004, Youssef Eldakar wrote: I am writing PDF documents in iText where each page is originally a TIFF. Each TIFF is either a bilevel or RGB image. PDF file size being a priority, I am interested in learning what is the most optimal method for storing these images into the PDF

RE: [iText-questions] Get portion of PDF using ITEXTSHARP

2004-07-07 Thread Kalpesh Raval
No work around either Regards, kalpesh -Original Message- From: Paulo Soares [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 6:45 AM To: Kalpesh Raval; [EMAIL PROTECTED] Subject: RE: [iText-questions] Get portion of PDF using ITEXTSHARP iTextSharp doesn't support alpha.

[iText-questions] IKVM and iText to .Net

2004-07-07 Thread David Brain
Hi, I've noticed a number of people on the list using iText.Net and sometimes encountering problems - some caused by it being an based on a less up to date version of iText. I recently saw this 'http://www.ikvm.net/' project that may be of some use. Currently I do not have time to test this,

RE: [iText-questions] Get portion of PDF using ITEXTSHARP

2004-07-07 Thread Paulo Soares
Are you kidding? That's a pre-historic implementation. Use the version at http://www.ujihara.jp/iTextdotNET/en/. They also have examples in C#. Best Regards, Paulo Soares -Original Message- From: Kalpesh Raval [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:49 PM To:

RE: [iText-questions] IKVM and iText to .Net

2004-07-07 Thread Paulo Soares
The only problem here is that people don't listen or don't want to listen. There are two .NET implementations, one at http://itextsharp.sourceforge.net/ that is based and frozen at version 0.95 and another at http://www.ujihara.jp/iTextdotNET/en/ that is up to date. Why people chose the first one

RE: [iText-questions] Images and PDF File Size

2004-07-07 Thread Bill Ensley
If file size is your priority, first convert your Java image into a JPEG and then dump the JPEG into the PDF directly: ByteArrayOutputStream baos = new ByteArrayOutputStream(); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(baos); JPEGEncodeParam param =

[iText-questions] How to implement OCR Font A family in itext.jar

2004-07-07 Thread Chenna . Dulla
Hi, I want to generate the pdf file and that pdf file text should use OCR Font A family. How can I implement OCR Font family in itext.jar. I didn't see any OCR Font family in itext.jar file. Please can you one help me how can I apply OCR Font family to text of pdf file Thanks. This

RE: [iText-questions] How to implement OCR Font A family in itext.jar

2004-07-07 Thread Paulo Soares
You buy the font and use it. Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 2:31 PM To: [EMAIL PROTECTED] Subject: [iText-questions] How to implement OCR Font A family

RE: [iText-questions] Get portion of PDF using ITEXTSHARP

2004-07-07 Thread Kalpesh Raval
I downloaded the ITEXT component and have also changed the code, still when i try to fill the color using setColorFill it needs java.awt.color as the parameter and if i do try to make an instance of java.awt.color the only constructors it has is java.awt.color(r,g,b) java.awt.color(rf,gf,bf)

[iText-questions] Support for First Line Indent ???

2004-07-07 Thread Keith L. Musser
I'm currently finding iText 1.02b useful for generating PDF. Nice job on an easy to use API. :) There is one capability that I need which, as best I can tell, is not supported: I'd like to be able to easily output something formatted roughly as follows: 1. My first item. My first item. My

[iText-questions] Add Form Field

2004-07-07 Thread wang yun
Dear Support, I have converted an image into a PDF page. How can I add form fields (Text, check box) into this page? Thanks for help, Yun --- This SF.Net email sponsored by Black Hat Briefings Training. Attend Black Hat Briefings Training,