在组件内只有一个类支持接收图像数据,就是 BarcodeXpress类。当然其他的 Accusoft 产品可能包含额外的类也可以发送和接收的图像数据。
如何将ImagXpress对象的图像数据转移到Barcode Xpress对象上呢?在Barcode Xpress组件中,你也可以使用下面这个方法轻松的实现复制或是转移ImagXpress对象的图像数据到Barcode Xpress对象上。
示例:
-
-
BarcodeXpress barcodeXpress1 = new BarcodeXpress();
-
-
-
-
barcodeXpress1.Licensing.SetSolutionName("YourSolutionName");
-
barcodeXpress1.Licensing.SetSolutionKey(12345, 12345, 12345, 12345);
-
barcodeXpress1.Licensing.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation...");
-
-
-
barcodeXpress1.reader.BarcodeTypes = SetBarcodeType();
-
-
-
-
Result[] results = barcodeXpress1.reader.Analyze(imageXView1.Image);
-
-
-
if (results.Length > 0)
-
{
-
-
string strResult;
-
strResult = "";
-
for (int i = 0; i < results.Length; i++)
>>
阅读(574) | 评论(0) | 转发(0) |