ZPL打印中文信息
博客来源:http://www.cnblogs.com/Geton/p/3595312.html
相信各位在实际的项目中,需要开发打条码模块的也会有不少,很多同行肯定也一直觉得斑马打印机很不错,但是ZPL打印中文字符很麻烦。如果购买字体卡,或者通过CODESOFT,BARTENDER,LABELVIEW等有控件的条码软件打印,成本较高,老板也不容易接受,而自己开发的程序则灵活性更好,方便适应公司的发展需要。下面把自己在实际的运用中写的关于打印中文信息的代码与大家一起分享,如果有写得不好的地方,请各位指出。以下代码是在C#环境中测试通过。先用文本排版好格式(zpl文件),然后通过填充数据打印所需要的内容。
// 首先是引用fnthex32.dll,它是用于斑马条码打印机打印汉子所需的dll文件
#region 调用fnthex32.dll,用于转换中文字符
//GETFONTHEX可以将中文字体转换为HEX字体
//由于ZEBRA打印机本身不能打印中文,因此需要将中文进行转换,传给打印机
[DllImport("fnthex32.dll")]
public static extern int GETFONTHEX(
string BarcodeText,
string FontName,
string FileName,
int Orient,
int Height,
int Width,
int IsBold,
int IsItalic,
StringBuilder ReturnBarcodeCMD);
#endregion
// 读取zpl文件内容到数组
/******************************************************************
*** 功能 打开文件,并读出内容,保存到数组
*** 说明 参数sFileName文件名称
*** 将文件内容赋给数组返回(通过)
******************************************************************/
private string[] getPrintStringArray(string sFileName)
{
ArrayList printStringArray = new ArrayList();
int i = 0;
FileStream fileStream = File.OpenRead(sFileName);
try
{
StreamReader reader = new StreamReader(fileStream, System.Text.Encoding.Default);
reader.BaseStream.Seek(0, SeekOrigin.Begin);
string strLine = reader.ReadLine();
while (strLine != null)
{
//string[] split = strLine.Split('\n');
//printStringArray[i] = strLine;
printStringArray.Add(strLine);
i++;
strLine = reader.ReadLine();
}
reader.Close();
reader.Dispose();
fileStream.Close();
fileStream.Dispose();
string[] values = (string[])printStringArray.ToArray(typeof(string));
return values;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return (string[])printStringArray.ToArray(typeof(string));
}
}
/******************************************************************
*** 功能 检查fieldStr的内容是否包含中文
*** 说明 fieldStr要检查的字符串数组
******************************************************************/
private bool ChkChinese(string fieldStr)
{
int nLen, nTmp;
string sCharTmp;
nLen = fieldStr.Length;
for (nTmp = 0; nTmp < nLen; nTmp++)
{
sCharTmp = fieldStr.Substring(nTmp, 1);
if (Convert.ToChar(sCharTmp) > 127 || Convert.ToChar(sCharTmp) < 0)
{
return true;
}
}
return false;
}
// 在ZPL文件中,把带_FIELD结尾的内容,以相应的数据源的字段内容去替换掉。
/******************************************************************
*** 功能 用DataTable中栏位的值去替换相应字段
*** 说明 ZPLText为打印标帖的文本内容rds为数据源
*** 将ZPLText中形如WONUM_FIELD的用rds对应的WONUM的值代替,然后还返回数组
******************************************************************/
private string[] convertZPLTextFields(string[] ZPLText, DataTable rds, int currow)
{
string sTemp = "";
string sTemp1 = "";
string sTemp2 = "";
string FieldName = "";
int s1, s2, i, j;
int zNum, fNum;
string fieldStr = "";
zNum = ZPLText.Length - 1; //数组长度
fNum = rds.Columns.Count; //rds列数
for (i = 0; i <= zNum; i++)
{
for (j = 0; j <= fNum - 1; j++)
{
FieldName = rds.Columns[j].ColumnName;
sTemp = FieldName + "_FIELD";
s1 = ZPLText[i].IndexOf(sTemp); //查找fieldName在ZPLText[i]中的索引值(位置)
if (s1 != -1)
{
s2 = s1 + sTemp.Length;
sTemp1 = ZPLText[i].Substring(0, s1);// 替换前半段
sTemp2 = ZPLText[i].Substring(s2, ZPLText[i].Length - s2);//替换后半段
//if (rds.Columns[j].GetType().ToString() == "System.String")
if (rds.Columns[j].DataType.Name == "String")
{
fieldStr = rds.Rows[currow][j].ToString();
if (ChkChinese(fieldStr)) //检查是否存在中文,如果存在则做转换
{
convertChineseToHex(fieldStr, "fchfnt" + i, 2);
ZPLText[i] = sTemp1 + "^XGfchfnt" + i + sTemp2; //^XG 调取图像,这里是先转中文字体为fchfnt,然后用^XG调取它
}
else
{
ZPLText[i] = sTemp1 + fieldStr + sTemp2;
}
}
else
{
ZPLText[i] = sTemp1 + rds.Rows[currow][j].ToString() + sTemp2;
}
}
}
}
return ZPLText;
}
//将文件内容中的标记为中文的内容取出,进行字体转换,然后用相应的字体名替换
private string[] convertZPLTextChinese(string[] ZPLText)
{
int zNum, s1, s2, i;
string sTemp = "", sTemp1 = "";
string[] chStrArr = null;
string compStr, fntName, chStr;
double nRate = 0;
chStr = "";
compStr = "^XGCH(";
fntName = "chfnt";
zNum = ZPLText.Length - 1;
for (i = 0; i <= zNum; i++)
{
s1 = ZPLText[i].IndexOf(compStr);//^XGCH( 前面的字符
if (s1 != -1)
{
s2 = ZPLText[i].IndexOf(")", s1, ZPLText[i].Length - s1);//跟在^XGCH( 后面的另一半括号 )的位置
if (s2 != -1)
{
nRate = 3;
chStrArr = ZPLText[i].Substring(s1 + 6, s2 - s1 - 6).Split(';');//这里的+6就是^XGCH( 字符串的长度
if (chStrArr.Length - 1 == 0)
{
chStr = chStrArr[0];
}
else
{
if (IsNumeric(chStrArr[0]))
{
nRate = Convert.ToDouble(chStrArr[0]);
chStr = chStrArr[1];
}
//else
//{
// chStr = chStrArr[1];
//}
}
sTemp = ZPLText[i].Substring(0, s1 + 3);
sTemp1 = ZPLText[i].Substring(s2 + 1, ZPLText[i].Length - s2 - 1);
convertChineseToHex(chStr, fntName + i, nRate);
ZPLText[i] = sTemp + fntName + i + sTemp1;
}
}
}
return ZPLText;
}
//将中文转换成HEX字体送往PRINTER
//chStr为中文内容
//chFntName 为转换后的字体名称
private void convertChineseToHex(string chStr, string chFntName, double nRate)
{
//int MAX_BUFFER, nCount;
int nCount;
StringBuilder cBuf = new StringBuilder(21000);
nCount = GETFONTHEX(chStr, "宋体", chFntName, 0, Convert.ToInt32(10 * nRate), 0, 1, 0);
string temp = " " + cBuf.ToString();
temp = temp.Substring(0, nCount);
PrintString = GetPrintSW(temp);
}
/******************************************************************
*** 功能 打印标帖程序
*** 说明 labelFileName 标帖格式文件名称
*** dataSource数据源,可为datatable
*** bTotalLabel 为TRUE表示要打印汇总标帖
******************************************************************/
public void execPrintDefineLabel(string labelFileName, DataTable dataSource, bool bTotalLabel)
{
int i;
string sqlStr = String.Empty;
string[] ZPLText = null;
string[] tempArr;
//bool execConvertCHinese;
int lNum;
DataTable currrds = null;
int labelNum;
// double sumqty;
// int placeSp;
int j = 0;
// LoadLogo("d:\\Logo.zpl");
//检测文件是否存在
try
{
if (labelFileName == "" || !File.Exists(labelFileName))
{
MessageBox.Show("标帖格式文件" + labelFileName + "不存在", "提示", MessageBoxButtons.OK);
return;
}
if (dataSource.Rows.Count == 0)
{
MessageBox.Show("无数据打印", "提示", MessageBoxButtons.OK);
return;
}
//取出打印内容
ZPLText = getPrintStringArray(labelFileName);
currrds = dataSource;
lNum = ZPLText.Length - 1;
tempArr = new string[lNum];
ZPLText = convertZPLTextChinese(ZPLText);
tempArr = ZPLText;
//sumqty = 0;
do
{
ZPLText = convertZPLTextFields(ZPLText, currrds, j);
//if (bTotalLabel)
//{
// sumqty = sumqty + Convert.ToDouble(currrds.Columns["QTY"].ToString());
//}
//Printer printer = new Printer();
for (i = 0; i <= lNum; i++)
{
// printer.Write(" " + ZPLText[i]);
PrintString = GetPrintSW(" " + ZPLText[i]);
}
ZPLText = tempArr;
j++;
} while (j < currrds.Rows.Count);
labelNum = currrds.Rows.Count;
//string text = "";
//for (int a = 0; a <= ZPLText.Length - 1; a++)
//{
// text = text + ZPLText[a].ToString() + "\n";
//}
//MessageBox.Show(text, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
//if (bTotalLabel)
//{
// sumqty = Math.Round(sumqty, 10);
// lNum = currrds.Fields.Count;
// printer.Write("^XA");
// placeSp = 0;
// currrds.MoveFirst();
// for (i = 0; i <= lNum - 1; i++)
// {
// if (currrds.Fields[i].Attributes != 0 && currrds.Fields[i].Attributes == (int)ADODB.FieldAttributeEnum.adFldKeyColumn)
// {
// placeSp = placeSp + 50;
// printer.Write("^AFN^FO50," + placeSp.ToString() + "^FD" + currrds.Fields[i].Name + ": " + currrds.Fields[i].Value + "^FS");
// }
// }
// printer.Write("^AFN^FO50," + Convert.ToString(placeSp + 50) + "^FDSUM QTY: " + sumqty.ToString() + "^FS");
// printer.Write("^AFN^FO50," + Convert.ToString(placeSp + 100) + "^FDLABEL NUMBER: " + labelNum.ToString() + "^FS");
// printer.Write("^XZ");
//}
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
//判断是否为数字
public bool IsNumeric(string text)
{
try
{
double num = Convert.ToDouble(text);
return true;
}
catch
{
return false;
}
}
// 加载公司LOGO图像
public void LoadLogo(string sFileName)
{
string logoText = "";
FileStream fileStream = File.OpenRead(sFileName);
try
{
StreamReader reader = new StreamReader(fileStream, System.Text.Encoding.Default);
reader.BaseStream.Seek(0, SeekOrigin.Begin);
string strLine = reader.ReadLine();
while (strLine != null)
{
logoText = logoText + strLine +"\n";
strLine = reader.ReadLine();
}
reader.Close();
reader.Dispose();
fileStream.Close();
fileStream.Dispose();
PrintString = GetPrintSW(logoText);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
///GetPrintSw方法用来构造打印文本,内部StringBuilder.AppendLine在Drawstring时单独占有一行。现改为string来构造,用换行符做为分格sting数组的条件。
public string GetPrintSW(string strPrint)
{
PrintString = PrintString + strPrint + "\r\n";
return PrintString;
}
public string PrintString = string.Empty;
public string PrintName = string.Empty;
private int countNum = 0;
private void printDocument_PrintPage(object sender, PrintPageEventArgs e)
{
Graphics graphic = e.Graphics;//获取绘图对象
float linesPerPage = 0;//页面行号
float yPosition = 0;//绘制字符串的纵向位置
float leftMargin = e.MarginBounds.Left;//左边距
float topMargin = e.MarginBounds.Top;//上边距
string[] split = PrintString.Split('\n');
string line = string.Empty;//读取的行字符串
int currentPageLine = 0;//当前页读取的行数
Font charFont = new Font("宋体", 9, FontStyle.Regular);//设置打印字体
SolidBrush brush = new SolidBrush(Color.Black);//刷子
// Point po = new Point(10, 10);
linesPerPage = e.MarginBounds.Height / charFont.GetHeight(graphic);//每页可打印的行数
//countNum记录全局行数,currentPageLine记录当前打印页行数。
while (countNum < split.Length )
{
if (currentPageLine < linesPerPage)
{
line = split[countNum].ToString();
if (line.Length <= 100)
{
yPosition = topMargin + (currentPageLine * charFont.GetHeight(graphic));
//绘制当前行
graphic.DrawString(line, charFont, brush, leftMargin, yPosition, new StringFormat());
//graphic.DrawString(line, charFont, brush, new StringFormat());
countNum++;
currentPageLine++;
}
else
{
//拆分后的行数 这里插分多行。
int moreLine = line.Length / 100 + 1;
string tempLine;
for (int i = 0; i < moreLine; i++)
{
//获得当前行的子串
if ((line.Length - i * 100) >= 100)
{
tempLine = line.Substring(i * 100, 100);
}
else
{
tempLine = line.Substring(i * 100, line.Length - i * 100);
}
yPosition = topMargin + (currentPageLine * charFont.GetHeight(graphic));
//绘制当前行
graphic.DrawString(tempLine, charFont, brush, leftMargin, yPosition, new StringFormat());
// graphic.DrawString(line, charFont, brush, new StringFormat());
//当前打印页行数加1
currentPageLine++;
}
//总行数加1
countNum++;
}
}
else
{
line = null;
break;
}
}
//一页显示不完时自动重新调用此方法
if (line == null)
{
e.HasMorePages = true;
}
else
{
e.HasMorePages = false;
}
//每次打印完后countNum清0;
if (countNum >= split.Length)//(countNum >= richTextBox1.Lines.Length)
{
countNum = 0;
}
}
ZPL打印中文信息的更多相关文章
- 【原创】python中文编码问题深入分析(二):print打印中文异常及显示乱码问题分析与解决
在学习python以及在使用python进行项目开发的过程中,经常会使用print语句打印一些调试信息,这些调试信息中往往会包含中文,如果你使用python版本是python2.7,或许你也会遇到和我 ...
- SecureCRT——设置打印中文字符
1. 设置方法 使用SecureCRT打印由STM32发送的中文字符提示信息,显示乱码.在网上找了一些链接,再加上自己摸索,终于出了能够让SecureCRT打印中文的方法. 设置以下几个地方即可. 1 ...
- Mybatis框架基于映射文件和配置文件的方式,实现增删改查,可以打印日志信息
首先在lib下导入: 与打印日志信息有关的架包 log4j-1.2.16.jar mybatis架包:mybatis-3.1.1.jar 连接数据库的架包:mysql-connector-java-5 ...
- xcode8 关闭控制台打印不用信息
控制台打印的信息如下 -- :::] subsystem: com.apple.UIKit, category: HIDEventFiltered, enable_level: , persist_l ...
- -XX:+PrintHeapAtGC 每次一次GC后,都打印堆信息
-XX:+PrintHeapAtGC每次一次GC后,都打印堆信息 {Heap before GC invocations=0 (full 0): def new generation total ...
- STM32M CUBE实现printf打印调试信息以及实现单字节接收
在写单片机程序时我们一般喜欢使用printf来通过串口打印调试信息,但这个函数是不能够直接使用的.必须做点对库函数的修改. 具体project下载地址: http://download.csdn.ne ...
- [置顶] 如何vs在cocos2dx项目中打印中文
一开始不是很理解,查了半天资料,终于找到解决方法,但是有部分中文还是不能打印出来,如 会出现部分的中文, 一开始都是问号的解决方法是 点击高级保存选项 设置成Unicode(UTF-8无签名) 这样就 ...
- [osg]osg显示中文信息
转自:http://www.cnblogs.com/feixiang-peng/articles/3152754.html 写好了在osg中实时显示中文信息的效果.中间遇到两个问题,一个是中文显示,一 ...
- 解决华为手机不打印Log信息的问题
在之前安装了Android Studio后,发现了一个很苦恼的事情,就是在程序中的写Log语句,不能正常的在Logcat中打印出来,这对于解决程序bug真是一刀切断,让人无从下手,在各种尝试后,首先我 ...
随机推荐
- 剑指offer题目11-20
面试题11:数值的整数次方 public class Solution { public double Power(double base, int exponent) { if(exponent = ...
- POJ 2175 Evacuation Plan 费用流 负圈定理
题目给了一个满足最大流的残量网络,判断是否费用最小. 如果残量网络中存在费用负圈,那么不是最优,在这个圈上增广,增广1的流量就行了. 1.SPFA中某个点入队超过n次,说明存在负环,但是这个点不一定在 ...
- XE3随笔12:TSuperTableString、TSuperAvlEntry
通过 ISuperObject.AsObject 可获取一个 TSuperTableString 对象. TSuperTableString 的常用属性: count.GetNames.GetValu ...
- ICE系列之3对象接口定义语言——slice
Slice 定义由编译器编译到特定的实现语言 .编译器把与语言无关的定 义翻译成针对特定语言的类型定义和 API.开发者使用这些类型和 API 来 提供应用功能,并与 Ice 交互.用于各种 ...
- 【排列组合】bzoj3505 [Cqoi2014]数三角形
http://blog.csdn.net/zhb1997/article/details/38474795 #include<cstdio> #include<algorithm&g ...
- Git创建 项目
一 . github上创建立一个项目 用户登录后系统,在github首页,点击页面右下角“New Repository” 填写项目信息: project name: hibernate-demo d ...
- 玩转React样式
很久很久以前,就有人用CSS来时给HTML内容添加样式.CSS可以最大限度的分离样式和内容,选择器也可以很方便的给某些元素添加样式.你根本找不到任何不用CSS的理由. 但是在React这里就是另外一回 ...
- C++注册表操作
数据结构 注册表由键(或称"项").子键(子项)和值项构成.一个键就是分支中的一个文件夹,而子键就是这个文件夹中的子文件夹,子键同样是一个键.一个值项则是一个键的当前定义,由名称. ...
- 【转】移动端viewport的使用
web端网站转移至移动端页面,注意点如下: 1.首先引入viewport调整页面宽度 <meta name="viewport" content="width=de ...
- 隐马尔科夫模型HMM学习最佳范例
谷歌路过这个专门介绍HMM及其相关算法的主页:http://rrurl.cn/vAgKhh 里面图文并茂动感十足,写得通俗易懂,可以说是介绍HMM很好的范例了.一个名为52nlp的博主(google ...