iReport Version : 3.7.1
I approached this problem in two ways.
My first method
I am creating a pdf
page in iReport
and I have one of the fields (from database) set to a font Gujarati-Salarl (A font for a regional language of India).
This font is available in the font list of iReport
.
When I hit preview I get the desired output , with the field in the required font style.
Everything till here is fine.
But the pdf
file generated still contains the same original font in English characters.
The result is same whether i call the report from the application or from a JAVA
file.
After a bit of study I found this , a second method
JRProperties.setProperty("net.sf.jasperreports.default.pdf.font.name", "C:\\Gujrati-Saral-1.ttf");
This sets the font of the pdf
to the ttf
font provided but now the entire pdf
comes in the Guarati-saral font which is not what I am looking for..
Is there a way to specifically apply this font only to that one particular field?
or
when going by the second method is there a way to not applying the font Guarati-saral to all other fields except the required one ?
You should use the
Font Extensions
mechanism.After creating the font and exporting it as a jar file you should add generated jar file to the application classpath.
a) Creating new font in iReport (via Options -> Fonts -> "Install Font" Button)
b) Exporting the new font (or the existing one) as jar file in iReport (via Options -> Fonts -> "Export as extension" Button)
a) Creating new font in JasperReports Studio (via Window -> Preferences -> JasperStudio -> Fonts -> "Add" Button)
b) Configure your fonts
c) Create JAR with your fonts in it
You can find more information about using
Font Extensions
here.For those, who need Russian language in Jasper Reports (at least in opennms of old versions), following combination does the trick without using the Font Extension:
Font Name: SanSerif PDF Font: Courier PDF Encoding: CP1251 PDF Embedded: Yes (not sure, may be it works even without)
Alexey Bakhmutov
if you have problems displaying UTF-8 characters in the pdf, from version 4.8.0 of the IReport, no need to do nothing! Just change the font of the cells in the table from sanserif to Dejavu sans. thats it.
Select the field and go to filed properties and change the
with these changes in I got arabic data showing in PDF.