RD-KT247 thermal printers
46 / 61
Decimal:
29 72
n
Hex:
1D 48
n
[Scope]
0 ≤ n ≤ 2
[Explanation]Selects a font for the HRI characters used when printing a bar code.
Use n to specify the printing position of HRI:
n
printing position
0
Do not print
1
Above the bar code
2
Below the bar code
[Default]
n=0
[Example]
unsigned char str[4];
str[0] = 0x1D;
str[1] = 0x48;
str[2] = 2;
SendDataToPrinter(str,3);// The HRI is printed below the bar code
GS Q n
[Name]
Set the printing position of the bar code on the horizontal direction
[Type]
ASCII:
GS Q
n
Decimal:
29 81
n
Hex:
1D 51
n
[Scope]
0≤ n ≤ 255
[Explanation]Set the distance from the beginning of one line to the position of printing bar
code to N horizontal dot pitch.
[Default]
n=0
[Example]
unsigned char str[4];
str[0] = 0x1D;
str[1] = 0x51;
str[2] = 32;