When I want to print 4 PNG files (100x100) via Mik42/ESCPOS. It printed each PNG file on each line. Is there any method to print all four PNG files in one line?
$printer -> setJustification(Printer::JUSTIFY_LEFT);
$printer -> graphics($HC1,false);
$printer -> graphics($HC1,false);
$printer -> graphics($HC1,false);
$printer -> graphics($HC1,false);
One of the following can be considered.
Related ESC/POS commands:
ESC L Select Page mode
ESC W Set print area in Page mode
ESC T Select print direction in Page mode
GS $ Set absolute vertical print position in Page mode
ESC $ Set absolute print position
GS \ Set relative vertical print position in Page mode
ESC \ Set relative print position
FF (in Page mode) Print and return to Standard mode (in Page mode)