Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / Win32

Reading Barcodes from an Image - III

Rate me:
Please Sign up or sign in to vote.
4.88/5 (122 votes)
19 Oct 2009CPOL4 min read 1.2M   95.3K   414   158
Detects Code39, EAN, and Code128 barcodes in an image.

Screenshot

Acknowledgement

This project is based on the CodeProject article: Reading Barcodes from an Image - II by qlipoth. I asked and got permission from qlipoth to publish an enhanced version of his code.

Introduction

My company has a need for reading barcodes from images that also contain text on the same page as the barcode(s). When searching for a solution in C#, I found qlipoth's CodeProject article: Reading Barcodes from an Image - II. His code came a long way towards what I wanted, but I needed a few improvements. In the end, my changes amounted to a significant rewrite that justifies a new CodeProject publication.

Background

This code has several improvements compared to the original code written in 2005:

  1. Validation is added for Code39 barcodes. The code has much less chance of detecting a "barcode" that is not actually present.
  2. Detection speed is improved. The main problem in the original project was that it used Bitmap.RotateFlip, and that function is quite slow.
  3. Added EAN/UPC and Code128 barcode support. The original project could only detect Code39 barcodes.
  4. Fixed some bugs that were reported for qlipoth's project and for the related project Reading Barcodes from an Image published by Benjamin Liedblad in 2004.

Using the code

To open the solution, you'll need Visual Studio 2008. However, I have not used any constructs that are not .NET 1.1 compatible, so the actual code should also be compilable in Visual Studio 2003 or 2005.

To use the code, call FullScanPage or ScanPage with the Windows Bitmap object containing your image. The included TestApp (written in VB.NET) demonstrates the basic use:

VB
Dim barcodes As New System.Collections.ArrayList
BarcodeImaging.FullScanPage(barcodes, Me.PictureBox1.Image, 100)
If barcodes.Count > 0 Then
  ' Found one or more barcodes ...

The numscans parameter in both functions indicates how many bands of pixels should be scanned across or down the image. With a higher number, the code finds more barcodes, but of course, will also run slightly slower. Usually 50 - 100 scans will be OK to find all barcodes on a full page image.

Difference between FullScanPage and ScanPage

FullScanPage always scans horizontally and vertically, and attempts to detect all supported barcode types. If you know that your input material is always scanned in the same orientation, or if you do not need detection of all barcode types, you can make your program run faster by using ScanPage.

C#
public static void ScanPage(ref System.Collections.ArrayList CodesRead, 
       Bitmap bmp, int numscans, ScanDirection direction, BarcodeType types)

With the additional parameters direction and types, you can fine-tune barcode detection:

  • direction: can be ScanDirection.Vertical or ScanDirection.Horizontal. Use Vertical for detecting barcodes with vertical bars, or Horizontal if you expect barcodes that are rotated 90 degrees.
  • types: Pass BarcodeType.All to detect all supported barcode types, or you can specify one or more specific barcode types, like this:
    C#
    ScanPage(ref CodesRead, bmp, numscans, ScanDirection.Vertical,
             BarcodeType.Code39 | BarcodeType.Code128);

    Supported types are Code39, EAN, and Code128. The EAN reader will also detect UPC codes.

Points of interest

  • The EAN reader also reads the 2 or 5 digits supplemental barcodes often found on books and periodicals. As shown in the screenshot, a supplemental barcode will be returned as a separate barcode string starting with "S".
  • The Code128 reader has mixed code page support. The serial number in the sample image Code128test-CodeC.png starts as Code C, but the last digit is added as Code B.
  • The code uses a more advanced approach for measuring the "narrow bar width" than qlipoth's and Liedblad's versions. This should allow for better detection rates when reading EAN and Code128. In Code39, we only need to distinguish between narrow and wide bars, but the other barcode types use four different bar widths.
  • I have added the concept of "barcode zones", to allow detection of differently scaled barcodes on the same scan line. In Code128test-CodeC.png, this enables the software to read both the serial number and the UPC code that are printed side-by-side.

    barcode zones

References

I used the following references while writing this project:

  1. For implementing EAN detection: Wikipedia articles on the European Article Number, EAN-2, and EAN-5.
  2. For implementing Code 128: the character table and checksum calculation as published on code128barcodes.com, and the barcode generator published by IDAutomation.com Inc., for testing.

History

  • October 5, 2009: Original.
  • October 19, 2009: Improved Code39 detection, bugfixes. Added VB.NET translation of the barcode detection class and the COM interface provided by Alessandro Gubbiotti.

License

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


Written By
Software Developer (Senior) Decos Software Engineering BV
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionRead barcode images on Pin
vengance8519-Aug-13 21:15
vengance8519-Aug-13 21:15 
AnswerRe: Read barcode images on Pin
Amit Pankajkumar Shah1-Dec-13 0:28
Amit Pankajkumar Shah1-Dec-13 0:28 
Generalproblem Pin
ankur78918-Jun-13 19:59
professionalankur78918-Jun-13 19:59 
QuestionBarcode reading Pin
sirch fsarso18-Jun-13 17:13
sirch fsarso18-Jun-13 17:13 
QuestionHow to use Pin
Alexander Weis31-May-13 10:12
Alexander Weis31-May-13 10:12 
QuestionCode PDF417 Pin
Samwill17-May-13 1:53
Samwill17-May-13 1:53 
GeneralMy vote of 5 Pin
John McKay10-Jan-13 6:39
John McKay10-Jan-13 6:39 
Questioncan i have the position of each barcode has been scaned? Pin
mammmel16-Dec-12 16:57
mammmel16-Dec-12 16:57 
can i get position of barcode from original image?

example : barcode 1 > 889-100000123, pos x=50, y=30,width=100, height=70

thanks
... .. ... . ..

QuestionMessage Closed Pin
4-Dec-12 20:21
Susanna Moore4-Dec-12 20:21 
QuestionProblem with read some codes Pin
Member 91534644-Dec-12 7:54
Member 91534644-Dec-12 7:54 
AnswerRe: Problem with read some codes Pin
Member 91534644-Dec-12 8:31
Member 91534644-Dec-12 8:31 
GeneralMy vote of 3 Pin
Brent Lamborn8-Aug-12 10:32
Brent Lamborn8-Aug-12 10:32 
QuestionImage dpi Pin
taher_elhossin24-Jul-12 10:17
taher_elhossin24-Jul-12 10:17 
QuestionBug fixes Pin
Matthias Böhnke6-Jul-12 0:36
Matthias Böhnke6-Jul-12 0:36 
AnswerRe: Bug fixes Pin
Michael Wild17-Apr-18 9:00
Michael Wild17-Apr-18 9:00 
GeneralRe: Bug fixes Pin
Matthias Böhnke17-Apr-18 9:49
Matthias Böhnke17-Apr-18 9:49 
BugBug in ParseCode128Pattern - Check Digit Pin
CorvinusSoftware4-Jul-12 16:48
professionalCorvinusSoftware4-Jul-12 16:48 
QuestionRead Fax-tiffs Pin
Fysicus3-Apr-12 23:23
Fysicus3-Apr-12 23:23 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey23-Feb-12 19:23
professionalManoj Kumar Choubey23-Feb-12 19:23 
QuestionAbout barcodes font height Pin
capitan_cavernicola14-Feb-12 22:31
capitan_cavernicola14-Feb-12 22:31 
GeneralMessage Closed Pin
4-Mar-12 21:35
blueskysinger4-Mar-12 21:35 
QuestionNew version but again failed to read barcodes Pin
Member 388881626-Jan-12 5:39
Member 388881626-Jan-12 5:39 
QuestionNot all barcode-types recognized Pin
Luk Vandevyvere24-Jan-12 5:13
Luk Vandevyvere24-Jan-12 5:13 
QuestionSome Fils fails to read barcode Pin
Member 388881617-Jan-12 23:05
Member 388881617-Jan-12 23:05 
GeneralMy vote of 5 Pin
chenghuiwu16-Oct-11 22:35
chenghuiwu16-Oct-11 22:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.