سؤال

I am searching for a VIN (vehicle identification number) barcode SDK. Has any1 implemented then please help me with some tutorials ans sample codes. I din't find anything helpful.All i found is barcode reader but not VIN.

Any help will be appreciated.Thanks

هل كانت مفيدة؟

المحلول 3

There are some libraries available for this.

Please check these links for sdk's and demo apps:

  1. bees4honey
  2. fastbook

نصائح أخرى

I know this has been answered already, but...

VIN's are just Code 39 Barcodes.

You can use: http://zxing.org/w/decode.jspx to read the barcode and then use http://developer.edmunds.com/ to decipher the vehicle information. This is the best no cost solution I've been able to come up with.

ZBar reads Code 39 Barcodes. Its free and open source. See my answer here for working source code example

Edit/Note:the iOS framework now includes a barcode scanner as of iOS 7. I used this implementation to get better and easier results than using Zbar.

Free SDK for scanning barcode (code 39 format) in iOS

We can use AVFoundation to scan following types of barcode in ios.

The framework reads the below barcodes:

2D Barcodes:

  1. QR
  2. PDF417
  3. Aztec

1D Barcodes:

  1. Code 128
  2. EAN-8
  3. EAN-13
  4. UPC-A
  5. UPC-E
  6. Code 39
  7. Code 93

Since VIN is a code 39 barcode we get it done very easily without using any third party library.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top