Re: [iText-questions] one Acroform, multiple sets of data

2008-03-28 Thread ralphcook
I'll add one more question -- is there a way to get font information from an AcroFields Item? I want to know if I can set my font to match what was set for the field by whoever created the form. In my shop, the creation of the form is done by a different department, approved by a committee,

Re: [iText-questions] Set position of text

2008-03-28 Thread 1T3XT info
F_P_aus_K wrote: Thanks a lot yes i will do it with tables. I have no experience with iText, and have not known, that i can do this with tables. do you have a docu about iText? Sure: http://www.1t3xt.com/docs/book.php http://itextdocs.lowagie.com/tutorial/ http://www.lowagie.com/itextwiki/

Re: [iText-questions] Set position of text

2008-03-28 Thread 1T3XT info
F_P_aus_K wrote: now i need a identifier for a 'new page' flag. The Tables breaks right in the middle, thats not ok. You really need to have a look at the documentation. We can't do all the work for you. Search for setSplitLate and find out the different options for splitting a PdfPTable. --

Re: [iText-questions] one Acroform, multiple sets of data

2008-03-28 Thread 1T3XT info
ralphcook wrote: This was good information. I adapted the first example to my own program, and it is close to working, and OH it is SO much faster and smaller and less memory-intensive than the other way. That was to be expected: it's more code, but you are handling things on a much lower

Re: [iText-questions] one Acroform, multiple sets of data

2008-03-28 Thread 1T3XT info
ralphcook wrote: I'll add one more question -- is there a way to get font information from an AcroFields Item? I want to know if I can set my font to match what was set for the field by whoever created the form. In my shop, the creation of the form is done by a different department,

Re: [iText-questions] PDF Files created cannot be opened with Adobe Reader 8

2008-03-28 Thread Fabrizio Accatino
A question: how do you create the pdf file? From a standalone application or from a web app (asp.net / jsp / ... ) ? Fabrizio - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-03-28 Thread Paulo Soares
PdfCopyFields has all that is needed to move fields between pages or docs but doesn't expose any methods to do that. I'll see what can be done in the near future. Paulo - Original Message - From: pickm [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Friday, March 28,

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-03-28 Thread Leonard Rosenthol
The difference between copying fields and replacing pages, of course, is that copying fields won't copy EVERYTHING ELSE about the document that may be important (document level scripts, metadata, page actions, etc.) It's simpler to handle by just replacing the content (and resources).

[iText-questions] Font Exception

2008-03-28 Thread charles chandran
Blowagie, Hai, i am here charles. actually i converted word to pdf, but the acrobat viewer bean api can't read the font embedded in pdf file, so I used another library to read it. So may i know: How can we change the font or change the font encryption in an

[iText-questions] (no subject)

2008-03-28 Thread charles chandran
Hi blowagie, I will ask one final question on this rasterization of pdf, can you give me the java code using iText to change the font in an existing pdf file, i am not able to do so, if i am wrong sorry, ignore this question. And you know this not my requirement, it

Re: [iText-questions] (no subject)

2008-03-28 Thread 1T3XT info
charles chandran wrote: I will ask one final question on this rasterization of pdf, can you give me the java code using iText to change the font in an existing pdf file, i am not able to do so, if i am wrong sorry, ignore this question. Wait a minute: you are RASTERIZING a PDF, and then

Re: [iText-questions] Font Exception

2008-03-28 Thread 1T3XT info
charles chandran wrote: Blowagie, Hai, i am here charles. actually i converted word to pdf, but the acrobat viewer bean api can't read the font embedded in pdf file, so I used another library to read it. What did you use to convert the Word document to PDF. Are you

Re: [iText-questions] (no subject)

2008-03-28 Thread charles chandran
Hi Andi, I got the idea, you know my requirement is how to recognize an embedded Arial font with font encryption:built-in. As acrobat viewer api can't recognize these embedded fonts, so i just want them to make recognizable, no need of changing font. or change the font

Re: [iText-questions] (no subject)

2008-03-28 Thread 1T3XT info
charles chandran wrote: Hi Andi, I'm not Aandi; Aandi answered a similar question on news://comp.text.pdf I got the idea, you know my requirement is how to recognize an embedded Arial font with font encryption:built-in. I repeat: I don't know anything about your

[iText-questions] Reg:unsubscribe the email alert

2008-03-28 Thread balaji.kuttuva
Hi, Here, my mailbox getting full so stop the email alert. I tried to change but i cann't please help me Thanks, Bala_kj - Check out the new SourceForge.net Marketplace. It's the best place to buy or

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-03-28 Thread pickm
Paulo, That would be great! I think it is an extremely valuable aspect to expose for use. Is there anything I can tweak on my side so I can move along in the short-term? Are there a couple of specific methods I can expose and get this functionality? Thank you! Paulo Soares wrote:

Re: [iText-questions] Reg:unsubscribe the email alert

2008-03-28 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Hi, Here, my mailbox getting full so stop the email alert. I tried to change but i cann't please help me There is no such thing as an email alert. You are subscribed to a mailing list, hence you get all mails sent to the list. You can unsubscribe here

Re: [iText-questions] PDF Files created cannot be opened with Adobe Reader 8

2008-03-28 Thread muleal
I'm creating from a web application. I use: PdfWriter.GetInstance(document, response.OutputStream); The resources used during creation are: Paragraph Table Thanks in advance. PS: A have attached the file created (if it helps). Fabrizio Accatino wrote: A question: how do you create the

[iText-questions] Prevent iText from escaping tags

2008-03-28 Thread MGS
Hi, Is there anyway to prevent iText from escaping HTML tags? I'm trying to print somethign from our database, stored as (for example): Heading some text and italic text But, as you may already be aware, the tags are being printed to screen rather than performing their job to alter the text. Any

Re: [iText-questions] PDF Files created cannot be opened with Adobe Reader 8

2008-03-28 Thread Carlos de Luna Saenz
One of the common mistakes is that, in ocasions, you don't trap an exception and the server (tomcat for example) uses not the binary output stream but the text one, verify that an exception is not ocurring and that you are closing the stream correctly. - Mensaje original De: muleal

Re: [iText-questions] PDF Files created cannot be opened with Adobe Reader 8

2008-03-28 Thread muleal
I GOT IT I was trying to create the PDF file with a button inside of one web page. During creation, I was using the same Response object to create the page and the PDF...so PDF file was being created with HTML garbage (in the end of file). I created on the load method of a page totally

Re: [iText-questions] Prevent iText from escaping tags

2008-03-28 Thread Bruno Lowagie
MGS wrote: Hi, Is there anyway to prevent iText from escaping HTML tags? I'm trying to print somethign from our database, stored as (for example): Heading some text and italic text But, as you may already be aware, the tags are being printed to screen rather than performing their job to

Re: [iText-questions] PDF Files created cannot be opened with Adobe Reader 8

2008-03-28 Thread Bruno Lowagie
muleal wrote: I GOT IT I was trying to create the PDF file with a button inside of one web page. During creation, I was using the same Response object to create the page and the PDF...so PDF file was being created with HTML garbage (in the end of file). Aha, that's what I wrote on p539

Re: [iText-questions] Release iText 2.1.0

2008-03-28 Thread Tim Troy
I have a regression problem with 2.1.0. I am using the DisplayTag 1.1 library with export to pdf option. Everything is fine with 2.0.4. I did a drop-in replacement of the iText jar. The exception thrown by the server is: javax.servlet.ServletException:

Re: [iText-questions] Release iText 2.1.0

2008-03-28 Thread Xavier Le Vourch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tim Troy wrote: | I have a regression problem with 2.1.0. I am using the DisplayTag 1.1 | library with export to pdf option. Everything is fine with 2.0.4. I | did a drop-in replacement of the iText jar. The exception thrown by | the server is: |

[iText-questions] Deprecated methods removed in iText 2.1.0

2008-03-28 Thread Xavier Le Vourch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As I just mentioned in a previous message, a number of deprecated methods have been removed in iText 2.1.0. All of them had been deprecated for a long time, i.e. 2.0.3 or so. To help people migrate to the new version, the jdiff output we use for QA

[iText-questions] iText dependency on print driver?

2008-03-28 Thread Tom Henricksen
We currently use iText 1.3.1 via JasperReports. Someone posed a question to me whether iText has any dependency on the print driver of the Application server? I don't think so but I am not certain. Does anyone know if there is a dependency from iText on the application servers driver?

Re: [iText-questions] Set position of text

2008-03-28 Thread F_P_aus_K
You really need to have a look at the documentation. We can't do all the work for you. sorry, thats my question, where i can get a documantation? thx Frank 1T3XT info wrote: F_P_aus_K wrote: now i need a identifier for a 'new page' flag. The Tables breaks right in the middle, thats not

Re: [iText-questions] Set position of text

2008-03-28 Thread mister bean
The book http://www.amazon.com/iText-Action-Creating-Manipulating-PDF/dp/1932394796/ref=sr_1_1?ie=UTF8s=booksqid=1206745091sr=8-1 is the principal documentation. An eBook version is available at: http://www.manning.com/lowagie/ For on-line explanations, please Google iText Documentation ---mr.

Re: [iText-questions] iText dependency on print driver?

2008-03-28 Thread mister bean
no dependency in most cases. Itext writes the PDF file to a file or a stream. Printing the file is a downstream event unless you direct the PDF stream to the printer (see pages 581-2 in the book). You'll need to see whether that is being done in your situation. But barring that, though, you