how to print images with ESC/POS commands?
问题 i have an Epson-TMH6000III thermal printer and i want to print some bitmap with it by using ESC/POS commands. but before this i want to print a very simple single line with ESC/POS printing image commands. here's my attempt : namespace printingImageMode { class Program { static void Main(string[] args) { Bitmap bmp = new Bitmap(@"C:\Users\falamarzi\Desktop\Kyan Graphic Viewer\jTest.jpg"); int msb = (int)(bmp.Width & 0x0000ff00) >> 8; int lsb = (int)(bmp.Width & 0x000000ff); byte msbB =