[iText-questions] Flying saucer doesn't display/render CJK extension B (Japanese) characters on PDF

2015-08-03 Thread Deepak Thorat
I am using flying saucer to generate report in PDF. That internally consumes itext 2.1.7 to generate PDF. I am using xml that contains CJK characters (Japanese) and xsl style sheet

[iText-questions] Itext-questions-request

2015-08-03 Thread Deepak Thorat
Hi, Please add me to itext question forum. My mail id: deepak.4...@gmail.com Thanks Deepak -- ___ iText-questions mailing list iText-questions@lists.sourceforge.net https

Re: [iText-questions] Is there a way to flatten dynamic XFA form using itext ?

2009-01-01 Thread Deepak C
But i tried, even i am not able to flatten static pdfs Can u give me a code snippet plz ? -- View this message in context: http://www.nabble.com/Is-there-a-way-to-flatten-dynamic-XFA-form-using-itext---tp21241581p21243242.html Sent from the iText - General mailing list archive at Nabble.com. -

Re: [iText-questions] Is there a way to flatten dynamic XFA form using itext ?

2009-01-01 Thread Deepak C
Itext cannot be used to flatten xfa based forms. But i parse the xdp document and set the values for the fields and change all the fields to a normal text, even though i could'nt flatten it. any help., ? -- View this message in context: http://www.nabble.com/Is-there-a-way-to-flatten-dynamic-XF

Re: [iText-questions] Can i convert an xdp to pdf using itext?

2009-01-01 Thread Deepak C
Thanks... But i don't have any reference pdf. i Just have an *.xdp, which i need to save it as a pdf I have to directly load an xdp and save it as a pdf (Without an PdfReader instance) Can u give an example plz., ? -- View this message in context: http://www.nabble.com/Can-i-convert-an-xdp-to-

[iText-questions] Can i convert an xdp to pdf using itext?

2009-01-01 Thread Deepak C
I have an*. xdp, i need to convert this xdp into a pdf. Can i use the XfaForm class in Itext and directly set the xdp as dom document without any pdfReader and save it as a pdf ? Plz Help., -- View this message in context: http://www.nabble.com/Can-i-convert-an-xdp-to-pdf-using-itext--tp212418

[iText-questions] Is there a way to flatten dynamic XFA form using itext ?

2009-01-01 Thread Deepak C
I have a dynamic pdf created using LiveCycle designer I need to flatten this dynamic pdf using itext., I parsed the actual dom document (XFA document) using XfaForm in itext and Set the required values. After setting the new modified document, when i flatten the pdf the field values are not displ

[iText-questions] Regarding XML Support

2008-07-15 Thread Deepak Sharma
Hii, I am using itext for PDF conversion and its working great. Thanks to Itext team. I want to know whether itext give support to xml conversion also..? I mean from any format to xml.. I will look forward to your response. Thanks & Regards Deepak Sh

[iText-questions] yellow line at the end of page

2008-04-26 Thread Deepak Gupta
Hi, I have generated an i-Text PDF report; But I am getting a very peculiar error. At the end of every page (except last page), I am getting a yellow line, but the report looks fine. I don't understand where it is coming from. Please Help. Page size used is : A4.rotate(), left, right, top, bottom

[iText-questions] Query

2005-09-28 Thread deepak sharma
code for printing the already exisitng PDF instead of creating PDF with code. or in that matter some other iText api for printing exisitng pdf to local printer without user intervention. I appreciate your response on the same. Thanks a lot.. Cheers Deepak

[iText-questions] Split PDF using iText

2005-06-01 Thread Deepak Gupta
Does the itext read the entire pdf into memory before it splits it? I am running into memory issues (out of memory) when I try to split larger pdfs. Can someone suggest a way to split the pdf without allocating too much heap size. Thanks in advnace. Deepak Gupta

[iText-questions] HTML to PDF

2004-03-16 Thread Deepak PM
Hi, I am trying to convert a HTML document to PDF Document, I am using the following code…   public static void main( String[] args ) {    Document  m_oDocument  = new Document(  );    PdfWriter m_oPdfWriter = null;    try    {

[iText-questions] Please Help me..

2004-03-02 Thread Deepak
Hello all, Can anybody tell me the way by which you can stop saving a PDF from IE 5.5 Onwards. I am Itext API to create a PDF document. Any help in this regard would be greatly appreciated. Please reply me at [EMAIL PROTECTED]   With Regards, Deepak Kumur

[iText-questions] Alignment Problem

2003-01-23 Thread Deepak Chandrasheker
hi,         i am using ColumnText.setSimpleColumn to display some text in the PDF file. i want the horizontal alignment to be LEFT and the vertical alignment to be MIDDLE. i tried to use Element.ALIGN_LEFT|Element.ALIGN_MIDDLE in the setSimpleColumn( ) method. but it does not seem to work.

[iText-questions] Using BufferedResponse in Servlet

2003-01-21 Thread Deepak Chandrasheker
hi,         how do i use a BufferedResponse in a servlet ? presently i am using       PdfWriter.getInstance(Document document, ByteArrayOutputStream baos);   and later...   ServletOutputStream out = response.getOutputStream();    baos.writeTo(out);   what is the advantage 

[iText-questions] Doubt about PdfPtable

2003-01-21 Thread Deepak Chandrasheker
hi,     is it not possible to have the table split to a seperate page when using the PdfPTable class ? the table that i generate using PdfPTable seems to end at the end of the page. i am using writeSelectedRows( ) method to display the table. if i use document.add( ) method, the table is spl

[iText-questions] Doubt about PdfPTable

2003-01-21 Thread Deepak Chandrasheker
hi,     is it not possible to have the table split to a seperate page when using the PdfPTable class ? the table that i generate using PdfPTable seems to end at the end of the page. i am using writeSelectedRows( ) method to display the table. if i use document.add( ) method, the table is sp

[iText-questions] Table generation

2003-01-21 Thread Deepak Chandrasheker
hi,         i am trying to create a table using PdfPTable class in a sevlet and sending it to the browser. the data is coming from a database. now, my problem is that when the number of rows is high, the document is not being displayed and the browser status is giving an error stating 'erro

[iText-questions] Doubt

2003-01-17 Thread Deepak Chandrasheker
hi,       what is 'leading' parameter in ColumnText.setSimpleColumn() function ? what is its significance ? thanking you in advance.   yours, dc.

[iText-questions] Creating 2 different fonts using PdfContentByte (Beginner)

2003-01-16 Thread Deepak Chandrasheker
hi,     i am using iText for the first time. i went thru' the tutorial, but could not find out how to create 2 different fonts for the same document using PdfContentByte. do we have to use setFontAndSize( ) method with different BaseFont objects everytime we want to change the font ?   than