打印十字码 DataMatrix

nuget 安装
DataMatrix.net


//示例
 DmtxImageEncoder Die = new DmtxImageEncoder();
                DataMatrix.net.DmtxImageEncoderOptions option = new DmtxImageEncoderOptions();
                option.SizeIdx = DmtxSymbolSize.DmtxSymbol32x32;//形状
                option.MarginSize = 0;//边距
                option.ModuleSize = size;//点阵大小
                //string txt = "123abc";
                Bitmap b = Die.EncodeImage(codeText, option);

                g.DrawImage(b,new Point(pointX, pointY));



内容太长报错:使用 Die.EncodeImage("xxxxxxxxxxxxxxxxxx",2)

 

上一篇:acwing学习笔记 查并集 合并集合 图解


下一篇:php应用容器workerman_worker类接口stopAll说明及范例