[iText-questions] (no subject)

2002-12-03 Thread Ramamoorthy
all, can u please unsubscribe me from the mail list ? my mail address is [EMAIL PROTECTED] thanks, ramamoorthy --- This SF.net email is sponsored by: Microsoft Visual Studio.NET comprehensive development tool, built to increase your pro

RE: [iText-questions] :(

2002-12-03 Thread New, Cecil (GEAE)
As shown, the text content are child nodes of the document root node (). The para tag is misleading since it appears to be actually designed to something, such a align the text after it somehow. But since the tag is empty (that is, it has no text content), it can do no such thing. If the text co

[iText-questions] :(

2002-12-03 Thread Eugene
Blah blah blah Blah blah blah This is a template of some document. And "Blah blah blah" phrase is a static text in it. And it will be some data from the DataBase at the place of the tag. This static text put out document format: it can be only the left alignment text after it. Eugene

RE: [iText-questions] OutOfMemoryError

2002-12-03 Thread Aaron Kelley
I thought it might come down to that. The only hope that I had is that all my manipulations work around 25MB of memory and I was only running into memory problems when using the iText library. I understand, though, that these images are rather large. There is one work around I know I can do, but

RE: [iText-questions] OutOfMemoryError

2002-12-03 Thread Paulo Soares
The problem here is that you want the image in memory to manipulate it but don't want iText to use any memory to do its job! You want to have the cake and eat it too. Depending on the image type and the manipulations you did, it may be possible to have a custom way to fill the array using tiles or

RE: [iText-questions] OutOfMemoryError

2002-12-03 Thread Aaron Kelley
I was able to get it to work when I provided 350MB of memory to the JVM. This is way too much to actually be useful. I need to manipulate the image, which is natively a tiff, so I will have it in memory as a BufferedImage. Is there any way to use the Image.getInstance methods under these circumst

RE: [iText-questions] Regarding Chinese Characters

2002-12-03 Thread Paulo Soares
Not really an iText problem. See the javadoc for java.util.Properties and the escape characters. If you just use a resource with chinese text inside it depends on the encoding it was save in (UTF8, Big5, GBK, etc); a matching encoding must be used on reading to convert it to Unicode. Best Regards,

RE: [iText-questions] OutOfMemoryError

2002-12-03 Thread Paulo Soares
The images are always converted to an RGB array and only then eventually converted to bw and compressed. It will always need a lot of memory, even if breafly. The solution depends on the initiall format, PNG can be inserted with the same file size. Best Regards, Paulo Soares > -Original Messa

RE: [iText-questions] Printing PDF Documents in Web

2002-12-03 Thread Paulo Soares
That's the way the Acrobat plug-in works. Best regards, Paulo Soares > -Original Message- > From: Sameer Karkhanis [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, July 24, 2001 4:25 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Printing PDF Documents in Web > > > Hi > > I'

[iText-questions] RTF to HTML conversion & Vice-versa.

2002-12-03 Thread Imtiaz Ahmed
Hello, I want to convert HTML block into RTF block & vice-versa using java preferably. Do the needful . Thanx & Regards, Imtiaz.

RE: [iText-questions] Help me! Read pdf files!

2002-12-03 Thread Paulo Soares
You can't. Best Regards, Paulo Soares > -Original Message- > From: HUYNH Huu Hung [SMTP:[EMAIL PROTECTED]] > Sent: Monday, December 02, 2002 19:50 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Help me! Read pdf files! > > Dear, > I want to read paragraph in pdf files and in

[iText-questions] Regarding Chinese Characters

2002-12-03 Thread SRIDHARAN Aravind
Hi All, I have followed the instructions provided in the tutorial for displaying chinese characters on a PDF. It comes fine and ok. I use chinese NT and hope there is no problem. But there is a problem if I read chinese texts from a property file and display the same on a PDF. It comes as junk char

Re: [iText-questions] templates & alignment

2002-12-03 Thread Bruno
Quoting Eugene <[EMAIL PROTECTED]>: > Is it possible to parse this kind of document correctly? If you correct it this way: > > > Blah blah blah > > Blah blah blah > > You have to map paragraph_with_nonleft_alignment to paragraph and set the value of the align attribute to the alignment o