Re[2]: [iText-questions] How to create ps file for print by iText

2005-08-31 Thread yuanjk
Thanks for your reply. The LPR seems a great tools to print on a LPD Server by java. The printer which I used to print pdf is that Fujixerox DocuPrint C3530. It support print pdf directly. And I had wrote a programe by using javax.print.* directly to print pdf file. and can print A4 size

[iText-questions] difficulty in using two variables one after the other ...

2005-08-31 Thread Abhishek Sharma
I am using two variables(annexGF and isItemDesTxtval) one after the other ... the following way : xsl:for-each select=statements/tabularStatements/tabularStatement xsl:variable name=annexGF select=annexGF/ xsl:if test=$annexGF='0' xsl:variable name=isItemDesTxtval

[iText-questions] Form field text shifting after setField?

2005-08-31 Thread Chris Miller
Hi everyone, thanks in advance for your support. I'm experiencing some problems filling form fields on the fly. I have seen a number of other posts regarding this issue to no avail, however, I'm confident it can be resolved. The problem involves the movement or shifting of form field text

RE: [iText-questions] Form field text shifting after setField?

2005-08-31 Thread Paulo Soares
The form field text layout is not even the same across Acrobat versions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Miller Sent: Wednesday, August 31, 2005 10:50 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions]

RE: [iText-questions] Problem with OTF CJK Font Embedding

2005-08-31 Thread Paulo Soares
See if the problem is solved in the CVS. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paulo Soares Sent: Sunday, August 28, 2005 1:45 AM To: [EMAIL PROTECTED] Cc: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Problem

[iText-questions] Table based report

2005-08-31 Thread S. Radojcin
-Simple request (I hope): I would like to generate pdf report from database table (or any other table-like structure, like two-dim. array) with fixed number of columns, and unknown number of rows (until run-time). In the other words, I wish to copy every Table row to the resulting output pdf

Re: [iText-questions] Table based report

2005-08-31 Thread bruno
S. Radojcin wrote: -Simple request (I hope): I would like to generate pdf report from database table (or any other table-like structure, like two-dim. array) with fixed number of columns, and unknown number of rows (until run-time). In the other words, I wish to copy every Table row to the

[iText-questions] PDF Printing to Network printer

2005-08-31 Thread Roopa Kannan
Dear iText support, Thanks for a wonderful piece of software that makes me breathe easy now... I solicit your advice on the following requirement of mine. I have a Java Stored procedure through which I generate a PDF report using the iText API. After generating the PDF, I want to print

[iText-questions] Document.getPageSize()/.setPageSize() note (FYI)

2005-08-31 Thread Jeff Buhrt
If in a method you: Document doc = ... doc.setPageSize(PageSize.LETTER); ... Rectangle rec = doc.getPageSize(); rec.setRight(rec.width() + 10); doc.setPageSize(rec); The page size of the static PageSize.LETTER object in memory will be permanently (until the restart of your servlet

[iText-questions] Reusing the Font from a Textfield

2005-08-31 Thread Sven Hansen
Hello, I need to fill a TextField with Unicode characters. Because this is not implemented, I would like to make a workaround. The original code: private void setText(PdfStamper stamp, String fieldName, String text) throws IOException, DocumentException { AcroFields form =

[iText-questions] Re: How to create ps file for print by iText

2005-08-31 Thread Carsten Hammer
I cant tell you how to solve your pagesize problem because my experience is that the pagesize can not in a portable way adjusted. While postscript files do not neccessarily contain page size information pdf files always contain page size information and because of that most printers I know

RE: [iText-questions] Form field text shifting after setField?

2005-08-31 Thread Chris Miller
Regardless, there is definitely something not right about the way the text is dropped into the field and the problem we are seeing is occurring across versions, did you test the demo? I just need a solution asap so that I can start taking orders :) Please take a second look for me and/or

Re: [iText-questions] Form field text shifting after setField?

2005-08-31 Thread Paulo Soares
Text layout in form fields is not documented. iText tries to approximate Acrobat 5 layout but it's not exact and if you go to newer Acrobat versions it's even worse. You can change or duplicate TextField to suit your needs or, better yet, as you are flattening just get the coordinates of the field