Specifications
1-30 Command Descriptions Rev. A
Bit-Image Commands
The TM-U375/U375P supports the following bit-image commands:
Command Name
ESC ✻ Select bit-image mode
GS
✻ Define downloaded bit image
GS / Print downloaded bit image
ESC ✻ m nL nH d1 ... dk
[Name] Select bit-image mode
[Format] ASCII ESC
✻ m nL nH d1 ... dk
Hex 1B 2A m
nL nH d1 ... dk
Decimal 27 42 m
nL nH d1 ... dk
[Range] m = 0, 1
0 ≤
nL ≤ 255
0 ≤
nH ≤ 3
0 ≤ d ≤ 255
ESC ✻ m nL nH d1 ... dk selects a bit-image mode using m for the number of dots specified by
(
nL + nH × 256). This command is used to print a predefined picture or logo. The modes selectable by
m are as follows:
m
Mode
Vertical Direction Horizontal Direction
Number of
Dots
Dot Density
(DPI)
Dot Density
(DPI)
Total Dots in
Standard Mode
0 8-dot single-density 8 72 80 200
1 8-dot double-density 8 72 160 400
Program Example Print Sample
m=0: GOSUB bitimage8
m=1: GOSUB bitimage8
END
bitimage8:
PRINT #1, CHR$(&H1B);"*";CHR$(m);CHR$(180);CHR$(0);
FOR i=1 TO 180
PRINT #1, CHR$(i);
NEXT i
PRINT #1, CHR$(&HA);
RETURN
m
=0
m
=1