How to generate a dynamic GRF image to ZPL ZEBRA print
I have a problem. I´m generating a dynamic BMP image and trying to send this to a ZEBRA printer by ZPL commands. I need to convert my BMP to a GRF image. I think that my Hexadecimal extracted by the BMP image isn´t correct. The printed image is blurred and incorrect. This is my code: string bitmapFilePath = @oldArquivo; // file is attached to this support article byte[] bitmapFileData = System.IO.File.ReadAllBytes(bitmapFilePath); int fileSize = bitmapFileData.Length; Bitmap ImgTemp = new Bitmap(bitmapFilePath); Size ImgSize = ImgTemp.Size; ImgTemp.Dispose(); // The following is known about