Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What type of BarCode is this?

I am starting the process of writing an application, one part of which is to decode bar codes, however I'm off to a bad start. I am no bar code expert and this is not a common bar code type, so I'm in trouble. I cannot figure out what type of bar code this is, which I have to decode.

I have looked on Wikipedia and some other sites with visual descriptions of different types of bar codes (and how to identify them), however I cannot identify it. Please note that I have tried several free bar code decoding programs and they have all failed to decode this.

So here is a picture of that bar code:

alt text http://www.shrani.si/f/2B/4p/4UCVyP72/barcode.jpg

I hope one of you can recognize it. Also if anyone has worked with this before and knows of a library that can decode them (from an image), I'd love to hear about them.

I'm very thankful for any additional pointers I can receive. Thank you.

like image 266
David Božjak Avatar asked Dec 17 '22 06:12

David Božjak


1 Answers

zbar thinks it's Code 128 but the decoded string is suspiciously different than the barcode's own caption. Maybe it's a charset difference?

~/src/zebra-0.5/zebraimg$ ./zebraimg ~/src/barcode/reader/barcode.jpg 
CODE-128:10657958011502540742
scanned 1 barcode symbols from 1 images in 0.04 seconds

My old copy was called zebra but the library is now called zbar. http://sourceforge.net/projects/zbar/

like image 181
joeforker Avatar answered Dec 19 '22 21:12

joeforker