
Barcode scanning doesn’t have loads of practical uses on a desktop (besides point-of-sale terminals), but on a mobile device, it’s a whole new ball game! Imagine a world where you can pick up an item, scan it with your phone and it gets delivered to your door… there are loads of scenarios where barcode scanning on your device makes sense! How difficult is it to do barcode scanning on a Windows Phone 7 device?
“ZXing (pronounced "zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library originally implemented by Google in Java.”
To use this library is very simple, at the point where you want to scan the barcode, just call the following code:
WP7BarcodeManager.ScanBarcode((result) =>
{
if (result.State == CaptureState.Success)
{
MessageBox.Show(result.BarcodeText);
}
else
{
MessageBox.Show(result.ErrorMessage);
}
});
The result contains the details about the actual barcode and the state of the scanning process (if it succeeded or failed).
If you want the actual image of the barcode, do the following:
barcodeImage.Source = result.BarcodeImage;
P.S.: Don't forget to reference Silverlight_ZXing_Core.dll and WP7_Barcode_Library.dll.
And that’s it! Now you have full barcode support in your WP7 application, neat?
CodeProject