手电筒在条码扫描仪程序(Zxing)中无法工作

发布于 2024-11-30 03:21:51 字数 80 浏览 0 评论 0原文

我使用 ZXing 程序进行条形码扫描,代码扫描效果很好,但闪光灯在程序中不起作用任何建议对我进一步处理代码会有帮助。

提前致谢。

I use ZXing program for bar-code scanning the code scanning works well but flash light is not working in the program any suggestion that will be helpful for me for further proceeding of the code.

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑶笙 2024-12-07 03:21:51

您可以尝试以下操作:

     CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
        TimeSpan timespan = new TimeSpan(0, 0, 0, 0, 0);
        Device.StartTimer(timespan, () =>
        {
            if (cancellationTokenSource.IsCancellationRequested)
            {
                return false;
            }

            scanner.Torch(true);

            return true;

        });

       scanner.Scan(Options);

You can try following:

     CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
        TimeSpan timespan = new TimeSpan(0, 0, 0, 0, 0);
        Device.StartTimer(timespan, () =>
        {
            if (cancellationTokenSource.IsCancellationRequested)
            {
                return false;
            }

            scanner.Torch(true);

            return true;

        });

       scanner.Scan(Options);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文