06
2015
06

【C#、Asp.Net 工具类大全】BarCode条形码生成工具类

使用实例:

private string urlPath = "";
protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        urlPath = Server.MapPath("~/file/");
        barCodeInfo();
    }
}
/// <summary>
/// 图标生成
/// </summary>
private void barCodeInfo()
{
    Response.Write("<IMG alt=\"" + "" + "\" src=\"" + "file/" + BarCodeHelper.getBarCodePath("www.zhengdecai.com", "Code128B", urlPath, "zhengdecai_bar.jpg") + "\" border=\"0\">" + "<br />");
}

类库信息:

22
2013
04

Asp.Net生成条形码实例,通过测试

 已经有网友制作出来,没有实际的调用,调试已经通过

    Code128 code128 = new Code128();
    context.Response.Clear();

    MemoryStream ms = new MemoryStream();
    Bitmap bmp = code128.GetCodeImage("https://www.zhengdecai.com/", Code128.Encode.Code128B); //生成字符串的“123456”的条形码图片
    bmp.Save(ms, ImageFormat.Png);
    context.Response.BinaryWrite(ms.ToArray());

«1»