如何在android

时间:2015-08-22 10:34:57

标签: android image barcode barcode-scanner

这是我尝试过的。

我在Android应用程序中实现了Zbar Scanner,我可以在其中扫描barocde并获得结果。

我在我的android项目中实现了this。现在我想实现从图库中扫描图像(当然是条形码图像)的扫描仪。我知道无论如何这都是可能的。查看this链接。它有条形码图像扫描。

我试图搜索但失败了。请帮帮我。

1 个答案:

答案 0 :(得分:4)

现在可以使用Google Play Services 7.8版本提供的新Barcode Scanning Apis。它具有检测作为位图传递的条形码的方法。 从图库中获取图像路径并将其转换为位图并将其传递如下:

     Frame frame = new Frame.Builder().setBitmap(bitmap).build();
     BarcodeDetector barcodeDetector = new BarcodeDetector.Builder(context)
                    .build();
if(barcode.isOperational()){
    SparseArray<Barcode> sparseArray = barcodeDetector.detect(frame);
                if(sparseArray != null && sparseArray.size() > 0){
                    for (int i = 0; i < sparseArray.size(); i++){
                                        Log.d(LOG_TAG, "Value: " + sparseArray.valueAt(i).rawValue + "----" + sparseArray.valueAt(i).displayValue);
                                        Toast.makeText(LOG_TAG, sparseArray.valueAt(i).rawValue, Toast.LENGTH_SHORT).show();

                                    }
                }else {
                    Log.e(LOG_TAG,"SparseArray null or empty");
                }

}else{
    Log.e(LOG_TAG, "Detector dependencies are not yet downloaded");
}

在build.gradle文件中,在“依赖项”部分下包含以下内容: 编译'com.google.android.gms:play-services:7.8。+'

以下清单权限必须:

<uses-feature android:name="android.hardware.camera" />
    <uses-feature android:name="android.hardware.camera.autofocus" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

Google Play服务的元数据:

<meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

要下载首次安装/运行时依赖项的元数据,以使条形码检测器正常运行。

<meta-data
            android:name="com.google.android.gms.vision.DEPENDENCIES"
            android:value="barcode" />

有关此API的详细用法,请参阅Github Sample,关注Code LabDocumentation