Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert barcode to number

Tags:

barcode

What online tool can be used to convert barcode image into number? There are many tools available that generate barcodes (convert numbers to image), but I need convert image into number, saying what type of barcode is used and what number is encoded in the image.

like image 507
Ωmega Avatar asked Jul 11 '13 14:07

Ωmega


1 Answers

  • Online web service: http://zxing.org/w/decode.jspx
  • Java library: https://code.google.com/p/zxing/
  • JavaScript for UPC: https://gist.github.com/tobeytailor/421369
  • .net: http://zbar.sourceforge.net/
  • Ruby: http://gbarcode.rubyforge.org/

and on and on. Search barcode decoder <platform> for a list based on your favored language.

like image 144
PaulProgrammer Avatar answered Sep 19 '22 11:09

PaulProgrammer