close

情境:

有了前兩章的基礎,今天就可以來產製條碼圖片了,今天主要就是產製圖片並儲存。

第一篇:C# Bitmap 製圖方法

第二篇:C# Graphics 繪圖 image

目標:

1.使用 Nuget 新增Zxing package模組。

2.使用BarcodeWriter

3.設定編碼方式

做法:

1.使用Nuget 加入模組 ZXing ,接著就可以做出BarCode了喔

2.新增BarcodeWriter 物件

int Bx = 100, By = 50;
Bitmap B1 = new Bitmap(Bx, By);

Graphics G1 = Graphics.FromImage(B1);

 

BarcodeWriter bw = new BarcodeWriter();
bw.Format = BarcodeFormat.CODE_39;//選擇編碼方式
bw.Options.Width = 128;//設定大小
bw.Options.Height = 37;
bw.Options.PureBarcode = true;//輸出的圖形要不要有外框

Bitmap btmapQR = bw.Write("code123445");//輸入內容
G1.DrawImage(btmapQR, 0, 0);//放入條碼圖片,在(0,0)的座標位置

B1.Save(@"你的路徑.png", ImageFormat.Png);

解說:

 一樣先新增好Bitmap來存放圖片或是文字,

那要有工具來放入圖片到Bitmap容器裡面,那就是利用Graphics 來放,最後存成圖片。

 

 

 

 

arrow
arrow
    文章標籤
    條碼 BarCode C# Graphics
    全站熱搜
    創作者介紹
    創作者 阿駿 的頭像
    阿駿

    阿駿的部落格

    阿駿 發表在 痞客邦 留言(0) 人氣()