Type: Font
Default: Arial 10 point
Allowed values: Any accessible Java.awt.font.
Note: the Font should be set directly, using setFont(font), in applications calling the class directly or using the jar as a JavaBean. For servlets the font name, style and size may be specified as individual text values for the following properties:
FNAME = the font family name, eg. Barcode.setParam(“FNAME”,”Arial”);
FSIZE = the font height in points, eg. Barcode.setParam(“FSIZE”,”10”);
FSTYLE = the font style, eg. Barcode.setParam(“FSTYLE”,”0”);
where:
0 =
java.awt.Font.PLAIN
1=java.awt.Font.BOLD
2=java.awt.Font.ITALIC
3=java.awt.Font.BOLD
+ java.awt.Font.ITALIC
More: