[iText-questions] FW: Hebrew support

2003-08-01 Thread Yishai Steinhart
Hi I try to create a document that use Hebrew text. I use the PdfGraphics2D class to draw my text into. All roman text shows well. Hebrew text is dropped. This will happen if I use a Roman font (like Ariel) or a Hebrew font. Any ideas? Thanks -Yishai -

[iText-questions] First Section in Chapter not displaying Chapter Number

2003-08-01 Thread Jon French
When I add a series of Sections to a Chapter with the addSection( Paragraph title, int numberDepth ) method, the section headers display this way: 10. My Tenth Chapter 1. My First Section [[ stuff ]] 10.2 My Second Section [[ stuff ]] 10.3 My Third Section [[ stuff ]] ... Is there a

RE: [iText-questions] How to set overprint when writting a text ?

2003-08-01 Thread Rogerio Cisi
In fact, the way we found to solve this problem was to set the color page plus black when we need the text to be printed in black color. Doing that, the text background stays with the color of the page. This was made even with the previous process that was generate pages with QuarkXpress Scripts a

Re: [iText-questions] ICC support

2003-08-01 Thread Leonard Rosenthol
mAt 09:54 AM 8/1/2003 -0700, Yishai Steinhart wrote: I have jpeg images I want to add to my pdf. They come in 2 flavors (1) original files with an sRGB color space (@the EXIF) OK (2)Byte arrays without (or so I think) a color space. All JPEG files have a colorspace - they may N

[iText-questions] ICC support

2003-08-01 Thread Yishai Steinhart
Hi, I have jpeg images I want to add to my pdf. They come in 2 flavors (1) original files with an sRGB color space (@the EXIF) (2)Byte arrays without (or so I think) a color space. I get better results if the images are printed with the ADOBE 1998 color profile. 1. Do I need to create a profile

Re: [iText-questions] Speeding up the PDF creation

2003-08-01 Thread Leonard Rosenthol
At 08:29 AM 8/1/2003 -0500, [EMAIL PROTECTED] wrote: Currently I am using the IText to create, merge and copy PDF using concat.java. I feel it is slow in creating the PDF. You may want to look at CopyPDF and the PdfStamper instead - that should make things go somewhat faster... I

Re: [iText-questions] Template cutting off bottom of text . . .

2003-08-01 Thread Tom Kofford
Good suggestion, but I wasn't clear: the width is okay -- I can include several additional characters and see all of them as long as they don't go below the writing line (i.e. jpqy go below the line, abcd remain above the line). The "bottom" of the comma is being cut. My template size is 50 x

[iText-questions] How to wrap Image

2003-08-01 Thread Dayananda Shetty
Hello, I am creating Graph using jFreeChart. Then I Embeding into PDF page. When there is no space in page it is not wraping into next page. It is not all displaying anything. Any solution for this.. __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use we

[iText-questions] How to wrap

2003-08-01 Thread Dayananda Shetty
__ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com --- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commer

[iText-questions] 'Advanced iText' - Aligning Text

2003-08-01 Thread Mitter Florian
Hi, I was trying to right-align some text using the PdfContentByte class but I didn't manage to to so. My code looks like this: [Code] cb.beginText(); cb.setFontAndSize(...); cb.setLeading(...); cb.showTextAligned(PdfContentByte.ALIGN_RIGHT, ...); cb.newlineShowText(...);

[iText-questions] Speeding up the PDF creation

2003-08-01 Thread Ramamoorthy_Natarajan
Hi! Currently I am using the IText to create, merge and copy PDF using concat.java. I feel it is slow in creating the PDF. I read a message in the mail archive about setting the fields on the AcroForm causes this or may not be true. Is there a way to speed up this process? Thanks Nats

[iText-questions] PdfPTableEvent and Templates

2003-08-01 Thread Carmona Perez, David
Hi all,   During a PdfPTableEvent, I add templates.  The effect is that all the tables (including regular Table’s in addition to PdfPTable’s) are rendered blank except the border.     class EventsTblIndice implements PdfPTableEvent {     public void tableLayout(PdfPTable ta

[iText-questions] Speed and memory usage

2003-08-01 Thread Carmona Perez, David
Hi all,   I’d like  to share my experience with iText.   I’ve ported my code from FOP to iText, and the speed improvement is amazing, over 10 times quicker.  Memory consumption has dropped from 200 Mb to 32 Mb. In both cases, under the Cocoon environment. David  

RE: [iText-questions] special characters

2003-08-01 Thread Paulo Soares
The Latin built in fonts don't have the infinity character but the Symbol (Bfont has it. Another option is to embed a TT font that has the character (Busing the encoding Identity-H. (B (BBest Regards, (BPaulo Soares (B (B> -Original Message- (B> From: Sam Maina [SMTP:[EMAIL PROTECT

RE: [iText-questions] Any API to decrypt PDF?

2003-08-01 Thread Paulo Soares
If you have the user or owner password iText can read the PDF and write it again with a new set of restrictions. Best Regards, Paulo Soares > -Original Message- > From: Michael Foo [SMTP:[EMAIL PROTECTED] > Sent: Friday, August 01, 2003 11:12 > To: [EMAIL PROTECTED] > Subject: [iTe

RE: [iText-questions] Barcode "Decodbility"

2003-08-01 Thread Paulo Soares
That's possible to happen depending on the printer's resolution. When you print a barcode using the printer commands directly you know where your pixels will fall and the barcode is made to fit the printer. Printing from Acrobat is done from a printer's driver and a pixel may fall in position x or

[iText-questions] Any API to decrypt PDF?

2003-08-01 Thread Michael Foo
Hi, Does anyone know any API that can decrypt a PDF protected by user and owner password? Maybe iText has but I could not recall. Can anyone refresh my memory if iText does? Thank you. :) Regards Michael --- This SF.Net email sponso

RE: [iText-questions] How to set overprint when writting a text?

2003-08-01 Thread Paulo Soares
There's nothing else in PDF to set the overprint. Maybe you can send me a simple PDF created with something else where the overprint works to see how it's done? Best Regards, Paulo Soares > -Original Message- > From: Rogerio Cisi [SMTP:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 17:

RE: [iText-questions] formatting numbers when creating PDF using iText

2003-08-01 Thread Mark Goking
This is java specific. Use NumberFormat class or if you're not contented with it, you can create your own custom class ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 8:24 AM To: [EMAIL PROTECTED] Subject: [iText-questions] formatt