It will work correctly in the next release.

----- Original Message ----- 
From: "Kenneth Ho" <[EMAIL PROTECTED]>
To: "Paulo Soares" <[EMAIL PROTECTED]>;
<[email protected]>
Sent: Saturday, March 05, 2005 9:16 PM
Subject: Re: [iText-questions] Chinese FDF Filling Problem!


> Thanks, Paulo. In fact, the FDF is captured by one of my servlet program.
I
> have created a
> PDF form with the submit button (pointing to the servlet URL)  for the
user
> to submit the data.
>
> Also, I try to use the acrobat professional to import the FDF into the PDF
> form. It is successful to import the
> data in a good format. I think you can make the itext to do so. :) Thanks.
>
> Here is attachment with the correct display format.
>
> Regards,
> Kenneth Ho
>
> ----- Original Message ----- 
> From: "Paulo Soares" <[EMAIL PROTECTED]>
> To: "Kenneth Ho" <[EMAIL PROTECTED]>;
> <[email protected]>
> Sent: Sunday, March 06, 2005 4:58 AM
> Subject: [itext-question] Re: [iText-questions] Chinese FDF Filling
Problem!
>
>
> > Your FDF is encoded in Big5 and only Unicode is supported. I'll see what
I
> > can do about that. What I need is an image of the correctly filled pdf
to
> > know if have the right characters.
> >
> > ----- Original Message ----- 
> > From: "Kenneth Ho" <[EMAIL PROTECTED]>
> > To: <[email protected]>
> > Sent: Saturday, March 05, 2005 8:03 PM
> > Subject: [iText-questions] Chinese FDF Filling Problem!
> >
> >
> > Dear All,
> >
> > I have written a demo program for me to fill the FDF file into PDF form
as
> > follow:
> > But the chinese data is shown in a bad format. Is there anyone for me to
> > slove the problem?
> >
> > thanks,
> > Kenneth Ho
> >
> > ps. I have already installed the iTextAsian.jar for me to compile the
> > program.
> >
> >
////////////////////////////////////////////////////////////////////////////
> > ////////////////////////////////////////
> > import com.lowagie.text.*;
> > import com.lowagie.text.pdf.*;
> >
> > import java.io.*;
> >
> > public class ChineseTest {
> >
> > public static void main(String[] args) {
> >  try {
> >
> >   FdfReader fdfreader = new FdfReader("C:\\ImportData.fdf");
> >   PdfReader pdfreader = new PdfReader("C:\\OutputForm.pdf");
> >   PdfStamper stamp = new PdfStamper(pdfreader, new
> > FileOutputStream("C:\\Final.pdf"));
> >
> >   AcroFields form1 = stamp.getAcroFields();
> >   form1.setFields(fdfreader);
> >   stamp.setFormFlattening(true);
> >   stamp.close();
> >  } catch (Exception e){e.printStackTrace();}
> >
> > }
> > }
> >
////////////////////////////////////////////////////////////////////////////
> > ////////////////////////////////////////
> >
> >
> >
> >
> > -------------------------------------------------------
> > SF email is sponsored by - The IT Product Guide
> > Read honest & candid reviews on hundreds of IT Products from real users.
> > Discover which products truly live up to the hype. Start reading now.
> > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> > _______________________________________________
> > iText-questions mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/itext-questions
> >
> >
>



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to