這個簡單的問題,困擾了我將近兩個小時,主要是再官方文檔上沒有找到demo,那只能用搜索引擎了,看看其他程序員寫的程序,但是發現處處是坑,看了四五個例子,沒有一個可以正常運行的,全部報錯,經過一個多小時的嘗試,才最終搞定。不多說了,直接上截圖和代碼。
首先要在項目中添加zxing.dll引用(zxing.dll下載地址http://www.jb51.net/dll/zxing.dll.html)
其次就是建立aspx文件,在後台中代碼如下
復制代碼 代碼如下:
using ZXing.Common;
using ZXing;
using ZXing.Rendering;
using System.Drawing;
using System.Drawing.Imaging;
using ZXing.QrCode.Internal;
namespace zxingtm
{
public partial class txm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
MultiFormatWriter mutiWriter = new MultiFormatWriter();
BitMatrix bm = mutiWriter.encode("123456789", BarcodeFormat.CODE_39, 363, 150);
Bitmap img = new BarcodeWriter().Write(bm);
img.Save("d:/1.jpeg", System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
}
代碼中“123456789”在測試中我是寫死的,用的時候可以用變量代替。BarcodeFormat.CODE_39等參數可以換成其他的,用以生成其他格式的條形碼
這樣的話在d盤就輸出了1.jepg的條形碼圖片,這裡主要功能已經實現,生成的條形碼圖片如下:
用手機自帶的掃描條形碼功能掃了下,結果正是123456789