博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 热敏打印机 Socket 网络链接 打印 图片 (二)
阅读量:6432 次
发布时间:2019-06-23

本文共 2338 字,大约阅读时间需要 7 分钟。

IPAddress ip = IPAddress.Parse("192.168.1.212");            IPEndPoint iport = new IPEndPoint(ip, 9100);//9100为小票打印机指定端口            Socket soc = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);            soc.Connect(iport);            bitmap = new Bitmap(@"D:\300X200.bmp");            soc.Send(bmpToByte(bitmap));            soc.Close();
public static byte[] bmpToByte(Bitmap bmp)        {            int h = bmp.Height / 24 + 1;            int w = bmp.Width;            byte[][] all = new byte[2 + 2 * h + h * w][];            all[0] = new byte[] { 0x1B, 0x33, 0x00 };            Color pixelColor;            // ESC * m nL nH 点阵图              byte[] escBmp = new byte[] { 0x1B, 0x2A, 0x21, (byte)(w % 256), (byte)(w / 256) };            // 每行进行打印              for (int i = 0; i < h; i++)            {                all[i * (w + 2) + 1] = escBmp;                for (int j = 0; j < w; j++)                {                    byte[] data = new byte[] { 0x00, 0x00, 0x00 };                    for (int k = 0; k < 24; k++)                    {                        if (((i * 24) + k) < bmp.Height)                        {                            pixelColor = bmp.GetPixel(j, (i * 24) + k);                            if (pixelColor.R == 0)                            {                                data[k / 8] += (byte)(128 >> (k % 8));                            }                        }                    }                    all[i * (w + 2) + j + 2] = data;                }                //换行                  all[(i + 1) * (w + 2)] = PrinterCmdUtils.nextLine(1);            }            all[h * (w + 2) + 1] = PrinterCmdUtils.nextLine(2);            return byteMerger(all);        }
public static byte[] byteMerger(byte[][] byteList)        {            int Length = 0;            for (int i = 0; i < byteList.Length; i++)            {                Length += byteList[i].Length;            }            byte[] result = new byte[Length];            int index = 0;            for (int i = 0; i < byteList.Length; i++)            {                byte[] nowByte = byteList[i];                for (int k = 0; k < byteList[i].Length; k++)                {                    result[index] = nowByte[k];                    index++;                }            }            return result;        }

 

转载地址:http://fgtga.baihongyu.com/

你可能感兴趣的文章
mysql主从同步
查看>>
制作最简化的Linux系统
查看>>
我的友情链接
查看>>
使用List的remove方法需要的注意的问题
查看>>
Ansible的介绍、安装、配置及常用模块介绍
查看>>
编码列表
查看>>
eigrp 配置
查看>>
谈一谈 redis 集群
查看>>
concurrent包
查看>>
分区和格式化硬盘
查看>>
在Linux下调试Python代码的各种方法
查看>>
centos7塔建MQ服务器
查看>>
Peer authentication failed for user
查看>>
超强的.NET图像工具包VintaSoftImaging.NET SDK更新至v8.6丨75折优惠
查看>>
阿里云上Kubernetes集群联邦
查看>>
我的Git忽略文件
查看>>
洛谷2219:[HAOI2007]修筑绿化带——题解
查看>>
监控webservice信息
查看>>
a标签中href=""的几种用法(转)
查看>>
python
查看>>