Hi,
I defined a tag map, and got a xml data file. I want to convert the xml data file to PDF by using iText. The question is how to embed fonts (e.g. polish font, chinese font) into target PDF when converting xml to PDF?
Thanks.
Hi,
I defined a tag map, and got a xml data file. I want to convert the xml data file to PDF by using iText. The question is how to embed fonts (e.g. polish font, chinese font) into target PDF when converting xml to PDF?
Thanks.
If you are doing more work with iText, you may want to invest into the iText book - it has examples for all the features of iText.
There is a parameter that you specify when you create your font that defines font embedding:
BaseFont helvetica = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.EMBEDDED);
Font font = new Font(helvetica, 12, Font.NORMAL);
You can find more iText font related examples here: http://1t3xt.info/examples/browse/?page=toc&id=14
I'm having a problem with embedding in PDF documents Please find the description here
http://www.thejavacode.com/itext-embeded-font-problem-t9792.html