如何增加在zxing扫描区域大小大小、区域、zxing

2023-09-04 12:29:30 作者:我蓄长发,只待君归。

许志国大家目前IAM正在扫描QR code从我的应用程序,我已经使用zxing图书馆和它的工作好,我的问题是在我的Galaxy S4手机扫描面积很小

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 scanning area is very small

请帮我

在此先感谢

推荐答案

CameraManager 类定义了两个常量 MIN_FRAME_WIDTH MIN_FRAME_HEIGHT 。根据需要,您应该修改它们,一切都应该工作:

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)