如何将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

相关文章
相关标签/搜索