2012年11月21日水曜日

[安藤]如何讓zxing可以直畫面掃Barcode


修改檔案:CameraConfigurationManager.java
  1. void initFromCameraParameters(Camera camera)  注解下列幾行:
    //    if (width < height) {
    //      Log.i(TAG, "Display reports portrait orientation; assuming this is incorrect");
    //      int temp = width;
    //      width = height;
    //      height = temp;
    //    }
  2. void setDesiredCameraParameters(Camera camera, boolean safeMode)
    在 camera.setParameters(parameters) 後面加上:
        if (screenResolution.x < screenResolution.y)
            camera.setDisplayOrientation(90);
  3. 收工。



0 件のコメント:

コメントを投稿