如何將ImagXpress對象的圖像數據轉移到Barcode Xpress對象上

Barcode Xpress組件內只有一個類支持接收圖像數據,就是 BarcodeXpress類。固然其餘的 Accusoft 產品可能包含額外的類也能夠發送和接收的圖像數據。

    如何將ImagXpress對象的圖像數據轉移到Barcode Xpress對象上呢?在Barcode Xpress組件中,你也能夠使用下面這個方法輕鬆的實現複製或是轉移ImagXpress對象的圖像數據到Barcode Xpress對象上。 html

示例: code

// Create the BarcodeXpress component
BarcodeXpress barcodeXpress1 = new BarcodeXpress();
// The SetSolutionName, SetSolutionKey and possibly the SetOEMLicenseKey method must be
// called to distribute the runtime. Note that the SolutionName, SolutionKey, and
// OEMLicenseKey values shown below are only examples.
barcodeXpress1.Licensing.SetSolutionName("YourSolutionName");
barcodeXpress1.Licensing.SetSolutionKey(12345, 12345, 12345, 12345);
barcodeXpress1.Licensing.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation...");
 
// Set barcode types for which to search
barcodeXpress1.reader.BarcodeTypes = SetBarcodeType();
 
// Call Analyze to detect barcodes in image.
// All detected barcodes will be returned to the array of Result objects.
Result[] results = barcodeXpress1.reader.Analyze(imageXView1.Image);
 
// See if we returned any results
if (results.Length > 0)
{
     // Display the results
     string strResult;
     strResult = "";
     for (int i = 0; i < results.Length; i++) component

>> 完整示例代碼 orm

相關文章
相關標籤/搜索