I have some UNIX software which runs in a windows environment via some Telnet software. This UNIX software calls a script which passes a PCL file to a users windows default printer using the following source code;
This worked fine up until we introduced a Windows bitmap into the PCL file.
Can anybody please explain the codes listed above and maybe tell me what I'm doing wrong?
Code:
(echo "\0033\0133\0065\0151\c"
cat $spoolfile
echo "\0033\0133\0064\0151\c"
) > $TTY
This worked fine up until we introduced a Windows bitmap into the PCL file.
Can anybody please explain the codes listed above and maybe tell me what I'm doing wrong?