C# 生成条形码

引用BarcodeLib.dll(百度云中有)生成条形 protected void Button2_Click(object sender, EventArgs e)//点击button2,生成条形码。

{ System.Drawing.Image image; int width = 148, height = 55; string fileSavePath = AppDomain.CurrentDomain.BaseDirectory + "BarcodePattern.jpg"; if (File.Exists(fileSavePath)) File.Delete(fileSavePath); GetBarcode(height, width, BarcodeLib.TYPE.CODE128, "20131025-136", out image, fileSavePath);             //"20131025-136"是条形码的内容,fileSavePath是条形码保存的位置。 }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgzjzw.html