开发者

iReport exported pdf does not show correct font

开发者 https://www.devze.com 2022-12-15 05:49 出处:网络
A PDF generated in iReport using开发者_开发百科 the \'Times New Roman\' font appears to be using \'Arial\' for its print version.

A PDF generated in iReport using开发者_开发百科 the 'Times New Roman' font appears to be using 'Arial' for its print version.

Any idea what the problem is?


I've found that, at least for me, I must explicitly set the pdfEncoding attribute, as well as pdfFontName and isPdfEmbedded, on each font tag in the xml, even when using the system encoding, and that "Identity-H" seems to be needed when using unicode.

So:

  1. Make sure your ttf font files are available on the classpath
  2. <font ... pdfFontName="filename.ttf"
  3.    isPdfEmbedded="true"
  4.    pdfEncoding="Identity-H" ... />


have you set the PDF Font Property to Times New Roman as well, or just the Font property?


Have you tried adding your system fonts directory to the classpath?

0

精彩评论

暂无评论...
验证码 换一张
取 消