中文处理,返回ZPL命令 ZPL_DrawCHText(string ChineseText, string FontName, int startX, int startY, int Orient, int Height, int Width, int IsBold, int IsItalic) { StringBuilder sResult = new StringBuilder(); StringBuilder hexbuf = new StringBuilder(21 * 1024); int count = ZplPrintControl.GETFONTHEX(ChineseText, FontName, Orient, Height, Width, IsBold, IsItalic, hexbuf); if (count > 0) { + startX.ToString() + + startY.ToString() + + ; sResult.AppendLine(hexbuf.ToString().Replace(, ) + sEnd); } return sResult.ToString(); }
中文打印支持加载动态链接库的使用方式如下:
中文处理 [DllImport()] GETFONTHEX( string ChineseText, string FontName, int Orient, int Height, int Width, int IsBold, int IsItalic, StringBuilder ReturnPicData); 中文处理 [DllImport()] GETFONTHEX( string ChineseText, string FontName, string FileName, int Orient, int Height, int Width, int IsBold, int IsItalic, StringBuilder ReturnPicData);
中文支持动态链接库