I'm directly printing my receipt to the POS printer via serial port in the following way,
SerialPort port = new SerialPort("com6", 9100, Parity.None, 8, StopBits.One);
port.Open();
port.Write("Some Text");
port.Close();
My question is how I'm going to print a Bitmap image using the above method? Any help would be grateful.
I have not decided to go with Microsoft POS for.net, because it is slow and takes time to initialize the printer, where clients doesn't like to wait.
Thanks.