您现在的位置:首页 > 博客 > Android开发 > 正文
在Android上使用ZXing识别条码/二维码
http://www.drovik.com/      2012-9-7 20:37:52      来源:CSDN社区      点击:

本文来自http://blog.csdn.net/hellogv/ ,引用必须注明出处!

越来越多的手机具备自动对焦的拍摄功能,这也意味着这些手机可以具备条码扫描的功能.......手机具备条码扫描的功能,可以优化购物流程,快速存储电子名片(二维码)等

本文使用ZXing 1.6实现条码/二维码识别。ZXing是个很经典的条码/二维码识别的开源类库,long long ago,就有开发者在J2ME上使用ZXing了,不过要支持JSR-234规范(自动对焦)的手机才能发挥其威力,而目前已经有不少Android手机具备自动对焦的功能。

本文代码运行的结果如下,使用91手机助手截图时,无法截取SurfaceView的实时图像:

本文使用了ZXing1.6的core,即把\zxing-1.6\core\下的src复制覆盖工程的src;另外还要使用到\zxing-1.6\android\下的PlanarYUVLuminanceSource.java。

PS:\zxing-1.6\android\ 是BarcodeScanner的源码,本文程序相当于BarcodeScanner的精简版,只保留最基本的识别功能。

源码目录结果如下图,ChecksumException.java下面还有很多源文件,截图尚未列出:

main.xml源码如下,main.xml必须要用到FrameLayout才能重叠控件实现“范围框”的效果:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout android:id="@+id/FrameLayout01"
  3. android:layout_width="fill_parent" android:layout_height="fill_parent"
  4. xmlns:android="http://schemas.android.com/apk/res/android">
  5. <SurfaceView android:layout_height="fill_parent"
  6. android:id="@+id/sfvCamera" android:layout_width="fill_parent"></SurfaceView>
  7. <RelativeLayout android:id="@+id/RelativeLayout01"
  8. android:layout_height="fill_parent" android:layout_width="fill_parent">
  9. <ImageView android:id="@+id/ImageView01"
  10. android:layout_height="100dip" android:layout_width="160dip"></ImageView>
  11. <View android:layout_centerVertical="true"
  12. android:layout_centerHorizontal="true" android:layout_width="300dip"
  13. android:background="#55FF6666" android:id="@+id/centerView"
  14. android:layout_height="180dip"></View>
  15. <TextView android:layout_centerHorizontal="true"
  16. android:layout_width="wrap_content" android:layout_below="@+id/centerView"
  17. android:layout_height="wrap_content" android:text="Scanning..."
  18. android:id="@+id/txtScanResult" android:textColor="#FF000000"></TextView>
  19. </RelativeLayout>
  20. </FrameLayout>
<?xml version="1.0" encoding="utf-8"?> <FrameLayout android:id="@+id/FrameLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"> <SurfaceView android:layout_height="fill_parent" android:id="@+id/sfvCamera" android:layout_width="fill_parent"></SurfaceView> <RelativeLayout android:id="@+id/RelativeLayout01" android:layout_height="fill_parent" android:layout_width="fill_parent"> <ImageView android:id="@+id/ImageView01" android:layout_height="100dip" android:layout_width="160dip"></ImageView> <View android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:layout_width="300dip" android:background="#55FF6666" android:id="@+id/centerView" android:layout_height="180dip"></View> <TextView android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_below="@+id/centerView" android:layout_height="wrap_content" android:text="Scanning..." android:id="@+id/txtScanResult" android:textColor="#FF000000"></TextView> </RelativeLayout> </FrameLayout>

testCamera.java是主类,负责控制Camera和对图像做解码,源码如下:

  1. package com.testCamera;
  2. import java.util.Timer;
  3. import java.util.TimerTask;
  4. import com.google.zxing.BinaryBitmap;
  5. import com.google.zxing.MultiFormatReader;
  6. import com.google.zxing.Result;
  7. import com.google.zxing.Android.PlanarYUVLuminanceSource;
  8. import com.google.zxing.common.HybridBinarizer;
  9. import android.app.Activity;
  10. import android.graphics.Bitmap;
  11. import android.hardware.Camera;
  12. import android.os.Bundle;
  13. import android.view.SurfaceView;
  14. import android.view.View;
  15. import android.widget.ImageView;
  16. import android.widget.TextView;
  17. public class testCamera extends Activity {
  18. private SurfaceView sfvCamera;
  19. private SFHCamera sfhCamera;
  20. private ImageView imgView;
  21. private View centerView;
  22. private TextView txtScanResult;
  23. private Timer mTimer;
  24. private MyTimerTask mTimerTask;
  25. // 按照标准HVGA
  26. final static int width = 480;
  27. final static int height = 320;
  28. int dstLeft, dstTop, dstWidth, dstHeight;
  29. @Override
  30. public void onCreate(Bundle savedInstanceState) {
  31. super.onCreate(savedInstanceState);
  32. setContentView(R.layout.main);
  33. this.setTitle("Android条码/二维码识别Demo-----hellogv");
  34. imgView = (ImageView) this.findViewById(R.id.ImageView01);
  35. centerView = (View) this.findViewById(R.id.centerView);
  36. sfvCamera = (SurfaceView) this.findViewById(R.id.sfvCamera);
  37. sfhCamera = new SFHCamera(sfvCamera.getHolder(), width, height,
  38. previewCallback);
  39. txtScanResult=(TextView)this.findViewById(R.id.txtScanResult);
  40. // 初始化定时器
  41. mTimer = new Timer();
  42. mTimerTask = new MyTimerTask();
  43. mTimer.schedule(mTimerTask, 0, 80);
  44. }
  45. class MyTimerTask extends TimerTask {
  46. @Override
  47. public void run() {
  48. if (dstLeft == 0) {//只赋值一次
  49. dstLeft = centerView.getLeft() * width
  50. / getWindowManager().getDefaultDisplay().getWidth();
  51. dstTop = centerView.getTop() * height
  52. / getWindowManager().getDefaultDisplay().getHeight();
  53. dstWidth = (centerView.getRight() - centerView.getLeft())* width
  54. / getWindowManager().getDefaultDisplay().getWidth();
  55. dstHeight = (centerView.getBottom() - centerView.getTop())* height
  56. / getWindowManager().getDefaultDisplay().getHeight();
  57. }
  58. sfhCamera.AutoFocusAndPreviewCallback();
  59. }
  60. }
  61. private Camera.PreviewCallback previewCallback = new Camera.PreviewCallback() {
  62. @Override
  63. public void onPreviewFrame(byte[] data, Camera arg1) {
  64. //取得指定范围的帧的数据
  65. PlanarYUVLuminanceSource source = new PlanarYUVLuminanceSource(
  66. data, width, height, dstLeft, dstTop, dstWidth, dstHeight);
  67. //取得灰度图
  68. Bitmap mBitmap = source.renderCroppedGreyscaleBitmap();
  69. //显示灰度图
  70. imgView.setImageBitmap(mBitmap);
  71. BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
  72. MultiFormatReader reader = new MultiFormatReader();
  73. try {
  74. Result result = reader.decode(bitmap);
  75. String strResult = "BarcodeFormat:"
  76. + result.getBarcodeFormat().toString() + " text:"
  77. + result.getText();
  78. txtScanResult.setText(strResult);
  79. } catch (Exception e) {
  80. txtScanResult.setText("Scanning");
  81. }
  82. }
  83. };
  84. }
package com.testCamera; import java.util.Timer; import java.util.TimerTask; import com.google.zxing.BinaryBitmap; import com.google.zxing.MultiFormatReader; import com.google.zxing.Result; import com.google.zxing.Android.PlanarYUVLuminanceSource<wbr>; import com.google.zxing.common.HybridBinarizer; import android.app.Activity; import android.graphics.Bitmap; import android.hardware.Camera; import android.os.Bundle; import android.view.SurfaceView; import android.view.View; import android.widget.ImageView; import android.widget.TextView; public class testCamera extends Activity { private SurfaceView sfvCamera; private SFHCamera sfhCamera; private ImageView imgView; private View centerView; private TextView txtScanResult; private Timer mTimer; private MyTimerTask mTimerTask; // 按照标准HVGA final static int width = 480; final static int height = 320; int dstLeft, dstTop, dstWidth, dstHeight; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); this.setTitle("Android条码/二维码识别Demo-----hellogv"); imgView = (ImageView) this.findViewById(R.id.ImageView01); centerView = (View) this.findViewById(R.id.centerView); sfvCamera = (SurfaceView) this.findViewById(R.id.sfvCamera); sfhCamera = new SFHCamera(sfvCamera.getHolder(), width, height, previewCallback); txtScanResult=(TextView)this.findViewById(R.id.txtScanResult); // 初始化定时器 mTimer = new Timer(); mTimerTask = new MyTimerTask(); mTimer.schedule(mTimerTask, 0, 80); } class MyTimerTask extends TimerTask { @Override public void run() { if (dstLeft == 0) {//只赋值一次 dstLeft = centerView.getLeft() * width / getWindowManager().getDefaultDisplay().getWidth(); dstTop = centerView.getTop() * height / getWindowManager().getDefaultDisplay().getHeight(); dstWidth = (centerView.getRight() - centerView.getLeft())* width / getWindowManager().getDefaultDisplay().getWidth(); dstHeight = (centerView.getBottom() - centerView.getTop())* height / getWindowManager().getDefaultDisplay().getHeight(); } sfhCamera.AutoFocusAndPreviewCallb<wbr>ack(); } } private Camera.PreviewCallback previewCallback = new Camera.PreviewCallback() { @Override public void onPreviewFrame(byte[] data, Camera arg1) { //取得指定范围的帧的数据 PlanarYUVLuminanceSource<wbr> source = new PlanarYUVLuminanceSource<wbr>( data, width, height, dstLeft, dstTop, dstWidth, dstHeight); //取得灰度图 Bitmap mBitmap = source.renderCroppedGreyscaleBi<wbr>tmap(); //显示灰度图 imgView.setImageBitmap(mBitmap); BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source)); MultiFormatReader reader = new MultiFormatReader(); try { Result result = reader.decode(bitmap); String strResult = "BarcodeFormat:" + result.getBarcodeFormat().toString() + " text:" + result.getText(); txtScanResult.setText(strResult); } catch (Exception e) { txtScanResult.setText("Scanning"); } } }; }

SFHCamera.java是Camera控制类,源码如下:

  1. package com.testCamera;
  2. import java.io.IOException;
  3. import android.graphics.PixelFormat;
  4. import android.hardware.Camera;
  5. import android.util.Log;
  6. import android.view.SurfaceHolder;
  7. public class SFHCamera implements SurfaceHolder.Callback{
  8. private SurfaceHolder holder = null;
  9. private Camera mCamera;
  10. private int width,height;
  11. private Camera.PreviewCallback previewCallback;
  12. public SFHCamera(SurfaceHolder holder,int w,int h,Camera.PreviewCallback previewCallback) {
  13. this.holder = holder;
  14. this.holder.addCallback(this);
  15. this.holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
  16. width=w;
  17. height=h;
  18. this.previewCallback=previewCallback;
  19. }
  20. @Override
  21. public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3) {
  22. Camera.Parameters parameters = mCamera.getParameters();
  23. parameters.setPreviewSize(width, height);//设置尺寸
  24. parameters.setPictureFormat(PixelFormat.JPEG);
  25. mCamera.setParameters(parameters);
  26. mCamera.startPreview();//开始预览
  27. Log.e("Camera","surfaceChanged");
  28. }
  29. @Override
  30. public void surfaceCreated(SurfaceHolder arg0) {
  31. mCamera = Camera.open();//启动服务
  32. try {
  33. mCamera.setPreviewDisplay(holder);//设置预览
  34. Log.e("Camera","surfaceCreated");
  35. } catch (IOException e) {
  36. mCamera.release();//释放
  37. mCamera = null;
  38. }
  39. }
  40. @Override
  41. public void surfaceDestroyed(SurfaceHolder arg0) {
  42. mCamera.setPreviewCallback(null);
  43. mCamera.stopPreview();//停止预览
  44. mCamera = null;
  45. Log.e("Camera","surfaceDestroyed");
  46. }
  47. public void AutoFocusAndPreviewCallback()
  48. {
  49. if(mCamera!=null)
  50. mCamera.autoFocus(mAutoFocusCallBack);
  51. }
  52. private Camera.AutoFocusCallback mAutoFocusCallBack = new Camera.AutoFocusCallback() {
  53. @Override
  54. public void onAutoFocus(boolean success, Camera camera) {
  55. if (success) { //对焦成功,回调Camera.PreviewCallback
  56. mCamera.setOneShotPreviewCallback(previewCallback);
  57. }
  58. }
  59. };
  60. }
package com.testCamera; import java.io.IOException; import android.graphics.PixelFormat; import android.hardware.Camera; import android.util.Log; import android.view.SurfaceHolder; public class SFHCamera implements SurfaceHolder.Callback{ private SurfaceHolder holder = null; private Camera mCamera; private int width,height; private Camera.PreviewCallback previewCallback; public SFHCamera(SurfaceHolder holder,int w,int h,Camera.PreviewCallback previewCallback) { this.holder = holder; this.holder.addCallback(this); this.holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS); width=w; height=h; this.previewCallback=previewCallback; } @Override public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3) { Camera.Parameters parameters = mCamera.getParameters(); parameters.setPreviewSize(width, height);//设置尺寸 parameters.setPictureFormat(PixelFormat.JPEG); mCamera.setParameters(parameters); mCamera.startPreview();//开始预览 Log.e("Camera","surfaceChanged"); } @Override public void surfaceCreated(SurfaceHolder arg0) { mCamera = Camera.open();//启动服务 try { mCamera.setPreviewDisplay(holder);//设置预览 Log.e("Camera","surfaceCreated"); } catch (IOException e) { mCamera.release();//释放 mCamera = null; } } @Override public void surfaceDestroyed(SurfaceHolder arg0) { mCamera.setPreviewCallback(null); mCamera.stopPreview();//停止预览 mCamera = null; Log.e("Camera","surfaceDestroyed"); } public void AutoFocusAndPreviewCallb<wbr>ack() { if(mCamera!=null) mCamera.autoFocus(mAutoFocusCallBack); } private Camera.AutoFocusCallback mAutoFocusCallBack = new Camera.AutoFocusCallback() { @Override public void onAutoFocus(boolean success, Camera camera) { if (success) { //对焦成功,回调Camera.PreviewCallback mCamera.setOneShotPreviewCallbac<wbr>k(previewCallback); } } }; }

其中testCamera.java的Camera.PreviewCallback previewCallback 是整个程序的逻辑核心,作为回调函数给SFHCamera.java的内部Camera类调用。

分享到:
发表评论(0)
姓名 *
评论内容 *
验证码 *图片看不清?点击重新得到验证码