Homelite HL-2400CE, HL-P2500, HL-1660E, HL-1450, HL-1050 Set double-speed, double-density image mode

Models: HL-1250 HL-1270N HL-1470N 2400C HL-1050 HL-P2500 2060 HL-1660E HL-1070 HL-1450 HL-2400CE

1 431
Download 431 pages 8 Kb
Page 299
Image 299

10/10/03

Images are printed at an approximate horizontal resolution of 120 dots per inch and at an approximate vertical resolution of 72 dots per inch.

Each byte represents a vertical column of eight dots, the most significant bit representing the dot at the top. Simply set a bit to 1 if you want a dot to appear in that position, and to 0 if you want white space to appear.

10 WIDTH "LPT1:", 255

20 LPRINT "***ESC L n1 n2 ***"CHR$(10);

30 FOR I=1 TO 5

40 '*DOUBLE-DENSITY BIT IMAGE MODE *

50 LPRINT CHR$(27);"L";CHR$(160);CHR$(0);

60 FOR J=1 TO 8

70 FOR K=1 TO 20

80 N=2^J-1

90 LPRINT CHR$(N);

100 NEXT K

110 NEXT J

120 LPRINT CHR$(10);

130 NEXT I:END

< Sample 16 >

 

Set double-speed, double-density image mode

 

EscYn1n2<image data> (27)(89)n1n2<image data>

<1Bh><59h>n1n2<image

data>

 

This command enables you to define and print a single line raster bit image on a single text line.

n1 and n2 define the number of bytes that comprise the image.

The image consists of 256*n2+n1 bytes of data, each byte representing a single vertical column of 4/30".

Images are printed left to right.

Images are printed at an approximate horizontal resolution of 120 dots per inch and at an approximate vertical resolution of 72 dots per inch.

Each byte represents a vertical column of eight dots, the most significant bit representing the dot at the top. Simply set a bit to 1 if you want a dot to appear in that position, and to 0 if you want white space to appear.

This printer always prints as fast as possible, hence this command is the exact equivalent of the Esc L command.

10 WIDTH "LPT1:", 255

20 LPRINT "*** ESC Y n1 n2 ***", CHR$(10); 30 FOR I=1 TO 5

40 '*DOUBLE-SPEED & DOUBLE-DENSITY BIT IMAGE MODE * 50 LPRINT CHR$(27);"Y";CHR$(160);CHR$(0);

60 FOR J=1 TO 8

70 FOR k=1 TO 20

80 N=2^J-1

90 LPRINT CHR$(N);

100 NEXT K

110 NEXT J

120 LPRINT CHR$(10);

130 NEXT I:END

< Sample 17 >

CHAPTER 7 IBM PROPRINTER - 19

Page 299
Image 299
Homelite HL-2400CE, HL-P2500, HL-1660E Set double-speed, double-density image mode, EscYn 1n 2image data 2789n1n2image data