彩票走势图

BarCode Reader SDK使用教程:如何从图像中读取条码

原创|使用教程|编辑:龚雪|2015-10-28 14:54:29.000|阅读 1173 次

概述:在BarCode Reader SDK中用VB.NET或者C#来读取图像中的条码

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

相关链接:

我们知道很多语言都可以在windows平台上读取条码,今天将分享在BarCode Reader SDK中如何用VB.NET或者C#来读取图像中的条码。

【BarCode Reader SDK下载】

这段代码演示了如何从图像中读取条码及打印到输出控制台。

Visual Basic .NET:

Imports System.IO

Imports Bytescout.BarCodeReader ' requiring to install evaluation or full version of Barcode Reader SDK

<em>Module <font class="Apple-style-span" color="#000000"><span data-scayt_word="Module1" data-scaytid="1">Module1</span></font></em>

Sub Main()

Dim pat As String = "InputPhoto.jpg"

Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(pat))

Dim <span data-scayt_word="bc" data-scaytid="2">bc</span> As New Reader()

bc.TypeToFind = SymbologyFilter.FindAll

Dim barcodes As <span data-scayt_word="FoundBarcode" data-scaytid="3">FoundBarcode</span>() = bc.ReadFrom(pat)

Dim i As Integer

For i = 0 To barcodes.Length - 1

Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcodes(i).Type, barcodes(i).Value)

Next

Console.WriteLine("Press any key to exit..")

Console.ReadKey()

End Sub

End Module

C#

using System;

using System.Collections.Generic;

using System.Text;

using System.IO;

using Bytescout.BarCodeReader; // requires to have evaluation or full version of Barcode Reader SDK installed

<span data-scayt_word="namespace" data-scaytid="6">namespace</span> <span data-scayt_word="SimpleTestSharp" data-scaytid="7">SimpleTestSharp</span>

{

class Program

{

<span data-scayt_word="const" data-scaytid="8">const</span> string path = "<span data-scayt_word="InputBarcodeImagejpg" data-scaytid="9">InputBarcodeImagejpg</span>";

static void Main(string[] <span data-scayt_word="args" data-scaytid="60">args</span>)

{

Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(path));

Reader <span data-scayt_word="bc" data-scaytid="13">bc</span> = new Reader();

<span data-scayt_word="FoundBarcode" data-scaytid="14">FoundBarcode</span>[] barcodes = bc.ReadFrom(path);

<span data-scayt_word="foreach" data-scaytid="18">foreach</span> (<span data-scayt_word="FoundBarcode" data-scaytid="17">FoundBarcode</span> barcode in barcodes)

Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value);

Console.WriteLine("Press any key to exit..");

Console.ReadKey();

}

}

}
本文译自

标签:C#VB条形码识别条形码读取

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP