參考引用來源:使用NBarcodes產生一維條碼圖形
--
1.前言:
NBarcodes是一個MIT license的開放函式庫,用來製作一維條碼。
2.說明:
NBarcodes的說明可參考及軟體下載網址:
http://code.google.com/p/nbarcodes/
條碼編碼支援類型:
Code 128, Code 39, Standard 2 of 5, Interleaved 2 of 5, EAN-13, EAN-8, UPC-A, UPC-E and Postnet
本範例使用版本為nbarcodes-v1.0.0
軟體解壓縮後,將\nbarcodes-v1.0.0-bin\NBarCodes.dll的DLL檔複製到自己專案的bin目錄下
加入參考: NBarCodes.dll
加入命名空間:
using NBarCodes;
程式碼:
//產生Code128
NBarCodes.Forms.BarCodeControl bc = new NBarCodes.Forms.BarCodeControl();
bc.Type = BarCodeType.Code128;
bc.Data = "PIXNET";
bc.Visible = true;
BarCodeGenerator generator = new BarCodeGenerator(bc);
Image image = generator.GenerateImage();
pictureBox1.Image = image;
沒有留言:
張貼留言