Windows Phone 7開發技巧【2】——使用ZXing庫實現一維/二維條碼掃描

來源:互聯網
上載者:User

世界上資訊無處不在,條碼就無孔不入。方便快速的產生和讀取條碼資訊,已經成為智能手機的準系統。如何在Window Phone手機應用上實現條碼掃描功能呢?最先想到的可能是首先用網路攝影機讀取到條碼映像、二值化、影像處理等等,讓人頭大。但是俗話說的好,Don't Reinvent The Wheel,要感謝強大的ZXing庫[1],我們可以把精力多放在app本身功能的實現上。ZXing庫實現了眾多的一維/二維條碼的讀取功能,例如常見的EAN-13和QR碼。Zxing支援多種程式設計語言,有人實現了Silverlight版本[2],WP7應用中可以很方便的使用。本文從一個執行個體入手,介紹一下如何來使用ZXing。

簡單起見,封裝一個頁面Barcode,從任何頁面切換到Barcode頁面,均自動開始條碼讀取,讀取完成後,切換到結果頁面。封裝上[3]其實做的更好些,但是無奈在我的app中使用不便,[3]非常值得參考。

一、引用ZXing

建立WP7BarcodeScannerExample執行個體工程,從[2]下載SilverlightZxing庫,添加對Silverlight_ZXing_Core.dll的引用。下面一段截取的代碼,可以看出ZXing的使用是比較方便的。

using com.google.zxing;using com.google.zxing.oned;using com.google.zxing.qrcode;using com.google.zxing.common;namespace WP7BarcodeScannerExample{    public partial class BarCode : PhoneApplicationPage    {        private Reader _reader = new EAN13Reader();//or QRCodeReader()        private void ScanPreviewBuffer()        {
Result result = _reader.decode(binBitmap); if (result != null) { //讀取成功,結果是result.Text } } }}

 首先,根據需要讀取的條碼類型,以EAN-13一維條碼為例,初始化一個EAN13Reader,然後對擷取到的映像binBitmap進行decode,即可得到結果。

 

二、PhotoCamera取景

[4]非常詳細的說明了PhotoCamera的使用方法,這裡就不再贅述了。注意wp7模擬器是不支援網路攝影機的,所以該執行個體必須在真機上運行。

 

三、Barcode頁面

主要思路是:使用VideoBrush將PhotoCamera取景顯示出來,按照固定的間隔時間進行對焦並讀取圖片,調用zxing的制定編碼類別型的解碼器進行解碼,成功後停止取景和讀取,切換至結果頁面。

Barcode.xaml

<Grid x:Name="LayoutRoot" Background="Transparent">        <Rectangle HorizontalAlignment="Stretch" Name="frame" Stroke="Black" StrokeThickness="0" VerticalAlignment="Stretch">            <Rectangle.Fill>                <VideoBrush x:Name="_videoBrush">                    <VideoBrush.RelativeTransform>                        <CompositeTransform                              x:Name="_previewTransform" CenterX=".5" CenterY=".5" />                    </VideoBrush.RelativeTransform>                </VideoBrush>            </Rectangle.Fill>        </Rectangle></Grid>

注意VideoBrush,因為PhotoCamera取景預設是橫屏的,需要對其做一下變換。

 

Barcode.xaml.cs:

using System;using System.IO;using System.Windows;using System.Windows.Controls;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using Microsoft.Phone.Controls;using Microsoft.Devices;using com.google.zxing;using com.google.zxing.oned;using com.google.zxing.qrcode;using com.google.zxing.common;using System.Windows.Threading;using System.Windows.Media.Imaging;using System.Windows.Navigation;namespace WP7BarcodeScannerExample{    public partial class BarCode : PhoneApplicationPage    {        private PhotoCamera _photoCamera;        private PhotoCameraLuminanceSource _luminance;        private readonly DispatcherTimer _timer;        //解碼器        private Reader _reader = null;        public BarCode()        {            InitializeComponent();            _timer = new DispatcherTimer();            _timer.Interval = TimeSpan.FromMilliseconds(250);            //間隔250ms調用讀取函數            _timer.Tick += (o, arg) => ScanPreviewBuffer();        }        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)        {            string type = "";                        if (NavigationContext.QueryString.TryGetValue("type", out type) && type == "qrcode")            {                _reader = new QRCodeReader();            }            else            {                _reader = new EAN13Reader();            }            _photoCamera = new PhotoCamera();            _photoCamera.Initialized += new EventHandler<CameraOperationCompletedEventArgs>(cam_Initialized);            _videoBrush.SetSource(_photoCamera);            base.OnNavigatedTo(e);        }        protected override void OnNavigatingFrom(System.Windows.Navigation.NavigatingCancelEventArgs e)        {            if (_photoCamera != null)            {                _timer.Stop();                _photoCamera.CancelFocus();                _photoCamera.Dispose();            }                        base.OnNavigatingFrom(e);        }        void cam_Initialized(object sender, CameraOperationCompletedEventArgs e)        {            int width = Convert.ToInt32(_photoCamera.PreviewResolution.Width);            int height = Convert.ToInt32(_photoCamera.PreviewResolution.Height);            _luminance = new PhotoCameraLuminanceSource(width, height);                        Dispatcher.BeginInvoke(() =>            {                _previewTransform.Rotation = _photoCamera.Orientation;                _timer.Start();            });            _photoCamera.FlashMode = FlashMode.Auto;            _photoCamera.Focus();        }        private void ScanPreviewBuffer()        {            try            {                _photoCamera.GetPreviewBufferY(_luminance.PreviewBufferY);                var binarizer = new HybridBinarizer(_luminance);                var binBitmap = new BinaryBitmap(binarizer);                Result result = _reader.decode(binBitmap);                if (result != null)                {                    _timer.Stop();                    Dispatcher.BeginInvoke(() =>                    {                        //讀取成功,結果存放在result.Text                    });                }                else                 {                    _photoCamera.Focus();                }            }            catch            {            }        }    }}

 注意:

1,重點查看ScanPreviewBuffer()函數,調用_reader對二值化後的映像進行解碼,若result非空,則表示解碼成功,結果存放在result.Text中,可以使用多種方法傳遞到你應用的其他頁面中。

2,Navigate到Barcode頁面時,若不帶querystring參數,則預設使用EAN13Reader進行一維條碼識別。若帶type=qrcode,則使用QRCodeReader進行二維條碼識別。

 

四、體驗

總體上,該執行個體的條碼掃描過程,速度是比較快的。但是在掃描過程需要反覆對焦,在光線等條件不好時,速度相對較慢。為了更好的體驗,條碼掃描過程需要增加一些協助工具功能,例如在取景頁面上顯示一個指示框,初始是紅色,讀取成功後變為綠色;讀取成功後,停止取景,擷取當前的一張圖片進行顯示,防止直接切換至結構頁面有些突兀。例子中這些內容實現的不好,僅僅是作為例子,多種可能,由你來完成了。

 

五、執行個體代碼

執行個體代碼存放在github,地址:https://github.com/gzb1985/WP7BarcodeScannerExample,歡迎批評指正,真誠希望能對大家有所協助。

 

六、引用

[1]:ZXing, http://code.google.com/p/zxing/

[2]:Silverlight ZXing,Windows Phone 7 Silverlight ZXing Barcode Scanning Library, http://silverlightzxing.codeplex.com/

[3]:Stephanie Hertrich,WP7 : Real-time video scan a barcode/QR code in your app using ZXing lib,http://blogs.msdn.com/b/stephe/archive/2011/11/07/wp7-real-time-video-scan-a-barcode-qr-code-in-your-app-using-zxing-lib.aspx

[4]:Matt Stroshane,Using Cameras in Your Windows Phone Application,http://msdn.microsoft.com/en-us/magazine/hh708750.aspx

[5]:QR code scanning on Windows Phone 7.5 using ZXlib,http://jonas.follesoe.no/2011/07/22/qr-code-scanning-on-windows-phone-75-using-zxlib/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.