Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
1.60/5 (3 votes)
See more:
how to barcode reader work and how to read barcode image with barcode machine .
i need sdk for barcode machine to read barcode.
Posted
Comments
Maciej Los 11-May-14 7:34am    
What have yo done till now? Have you tried to find something on Google?

In most cases barcode readers are behave like keyboard, by sending keystrokes to your application. So you can use simple keyboard handeling techniques to deal with barcode reader...
 
Share this answer
 
Comments
Manas Bhardwaj 11-May-14 7:42am    
Yes, in most of the cases the device drivers already does the trick for you. +5!
Kornfeld Eliyahu Peter 11-May-14 7:46am    
Thank you...
Check this out.

BarCode Reader SDK for .NET

Getting started with ASP.NET and Bytescout.BarCode Reader SDK

Sample

C#
using Bytescout.BarCodeReader;

namespace SimpleWebTestSharp
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Image1.ImageUrl = "BarcodePhoto.jpg";

Reader reader = new Reader(Server.MapPath("BarcodePhoto.jpg"));
foreach (FoundBarcode barcode in reader.FoundBarcodes)
ListBox1.Items.Add(String.Format("{0} : {1}", barcode.Type, barcode.Value));
}
}
}
 
Share this answer
 
Comments
Manas Bhardwaj 11-May-14 8:22am    
I voted 4 as the links are good and this would work.

However, you might not need this at all. See answer from Kornfeld above.
Sampath Lokuge 11-May-14 8:25am    
Thanks :)
Please, read my comment to the question.

As i mentioned, you need to respect CP rules[^]. Use Google[^] before you post a question. Try! There are tons of examples.
 
Share this answer
 
Comments
Manas Bhardwaj 11-May-14 8:21am    
Agree 5!
Maciej Los 11-May-14 8:41am    
Thank you, Manas ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900