彩票走势图

Neodynamic Barcode Reader SDK使用教程:条码识别

原创|使用教程|编辑:龚雪|2015-12-07 13:47:45.000|阅读 704 次

概述:Neodynamic Barcode Reader SDK是一款条码识别和读取开发包,本文将简单介绍如何用Neodynamic Barcode Reader SDK实现条码的识别。附C#和VB代码供参考。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

【Neodynamic Barcode Reader SDK下载】

Neodynamic Barcode Reader SDK是一款可以对.NET应用和ASP.NET网站添加条码识别和读取功能的高级开发包,可以从数字图像、 位图和扫描的文档等中识别读取多种一维线型条码。支持多种条码类型。

本文将简单介绍如何用Neodynamic Barcode Reader SDK实现条码的识别。

假设需对下图进行解码识别,我们知道这图片中包含了EAN-13码和Code-128码。可参考下面代码,对图片进行扫描识别,再获取控制台结果。

barcode

步骤:

  1. 打开Visual Studio创建应用程序
  2. 添加引用到System.Drawing.dll 和Neodynamic.SDK.BarcodeReader.dll
  3. 控制台方法编写,可参考下面代码。
VB
'Add the Barcode Reader namespace reference
Imports Neodynamic.SDK.BarcodeReader
'Create a BarcodeReader object
Dim myReader As New BarcodeReader()
'Add the barcode symbologies to be recognized
myReader.Symbology.Add(Symbology.Ean13)
myReader.Symbology.Add(Symbology.Code128)
'Set max num of barcode symbols to be detected
myReader.Hints.MaxNumOfBarcodes = 2
'Scan the source image and get result
Dim results As List(Of BarcodeScanResult) = myReader.Scan("c:\barcode_sample.jpg")
'Display scan result
For Each result As BarcodeScanResult In results
	Console.WriteLine("Barcode Type: " & result.Symbology.ToString())
	Console.WriteLine("Barcode Data: " + result.Text)
	Console.WriteLine("=============")
Next

C#

//Add the Barcode Reader namespace reference
using Neodynamic.SDK.BarcodeReader;
//Create a BarcodeReader object
BarcodeReader myReader = new BarcodeReader();
//Add the barcode symbologies to be recognized
myReader.Symbology.Add(Symbology.Ean13);
myReader.Symbology.Add(Symbology.Code128);
//Set max num of barcode symbols to be detected
myReader.Hints.MaxNumOfBarcodes = 2;
//Scan the source image and get result
List<BarcodeScanResult> results = myReader.Scan(@"c:\barcode_sample.jpg");
//Display scan result
foreach (BarcodeScanResult result in results)
{
    Console.WriteLine("Barcode Type: " + result.Symbology.ToString());
    Console.WriteLine("Barcode Data: " + result.Text);
    Console.WriteLine("=============");
}

本文译自

点击查看产品详情

购买最新正版授权!""

慧都年终盛典火爆开启,一年仅一次的最强促销,破冰钜惠不容错过!!优惠详情点击查看>>


标签:条码识别条码读取

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP