Hi All, 

I am trying to print a pdf with Japanese Characters as table  format. I am
using below mentioned code.....

               Document document = new Document();
                try {
                        OutputStream os = new FileOutputStream('filename.pdf');
                        PdfWriter.getInstance(document, os);
                        document.open();
                        PdfPTable table;
                        PdfPCell cell;
                        Font font = new 
Font(BaseFont.createFont("KozMinPro-Regular",
"UniJIS-UCS2-H", BaseFont.NOT_EMBEDDED),10, Font.UNDERLINE);
                        String text = "で日本語を使うためには";
                        Paragraph p = new Paragraph(text,  font);
                        p.setAlignment(Paragraph.ALIGN_CENTER);
                        float[] width = {1,4};
                        table = new PdfPTable(width);
                        cell = new PdfPCell(p);
                        table.addCell(cell);
                        document.add(table);
                        document.close();
                } catch (Exception e) {
                        
                }

Using this one I am getting the generated PDF but not the characters. Please
help me out to resolve this one.

Any Kind of help will be appriciated.

-- 
View this message in context: 
http://www.nabble.com/Japanese-Character-as-table-format-for-PDF-tp25430728p25430728.html
Sent from the iText - General mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

Reply via email to