如何提高ESC / POS Thermal_Printer图像的打印速度?

问题描述 投票:0回答:1

我已经使用热敏打印机图像打印进行打印工作了数周,这是我获得的用于图像打印的代码。

        public static byte[] GetByteImage(Bitmap bm, int BitmapWidth)
        {
            BitmapData data = GetGreyScaledBitmapData(bm, BitmapWidth);
            BitArray dots = data.Dots;
            string t = data.Width.ToString();
            byte[] width = BitConverter.GetBytes(data.Width);

            int offset = 0;
            MemoryStream stream = new MemoryStream();
            BinaryWriter bw = new BinaryWriter(stream);

            //Line spacing
            bw.Write((char)0x1B);
            bw.Write('3');
            bw.Write((byte)0);


            while (offset < data.Height)
            {
                //Declare printer to print image mode
                bw.Write((char)0x1B);
                bw.Write('*');
                bw.Write((byte)33);
                bw.Write(width[0]);
                bw.Write(width[1]);

                for (int x = 0; x < data.Width; ++x)
                {
                    for (int k = 0; k < 3; ++k)
                    {
                        byte slice = 0;
                        for (int b = 0; b < 8; ++b)
                        {
                            int y = (((offset / 8) + k) * 8) + b;
                            int i = (y * data.Width) + x;

                            bool v = false;
                            if (i < dots.Length)
                            {
                                v = dots[i];
                            }
                            slice |= (byte)((v ? 1 : 0) << (7 - b));
                        }

                        bw.Write(slice);
                    }
                }
                offset += 24;
                bw.Write((char)0x0A);
            }
            bw.Write((char)0x1B);
            bw.Write('3');
            bw.Write((byte)0);

            bw.Flush();
            byte[] bytes = stream.ToArray();
            return bytes;
        }

        public static BitmapData GetGreyScaledBitmapData(Bitmap bmpFileName, double imgsize)
        {
            using (var bitmap = (Bitmap)(bmpFileName))
            {
                var threshold = 127;
                var index = 0;
                double multiplier = imgsize;
                double scale = (double)(multiplier / (double)bitmap.Width);
                int xheight = (int)(bitmap.Height * scale);
                int xwidth = (int)(bitmap.Width * scale);
                var dimensions = xwidth * xheight;
                var dots = new BitArray(dimensions);

                for (var y = 0; y < xheight; y++)
                {
                    for (var x = 0; x < xwidth; x++)
                    {
                        var _x = (int)(x / scale);
                        var _y = (int)(y / scale);
                        Android.Graphics.Color color = new Android.Graphics.Color(bitmap.GetPixel(_x, _y));
                        var luminance = (int)(color.R * 0.3 + color.G * 0.59 + color.B * 0.11);
                        dots[index] = (luminance < threshold);
                        index++;
                    }
                }
                return new BitmapData()
                {
                    Dots = dots,
                    Height = (int)(bitmap.Height * scale),
                    Width = (int)(bitmap.Width * scale)
                };
            }
        }

        public class BitmapData
        {
            public BitArray Dots
            {
                get;
                set;
            }

            public int Height
            {
                get;
                set;
            }

            public int Width
            {
                get;
                set;
            }
        }

问题是,它在打印时打印非常慢发出抽搐的声音。另一个问题是,将图像转换为灰度的方法有点慢。

[当我测试其他应用程序时,我发现它们没有刺耳的声音,并且在单击“打印”按钮后几乎立即打印了图像。

有没有一种方法可以改善上述代码,使其可以顺利打印?

这是我测试过的应用Printer Lab - Thermal printer manager

我使用的热敏打印机RPP300 72mm Mobile Printer

performance printing xamarin.android thermal-printer
1个回答
0
投票

您正在使用的ESC *命令每24点高度打印一次。

然后,当您感觉到问题时,打印将变得生涩而缓慢。

请结合使用GS *和GS /命令进行改进。

其详细规格在《 Thermal Mobile Printer命令集手册》的第24至26页上进行了介绍。


另外:

顺便说一句,我正在忽略另一个命令。对于我们来说,创建将要发送的数据将更加容易。但是,平滑的打印取决于打印机的性能和通信线路速度。

该命令是GS v0。在手册的第32和33页上进行了介绍。

© www.soinside.com 2019 - 2024. All rights reserved.