c#產生條碼

來源:互聯網
上載者:User

標籤:coder   app   basedir   odi   bar   domain   nts   string   iter   

一、產生EAN13的一維碼 // 1.設定條碼規格 EncodingOptions encodeOption = new EncodingOptions(); encodeOption.Height = 130; // 必須制定高度、寬度 encodeOption.Width = 240;   // 2.產生條碼圖片並儲存 ZXing.BarcodeWriter wr = new BarcodeWriter(); wr.Options = encodeOption; wr.Format = BarcodeFormat.EAN_13; //  條碼規格:EAN13規格:12(無校正位)或13位元字 Bitmap img = wr.Write( this .ContentTxt.Text); // 產生圖片 string filePath = System.AppDomain.CurrentDomain.BaseDirectory + "\\EAN_13-" + this .ContentTxt.Text + ".jpg" ; img.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg); 二、讀取一維碼 // 1.設定讀取條碼規格 DecodingOptions decodeOption = new DecodingOptions(); decodeOption.PossibleFormats = new List<BarcodeFormat>() {     BarcodeFormat.EAN_13, };  // 2.進行讀取操作 ZXing.BarcodeReader br = new BarcodeReader(); br.Options = decodeOption; ZXing.Result rs = br.Decode( this .barCodeImg.Image as Bitmap); if (rs == null ) {      this .ContentTxt.Text = "讀取失敗" ;      MessageBox.Show( "讀取失敗" ); } else {      this .ContentTxt.Text = rs.Text;      MessageBox.Show( "讀取成功,內容:" + rs.Text); }

c#產生條碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.