How to increase scanning area size in zxing

前端 未结 4 668
遥遥无期
遥遥无期 2020-12-06 14:16

Hii everyone currently iam working on scanning qr code from my app and i have used zxing library and it\'s working good and my problem is in my galaxy s4 mobile the scanni

4条回答
  •  青春惊慌失措
    2020-12-06 14:42

    The CameraManager class has two constants defined MIN_FRAME_WIDTH and MIN_FRAME_HEIGHT. You should modify them as desired and everything should work:

    private static final int MIN_FRAME_WIDTH = 240;  // (your desired value here)
    private static final int MIN_FRAME_HEIGHT = 240; // (your desired value here)
    

提交回复
热议问题