CITIZEN Android Label Print SDK — Programming Manual
2.3.4 drawTextLocalFont method
Syntax
1) int drawTextLocalFont (String data, Typeface fontType, int rotation, int hRatio, int vRatio,
int point, int style, int x, int y)
2) int drawTextLocalFont (String data, Typeface fontType, int rotation, int hRatio, int vRatio,
int point, int style, int x, int y, int resolution)
3) int drawTextLocalFont (String data, Typeface fontType, int rotation, int hRatio, int vRatio,
int point, int style, int x, int y, int resolution, int measurementUnit)
Parameters
CLS_RT_NORMAL: No rotation
CLS_RT_RIGHT90: Rotate CW 90
CLS_RT_ROTATE180: Rotate CW 180
CLS_RT_LEFT90: Rotate CCW 90
CLS_FNT_DEFAULT: None
CLS_FNT_BOLD: Bold
CLS_FNT_REVERSE: Reverse
CLS_FNT_UNDERLINE: Underline
CLS_FNT_ITALIC: Italic
CLS_FNT_STRIKEOUT: Strikethrough
* Use "|" to specify multiple options.
0000 – 9999
* The origin is at bottom-left.(0, 0)
CLS_PRT_RES_203(203dpi)
CLS_PRT_RES_300(300dpi)
* 203 dpi by default.
Printer Metric / Inch
setting
CLS_UNIT_MILLI
CLS_UNIT_INCH
* CLS_UNIT_INCH by default.
Description
Draws characters by using a font installed in the computer, with specifying options such as rotation,
magnification, size and coordinates. What this method does internally is to generate a graphic image
based on the given parameters, to store the graphic image into the printer and to print the stored
graphic image. This doesn't check the file availability or validity. To print with the specified font
size, specify the resolution as same as the actual printer. When specifying image rotation, it is
necessary to specify the resolution and unit selection settings according to the printer for reference
position correction.
Return value
Returns CLS_SUCCESS(0) on success, an error code otherwise. See "2.1 Return value" for the error
codes.