![Citizen CL-E300 Programming Manual Download Page 61](http://html1.mh-extra.com/html/citizen/cl-e300/cl-e300_programming-manual_2610002061.webp)
CITIZEN Android Label Print SDK
—
Programming Manual
61
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
Parameter
[IN/OUT] Description
Setting range
data
[IN]
String data
fontType
[IN]
Font type
Font type
rotation
[IN]
Direction of rotation
CLS_RT_NORMAL: No rotation
CLS_RT_RIGHT90: Rotate CW 90
CLS_RT_ROTATE180: Rotate CW 180
CLS_RT_LEFT90: Rotate CCW 90
hRatio
[IN]
Horizontal ratio [%]
1 - 1000
vRatio
[IN]
Vertical ratio [%]
1 - 1000
point
[IN]
Font size
style
[IN]
Font style
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.
x
[IN]
X-coordinate
0000
–
9999
* The origin is at bottom-left.(0, 0)
y
[IN]
Y-coordinate
resolution
[IN]
Resolution [dpi]
CLS_PRT_RES_203(203dpi)
CLS_PRT_RES_300(300dpi)
* 203 dpi by default.
measurementUnit [IN]
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 "
" for the error
codes.