RD-KT247 thermal printers
34 / 61
str[0] = 0x1B;
str[1] = 0x55;
str[2] = 2;
SendDataToPrinter(str,3);//
Horizontally magnify 2 times
ESC V
[Name]
Vertically magnify characters
[Type] ASCII
:
ESC
V n
Decimal:
27
86 n
Hex:
1B
56 n
[Scope]
0 ≤ n ≤8
[Comment]
The command is effective for all characters (including English characters and Kanji)
The command is ignored if n is outside the defined scope
[Reference]
ESC X
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x56;
str[2] = 2;
SendDataToPrinter(str,3);//
Vertically magnify 2 times
ESC X
[Name]
Magnify characters
[Type] ASCII
:
ESC
X n1 n2
Decimal:
27
88 n1 n2
Hex:
1B
58 n1 n2
[Scope]
0 ≤ n ≤8
(1 ≤
n1
horizontal times
≤ 8,1 ≤
n2
vertical times ≤ 8)