程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> barcode xpress-Barcode Xpress中怎麼樣創建PDF417條形碼

barcode xpress-Barcode Xpress中怎麼樣創建PDF417條形碼

編輯:編程綜合問答
Barcode Xpress中怎麼樣創建PDF417條形碼

Barcode Xpress中怎麼樣創建PDF417條形碼呢,求教····

最佳回答:


試試下面的代碼:

//create and unlock the BarcodeXpress component
BarcodeXpress bcx = new BarcodeXpress();
// The SetSolutionName and SetSolutionKey methods must be called to distribute the runtime.
bcx.Licensing.SetSolutionName("YourSolutionName");
bcx.Licensing.SetSolutionKey(12345,12345,12345,12345);
// The SetOEMLicenseKey method is required if Manually Reported Runtime Licensing is used.
bcx.Licensing.SetOEMLicenseKey("1.0.AStringForOEMLicensing");
//Create the writer PDF417 class
WriterPDF417 pdf417 = new WriterPDF417(bcx);
// Set the text value
pdf417.BarcodeValue = "PDF417 Value";
//call Create and get resulting image
if (imageXView1.Image != null)
imageXView.Image.Dispose();
imageXView1.Image = Accusoft.ImagXpressSdk.ImageX.FromHdib(imagXpress1, pdf417.Create(), true);
// dispose of the writer PDF417 and barcode component
pdf417.Dispose();
bcx.Dispose();

其他的類型的條碼創建,看看2D這個http://www.evget.com/zh-CN/Info/catalog/19569.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved