Rev. A Command Descriptions 1-29
TM-T88/T88P (TM-T85/T85P) Information Manual
ESC ✻
m
n
L
n
H
d1 ... dk selects a bit-image mode using m for the number of dots specified by
(
n
L
+
n
H
× 256). Set a bit to 1 to print a dot, or set a bit to 0 to not print a dot. d indicates the bit image
data. The modes selectable by m are as follows:
GS ✻
x y d1 ... d(x × y × 8)
[Name] Define downloaded bit image
[Format] ASCII GS ✻ x y d1 ... d(x × y × 8)
Hex 1D 2A x y d1 ... d(x × y × 8)
Decimal 29 42 x y d1 ... d(x × y × 8)
[Range] 1 ≤ x ≤ 255
1 ≤ y ≤ 48
x × y ≤ 1536
0 ≤ d ≤ 255
m Mode
Vertical Direction Horizontal Direction
Number of Bits
for vertical data
Dot Density
(DPI)
Dot Density
(DPI)
Amount of
Data (k)
0 8-dot single-density 8 60 90 n
L
+ n
H
x 256
1 8-dot double-density 8 60 180 n
L
+ n
H
x 256
32 24-dot single-density 24 180 90 (n
L
+n
H
x 256) x 3
33 24-dot double-density 24 180 180 (n
L
+ n
H
x 256) x 3
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